Home
last modified time | relevance | path

Searched refs:val (Results 1 – 3 of 3) sorted by relevance

/nanopb-2.7.6/tests/regression/issue_380/
Dmanglenames.proto6 optional uint32 val = 1; field
13 optional uint32 val = 1; field
/nanopb-2.7.6/
Dpb_encode.c635 uint32_t val = *(const uint32_t*)value; in pb_encode_fixed32() local
637 bytes[0] = (pb_byte_t)(val & 0xFF); in pb_encode_fixed32()
638 bytes[1] = (pb_byte_t)((val >> 8) & 0xFF); in pb_encode_fixed32()
639 bytes[2] = (pb_byte_t)((val >> 16) & 0xFF); in pb_encode_fixed32()
640 bytes[3] = (pb_byte_t)((val >> 24) & 0xFF); in pb_encode_fixed32()
647 uint64_t val = *(const uint64_t*)value; in pb_encode_fixed64() local
649 bytes[0] = (pb_byte_t)(val & 0xFF); in pb_encode_fixed64()
650 bytes[1] = (pb_byte_t)((val >> 8) & 0xFF); in pb_encode_fixed64()
651 bytes[2] = (pb_byte_t)((val >> 16) & 0xFF); in pb_encode_fixed64()
652 bytes[3] = (pb_byte_t)((val >> 24) & 0xFF); in pb_encode_fixed64()
[all …]
/nanopb-2.7.6/tests/
DSConstruct30 for var,val in ARGUMENTS.items():
32 env.Append(**{var: val})
34 env.Replace(**{var: val})