Lines Matching refs:upb_encstate
822 } upb_encstate;
832 static bool upb_encode_growbuffer(upb_encstate *e, size_t bytes) {
851 static bool upb_encode_reserve(upb_encstate *e, size_t bytes) {
860 static bool upb_put_bytes(upb_encstate *e, const void *data, size_t len) {
867 static bool upb_put_fixed64(upb_encstate *e, uint64_t val) {
872 static bool upb_put_fixed32(upb_encstate *e, uint32_t val) {
877 static bool upb_put_varint(upb_encstate *e, uint64_t val) {
888 static bool upb_put_double(upb_encstate *e, double d) {
895 static bool upb_put_float(upb_encstate *e, float d) {
902 static bool upb_put_tag(upb_encstate *e, int field_number, int wire_type) {
906 static bool upb_put_fixedarray(upb_encstate *e, const upb_array *arr,
923 bool upb_encode_message(upb_encstate *e, const char *msg,
926 static bool upb_encode_scalarfield(upb_encstate *e, const void *_field_mem,
1002 static bool upb_encode_array(upb_encstate *e, const char *field_mem,
1108 static bool upb_encode_map(upb_encstate *e, const char *field_mem,
1140 bool upb_encode_message(upb_encstate *e, const char *msg,
1186 upb_encstate e;