Lines Matching refs:lebytes
996 uint8_t lebytes[4]; in pb_decode_fixed32() local
998 if (!pb_read(stream, lebytes, 4)) in pb_decode_fixed32()
1001 bytes[0] = lebytes[3]; in pb_decode_fixed32()
1002 bytes[1] = lebytes[2]; in pb_decode_fixed32()
1003 bytes[2] = lebytes[1]; in pb_decode_fixed32()
1004 bytes[3] = lebytes[0]; in pb_decode_fixed32()
1015 uint8_t lebytes[8]; in pb_decode_fixed64() local
1017 if (!pb_read(stream, lebytes, 8)) in pb_decode_fixed64()
1020 bytes[0] = lebytes[7]; in pb_decode_fixed64()
1021 bytes[1] = lebytes[6]; in pb_decode_fixed64()
1022 bytes[2] = lebytes[5]; in pb_decode_fixed64()
1023 bytes[3] = lebytes[4]; in pb_decode_fixed64()
1024 bytes[4] = lebytes[3]; in pb_decode_fixed64()
1025 bytes[5] = lebytes[2]; in pb_decode_fixed64()
1026 bytes[6] = lebytes[1]; in pb_decode_fixed64()
1027 bytes[7] = lebytes[0]; in pb_decode_fixed64()