Searched refs:x (Results 1 – 4 of 4) sorted by relevance
32 #define uswap_16(x) \ argument33 ((((x) & 0xff00) >> 8) | \34 (((x) & 0x00ff) << 8))35 #define uswap_32(x) \ argument36 ((((x) & 0xff000000) >> 24) | \37 (((x) & 0x00ff0000) >> 8) | \38 (((x) & 0x0000ff00) << 8) | \39 (((x) & 0x000000ff) << 24))40 #define _uswap_64(x, sfx) \ argument41 ((((x) & 0xff00000000000000##sfx) >> 56) | \[all …]
15 #define BYTE2SECTOR(x) (CALC_UNIT(x, SECTOR_SIZE)) argument16 #define PAGEALIGN(x) (CALC_UNIT(x, 4)) argument
75 #define tole(x) (x) argument177 #define DO_CRC(x) crc = tab[ (crc ^ (x)) & 255 ] ^ (crc>>8) argument266 unsigned short i,j,t,x; in P_RC4() local286 for(x=0; x<len; x++){ in P_RC4()293 buf[x] = buf[x] ^ S[t]; in P_RC4()
32 #define ALIGN(x, a) __ALIGN_MASK((x), (a) - 1) argument33 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument