Searched refs:encode_tag (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/ |
D | encode.c | 137 static void encode_tag(upb_encstate *e, uint32_t field_number, in encode_tag() function 223 encode_tag(e, f->number, UPB_WIRE_TYPE_END_GROUP); in encode_scalar() 248 encode_tag(e, f->number, wire_type); in encode_scalar() 313 encode_tag(e, f->number, UPB_WIRE_TYPE_DELIMITED); in encode_array() 325 encode_tag(e, f->number, UPB_WIRE_TYPE_END_GROUP); in encode_array() 327 encode_tag(e, f->number, UPB_WIRE_TYPE_START_GROUP); in encode_array() 342 encode_tag(e, f->number, UPB_WIRE_TYPE_DELIMITED); in encode_array() 352 encode_tag(e, f->number, UPB_WIRE_TYPE_DELIMITED); in encode_array() 367 encode_tag(e, number, UPB_WIRE_TYPE_DELIMITED); in encode_mapentry()
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.c | 8110 static bool encode_tag(upb_pb_encoder *e, const tag_t *tag) { in encode_tag() function 8171 bool ok = encode_tag(c, hd) && commit(c) && start_delim(c); in encode_startdelimfield() 8187 return (encode_tag(c, hd) && commit(c)) ? c : UPB_BREAK; in encode_startgroup() 8191 return encode_tag(c, hd) && commit(c); in encode_endgroup() 8208 return encode_tag(e, hd) && encode(e, (convert)(val)) && commit(e); \
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 11881 static bool encode_tag(upb_pb_encoder *e, const tag_t *tag) { in encode_tag() function 11942 bool ok = encode_tag(c, hd) && commit(c) && start_delim(c); in encode_startdelimfield() 11958 return (encode_tag(c, hd) && commit(c)) ? c : UPB_BREAK; in encode_startgroup() 11962 return encode_tag(c, hd) && commit(c); in encode_endgroup() 11979 return encode_tag(e, hd) && encode(e, (convert)(val)) && commit(e); \
|