Lines Matching refs:lower32
71 uint32_t getFirstHalf(uint32_t p, uint32_t lower32) {
72 return (p & 0xffff0000) | ((lower32 >> 16) & 0xff00) | ((lower32 >> 8) & 0xff);
74 uint32_t getSecondHalf(uint32_t p, uint32_t lower32) {
75 return (p << 16) | ((lower32 >> 8) & 0xff00) | (lower32 & 0x3f);
131 uint32_t lower32 = (uint32_t)ce;
132 uint32_t firstHalf = getFirstHalf(p, lower32);
133 uint32_t secondHalf = getSecondHalf(p, lower32);
203 uint32_t lower32 = (uint32_t)ce;
204 uint32_t firstHalf = getFirstHalf(p, lower32);
205 uint32_t secondHalf = getSecondHalf(p, lower32);
414 uint32_t lower32 = (uint32_t)ce;
415 uint32_t lastHalf = getSecondHalf(p, lower32);
417 lastHalf = getFirstHalf(p, lower32);