Home | History | Annotate | Download | only in i18n

Lines Matching refs:lower32

68 uint32_t getFirstHalf(uint32_t p, uint32_t lower32) {
69 return (p & 0xffff0000) | ((lower32 >> 16) & 0xff00) | ((lower32 >> 8) & 0xff);
71 uint32_t getSecondHalf(uint32_t p, uint32_t lower32) {
72 return (p << 16) | ((lower32 >> 8) & 0xff00) | (lower32 & 0x3f);
128 uint32_t lower32 = (uint32_t)ce;
129 uint32_t firstHalf = getFirstHalf(p, lower32);
130 uint32_t secondHalf = getSecondHalf(p, lower32);
200 uint32_t lower32 = (uint32_t)ce;
201 uint32_t firstHalf = getFirstHalf(p, lower32);
202 uint32_t secondHalf = getSecondHalf(p, lower32);
411 uint32_t lower32 = (uint32_t)ce;
412 uint32_t lastHalf = getSecondHalf(p, lower32);
414 lastHalf = getFirstHalf(p, lower32);