Searched refs:VARINT_CASE (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/ |
D | encode.c | 261 #define VARINT_CASE(ctype, encode) \ in encode_array() macro 293 VARINT_CASE(uint64_t, *ptr); in encode_array() 295 VARINT_CASE(uint32_t, *ptr); in encode_array() 298 VARINT_CASE(int32_t, (int64_t)*ptr); in encode_array() 300 VARINT_CASE(bool, *ptr); in encode_array() 302 VARINT_CASE(int32_t, encode_zz32(*ptr)); in encode_array() 304 VARINT_CASE(int64_t, encode_zz64(*ptr)); in encode_array() 348 #undef VARINT_CASE in encode_array()
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.c | 896 #define VARINT_CASE(ctype, decode) { \ in upb_decode_toarray() macro 932 VARINT_CASE(uint32_t, uint32_t); in upb_decode_toarray() 935 VARINT_CASE(uint64_t, uint64_t); in upb_decode_toarray() 937 VARINT_CASE(bool, bool); in upb_decode_toarray() 939 VARINT_CASE(int32_t, upb_zzdecode_32); in upb_decode_toarray() 941 VARINT_CASE(int64_t, upb_zzdecode_64); in upb_decode_toarray() 967 #undef VARINT_CASE in upb_decode_toarray() 3028 #define VARINT_CASE(ctype, encode) { \ in upb_encode_array() macro 3058 VARINT_CASE(uint64_t, *ptr); in upb_encode_array() 3060 VARINT_CASE(uint32_t, *ptr); in upb_encode_array() [all …]
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 892 #define VARINT_CASE(ctype, decode) { \ in upb_decode_toarray() macro 928 VARINT_CASE(uint32_t, uint32_t); in upb_decode_toarray() 931 VARINT_CASE(uint64_t, uint64_t); in upb_decode_toarray() 933 VARINT_CASE(bool, bool); in upb_decode_toarray() 935 VARINT_CASE(int32_t, upb_zzdecode_32); in upb_decode_toarray() 937 VARINT_CASE(int64_t, upb_zzdecode_64); in upb_decode_toarray() 963 #undef VARINT_CASE in upb_decode_toarray() 3679 #define VARINT_CASE(ctype, encode) { \ in upb_encode_array() macro 3709 VARINT_CASE(uint64_t, *ptr); in upb_encode_array() 3711 VARINT_CASE(uint32_t, *ptr); in upb_encode_array() [all …]
|