Lines Matching defs:byte2
71 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step;
73 if(byte2 < 4) {
74 byte2 += 251;
78 if(byte2 < 2) {
79 byte2 += 254;
83 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16);
98 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - 1;
100 if(byte2 < 4) {
101 byte2 = 0xfe;
105 if(byte2 < 2) {
106 byte2 = 0xff;
111 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16) | ((uint32_t)byte3 << 8);