Searched refs:WORD_SIZE (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dgf2n.cpp74 if (n/WORD_SIZE >= reg.size())
77 return byte(reg[n/WORD_SIZE] >> ((n%WORD_SIZE)*8));
83 reg[n/WORD_SIZE] &= ~(word(0xff) << 8*(n%WORD_SIZE));
84 reg[n/WORD_SIZE] |= (word(value) << 8*(n%WORD_SIZE));
153 reg[(i-1)/WORD_SIZE] |= word(b) << ((i-1)%WORD_SIZE)*8;
188 return (wordCount-1)*WORD_SIZE
[all...]
H A Dconfig.h157 const unsigned int WORD_SIZE = sizeof(word); variable
158 const unsigned int WORD_BITS = WORD_SIZE * 8;
H A Dwords.h24 memcpy(r, a, n*WORD_SIZE);
H A Dinteger.cpp2348 memcpy(R, X+N, N*WORD_SIZE);
2374 memcpy(R, X+N, N*WORD_SIZE);
2507 assert(memcmp(P, A, 4*WORD_SIZE)==0);
2528 assert(memcmp(P, A, 4*WORD_SIZE)==0);
2928 if (n/WORD_SIZE >= reg.size())
2931 return byte(reg[n/WORD_SIZE] >> ((n%WORD_SIZE)*8));
2937 reg[n/WORD_SIZE] &= ~(word(0xff) << 8*(n%WORD_SIZE));
2938 reg[n/WORD_SIZE] |
[all...]
H A Dmisc.h285 return ((byteCount+WORD_SIZE-1)/WORD_SIZE);

Completed in 74 milliseconds