Lines Matching refs:byte2
80 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step; in decTwoBytePrimaryByOneStep() local
82 if(byte2 < 4) { in decTwoBytePrimaryByOneStep()
83 byte2 += 251; in decTwoBytePrimaryByOneStep()
87 if(byte2 < 2) { in decTwoBytePrimaryByOneStep()
88 byte2 += 254; in decTwoBytePrimaryByOneStep()
92 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16); in decTwoBytePrimaryByOneStep()
107 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - 1; in decThreeBytePrimaryByOneStep() local
109 if(byte2 < 4) { in decThreeBytePrimaryByOneStep()
110 byte2 = 0xfe; in decThreeBytePrimaryByOneStep()
114 if(byte2 < 2) { in decThreeBytePrimaryByOneStep()
115 byte2 = 0xff; in decThreeBytePrimaryByOneStep()
120 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16) | ((uint32_t)byte3 << 8); in decThreeBytePrimaryByOneStep()