Lines Matching refs:byte2
78 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step; in decTwoBytePrimaryByOneStep() local
80 if(byte2 < 4) { in decTwoBytePrimaryByOneStep()
81 byte2 += 251; in decTwoBytePrimaryByOneStep()
85 if(byte2 < 2) { in decTwoBytePrimaryByOneStep()
86 byte2 += 254; in decTwoBytePrimaryByOneStep()
90 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16); in decTwoBytePrimaryByOneStep()
105 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - 1; in decThreeBytePrimaryByOneStep() local
107 if(byte2 < 4) { in decThreeBytePrimaryByOneStep()
108 byte2 = 0xfe; in decThreeBytePrimaryByOneStep()
112 if(byte2 < 2) { in decThreeBytePrimaryByOneStep()
113 byte2 = 0xff; in decThreeBytePrimaryByOneStep()
118 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16) | ((uint32_t)byte3 << 8); in decThreeBytePrimaryByOneStep()