Lines Matching refs:lebytes
429 uint8_t lebytes[4]; in pb_encode_fixed32() local
430 lebytes[0] = bytes[3]; in pb_encode_fixed32()
431 lebytes[1] = bytes[2]; in pb_encode_fixed32()
432 lebytes[2] = bytes[1]; in pb_encode_fixed32()
433 lebytes[3] = bytes[0]; in pb_encode_fixed32()
434 return pb_write(stream, lebytes, 4); in pb_encode_fixed32()
444 uint8_t lebytes[8]; in pb_encode_fixed64() local
445 lebytes[0] = bytes[7]; in pb_encode_fixed64()
446 lebytes[1] = bytes[6]; in pb_encode_fixed64()
447 lebytes[2] = bytes[5]; in pb_encode_fixed64()
448 lebytes[3] = bytes[4]; in pb_encode_fixed64()
449 lebytes[4] = bytes[3]; in pb_encode_fixed64()
450 lebytes[5] = bytes[2]; in pb_encode_fixed64()
451 lebytes[6] = bytes[1]; in pb_encode_fixed64()
452 lebytes[7] = bytes[0]; in pb_encode_fixed64()
453 return pb_write(stream, lebytes, 8); in pb_encode_fixed64()