Home
last modified time | relevance | path

Searched refs:x (Results 1 – 4 of 4) sorted by relevance

/rkdeveloptool/
H A Dgpt.h32 #define uswap_16(x) \ argument
33 ((((x) & 0xff00) >> 8) | \
34 (((x) & 0x00ff) << 8))
35 #define uswap_32(x) \ argument
36 ((((x) & 0xff000000) >> 24) | \
37 (((x) & 0x00ff0000) >> 8) | \
38 (((x) & 0x0000ff00) << 8) | \
39 (((x) & 0x000000ff) << 24))
40 #define _uswap_64(x, sfx) \ argument
41 ((((x) & 0xff00000000000000##sfx) >> 56) | \
[all …]
H A DRKDevice.h15 #define BYTE2SECTOR(x) (CALC_UNIT(x, SECTOR_SIZE)) argument
16 #define PAGEALIGN(x) (CALC_UNIT(x, 4)) argument
H A Dcrc.cpp75 #define tole(x) (x) argument
177 #define DO_CRC(x) crc = tab[ (crc ^ (x)) & 255 ] ^ (crc>>8) argument
266 unsigned short i,j,t,x; in P_RC4() local
286 for(x=0; x<len; x++){ in P_RC4()
293 buf[x] = buf[x] ^ S[t]; in P_RC4()
H A DDefineHeader.h32 #define ALIGN(x, a) __ALIGN_MASK((x), (a) - 1) argument
33 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument