Home
last modified time | relevance | path

Searched refs:arena (Results 1 - 25 of 194) sorted by relevance

12345678

/third_party/python/Python/
H A Dpyarena.c4 /* A simple arena block structure.
29 /* An arena maintains a singly-linked, NULL-terminated list of
30 * all blocks owned by the arena. These are linked via the
41 /* The arena manages two kinds of memory, blocks of raw memory
43 when the arena is freed.
47 /* Pointer to the first block allocated for the arena, never NULL.
48 It is used only to find the first block when the arena is
61 pointers associated with this arena. They will be DECREFed
62 when the arena is freed.
131 PyArena* arena in _PyArena_New() local
158 _PyArena_Free(PyArena *arena) _PyArena_Free() argument
181 _PyArena_Malloc(PyArena *arena, size_t size) _PyArena_Malloc() argument
204 _PyArena_AddPyObject(PyArena *arena, PyObject *obj) _PyArena_AddPyObject() argument
[all...]
H A DPython-ast.c1012 static int obj2ast_object(struct ast_state *Py_UNUSED(state), PyObject* obj, PyObject** out, PyArena* arena) in obj2ast_object() argument
1017 if (_PyArena_AddPyObject(arena, obj) < 0) { in obj2ast_object()
1027 static int obj2ast_constant(struct ast_state *Py_UNUSED(state), PyObject* obj, PyObject** out, PyArena* arena) in obj2ast_constant() argument
1029 if (_PyArena_AddPyObject(arena, obj) < 0) { in obj2ast_constant()
1038 static int obj2ast_identifier(struct ast_state *state, PyObject* obj, PyObject** out, PyArena* arena) in obj2ast_identifier() argument
1044 return obj2ast_object(state, obj, out, arena); in obj2ast_identifier()
1047 static int obj2ast_string(struct ast_state *state, PyObject* obj, PyObject** out, PyArena* arena) in obj2ast_string() argument
1053 return obj2ast_object(state, obj, out, arena); in obj2ast_string()
1056 static int obj2ast_int(struct ast_state* Py_UNUSED(state), PyObject* obj, int* out, PyArena* arena) in obj2ast_int() argument
1861 PyArena* arena);
1898 _PyAST_Module(asdl_stmt_seq * body, asdl_type_ignore_seq * type_ignores, PyArena *arena) _PyAST_Module() argument
1912 _PyAST_Interactive(asdl_stmt_seq * body, PyArena *arena) _PyAST_Interactive() argument
1924 _PyAST_Expression(expr_ty body, PyArena *arena) _PyAST_Expression() argument
1941 _PyAST_FunctionType(asdl_expr_seq * argtypes, expr_ty returns, PyArena *arena) _PyAST_FunctionType() argument
1959 _PyAST_FunctionDef(identifier name, arguments_ty args, asdl_stmt_seq * body, asdl_expr_seq * decorator_list, expr_ty returns, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_FunctionDef() argument
1993 _PyAST_AsyncFunctionDef(identifier name, arguments_ty args, asdl_stmt_seq * body, asdl_expr_seq * decorator_list, expr_ty returns, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AsyncFunctionDef() argument
2027 _PyAST_ClassDef(identifier name, asdl_expr_seq * bases, asdl_keyword_seq * keywords, asdl_stmt_seq * body, asdl_expr_seq * decorator_list, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_ClassDef() argument
2055 _PyAST_Return(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Return() argument
2072 _PyAST_Delete(asdl_expr_seq * targets, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Delete() argument
2089 _PyAST_Assign(asdl_expr_seq * targets, expr_ty value, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Assign() argument
2114 _PyAST_AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AugAssign() argument
2148 _PyAST_AnnAssign(expr_ty target, expr_ty annotation, expr_ty value, int simple, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AnnAssign() argument
2179 _PyAST_For(expr_ty target, expr_ty iter, asdl_stmt_seq * body, asdl_stmt_seq * orelse, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_For() argument
2211 _PyAST_AsyncFor(expr_ty target, expr_ty iter, asdl_stmt_seq * body, asdl_stmt_seq * orelse, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AsyncFor() argument
2243 _PyAST_While(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_While() argument
2268 _PyAST_If(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_If() argument
2293 _PyAST_With(asdl_withitem_seq * items, asdl_stmt_seq * body, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_With() argument
2313 _PyAST_AsyncWith(asdl_withitem_seq * items, asdl_stmt_seq * body, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AsyncWith() argument
2333 _PyAST_Match(expr_ty subject, asdl_match_case_seq * cases, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Match() argument
2356 _PyAST_Raise(expr_ty exc, expr_ty cause, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Raise() argument
2374 _PyAST_Try(asdl_stmt_seq * body, asdl_excepthandler_seq * handlers, asdl_stmt_seq * orelse, asdl_stmt_seq * finalbody, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Try() argument
2395 _PyAST_TryStar(asdl_stmt_seq * body, asdl_excepthandler_seq * handlers, asdl_stmt_seq * orelse, asdl_stmt_seq * finalbody, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_TryStar() argument
2417 _PyAST_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Assert() argument
2440 _PyAST_Import(asdl_alias_seq * names, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Import() argument
2457 _PyAST_ImportFrom(identifier module, asdl_alias_seq * names, int level, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_ImportFrom() argument
2477 _PyAST_Global(asdl_identifier_seq * names, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Global() argument
2494 _PyAST_Nonlocal(asdl_identifier_seq * names, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Nonlocal() argument
2511 _PyAST_Expr(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Expr() argument
2533 _PyAST_Pass(int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Pass() argument
2549 _PyAST_Break(int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Break() argument
2565 _PyAST_Continue(int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Continue() argument
2581 _PyAST_BoolOp(boolop_ty op, asdl_expr_seq * values, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_BoolOp() argument
2604 _PyAST_NamedExpr(expr_ty target, expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_NamedExpr() argument
2632 _PyAST_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_BinOp() argument
2666 _PyAST_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_UnaryOp() argument
2694 _PyAST_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Lambda() argument
2722 _PyAST_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_IfExp() argument
2756 _PyAST_Dict(asdl_expr_seq * keys, asdl_expr_seq * values, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Dict() argument
2774 _PyAST_Set(asdl_expr_seq * elts, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Set() argument
2791 _PyAST_ListComp(expr_ty elt, asdl_comprehension_seq * generators, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_ListComp() argument
2815 _PyAST_SetComp(expr_ty elt, asdl_comprehension_seq * generators, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_SetComp() argument
2839 _PyAST_DictComp(expr_ty key, expr_ty value, asdl_comprehension_seq * generators, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_DictComp() argument
2869 _PyAST_GeneratorExp(expr_ty elt, asdl_comprehension_seq * generators, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_GeneratorExp() argument
2893 _PyAST_Await(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Await() argument
2915 _PyAST_Yield(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Yield() argument
2932 _PyAST_YieldFrom(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_YieldFrom() argument
2954 _PyAST_Compare(expr_ty left, asdl_int_seq * ops, asdl_expr_seq * comparators, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Compare() argument
2979 _PyAST_Call(expr_ty func, asdl_expr_seq * args, asdl_keyword_seq * keywords, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Call() argument
3004 _PyAST_FormattedValue(expr_ty value, int conversion, expr_ty format_spec, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_FormattedValue() argument
3029 _PyAST_JoinedStr(asdl_expr_seq * values, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_JoinedStr() argument
3046 _PyAST_Constant(constant value, string kind, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Constant() argument
3069 _PyAST_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Attribute() argument
3104 _PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Subscript() argument
3139 _PyAST_Starred(expr_ty value, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Starred() argument
3167 _PyAST_Name(identifier id, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Name() argument
3195 _PyAST_List(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_List() argument
3218 _PyAST_Tuple(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Tuple() argument
3241 _PyAST_Slice(expr_ty lower, expr_ty upper, expr_ty step, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Slice() argument
3260 _PyAST_comprehension(expr_ty target, expr_ty iter, asdl_expr_seq * ifs, int is_async, PyArena *arena) _PyAST_comprehension() argument
3285 _PyAST_ExceptHandler(expr_ty type, identifier name, asdl_stmt_seq * body, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_ExceptHandler() argument
3305 _PyAST_arguments(asdl_arg_seq * posonlyargs, asdl_arg_seq * args, arg_ty vararg, asdl_arg_seq * kwonlyargs, asdl_expr_seq * kw_defaults, arg_ty kwarg, asdl_expr_seq * defaults, PyArena *arena) _PyAST_arguments() argument
3325 _PyAST_arg(identifier arg, expr_ty annotation, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_arg() argument
3348 _PyAST_keyword(identifier arg, expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_keyword() argument
3370 _PyAST_alias(identifier name, identifier asname, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_alias() argument
3392 _PyAST_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena *arena) _PyAST_withitem() argument
3409 _PyAST_match_case(pattern_ty pattern, expr_ty guard, asdl_stmt_seq * body, PyArena *arena) _PyAST_match_case() argument
3428 _PyAST_MatchValue(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchValue() argument
3450 _PyAST_MatchSingleton(constant value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchSingleton() argument
3472 _PyAST_MatchSequence(asdl_pattern_seq * patterns, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchSequence() argument
3489 _PyAST_MatchMapping(asdl_expr_seq * keys, asdl_pattern_seq * patterns, identifier rest, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchMapping() argument
3509 _PyAST_MatchClass(expr_ty cls, asdl_pattern_seq * patterns, asdl_identifier_seq * kwd_attrs, asdl_pattern_seq * kwd_patterns, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchClass() argument
3536 _PyAST_MatchStar(identifier name, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchStar() argument
3553 _PyAST_MatchAs(pattern_ty pattern, identifier name, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchAs() argument
3571 _PyAST_MatchOr(asdl_pattern_seq * patterns, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchOr() argument
3588 _PyAST_TypeIgnore(int lineno, string tag, PyArena *arena) _PyAST_TypeIgnore() argument
5474 obj2ast_mod(struct ast_state *state, PyObject* obj, mod_ty* out, PyArena* arena) obj2ast_mod() argument
5725 obj2ast_stmt(struct ast_state *state, PyObject* obj, stmt_ty* out, PyArena* arena) obj2ast_stmt() argument
8142 obj2ast_expr(struct ast_state *state, PyObject* obj, expr_ty* out, PyArena* arena) obj2ast_expr() argument
9903 obj2ast_expr_context(struct ast_state *state, PyObject* obj, expr_context_ty* out, PyArena* arena) obj2ast_expr_context() argument
9938 obj2ast_boolop(struct ast_state *state, PyObject* obj, boolop_ty* out, PyArena* arena) obj2ast_boolop() argument
9965 obj2ast_operator(struct ast_state *state, PyObject* obj, operator_ty* out, PyArena* arena) obj2ast_operator() argument
10080 obj2ast_unaryop(struct ast_state *state, PyObject* obj, unaryop_ty* out, PyArena* arena) obj2ast_unaryop() argument
10123 obj2ast_cmpop(struct ast_state *state, PyObject* obj, cmpop_ty* out, PyArena* arena) obj2ast_cmpop() argument
10214 obj2ast_comprehension(struct ast_state *state, PyObject* obj, comprehension_ty* out, PyArena* arena) obj2ast_comprehension() argument
10319 obj2ast_excepthandler(struct ast_state *state, PyObject* obj, excepthandler_ty* out, PyArena* arena) obj2ast_excepthandler() argument
10497 obj2ast_arguments(struct ast_state *state, PyObject* obj, arguments_ty* out, PyArena* arena) obj2ast_arguments() argument
10737 obj2ast_arg(struct ast_state *state, PyObject* obj, arg_ty* out, PyArena* arena) obj2ast_arg() argument
10876 obj2ast_keyword(struct ast_state *state, PyObject* obj, keyword_ty* out, PyArena* arena) obj2ast_keyword() argument
10998 obj2ast_alias(struct ast_state *state, PyObject* obj, alias_ty* out, PyArena* arena) obj2ast_alias() argument
11120 obj2ast_withitem(struct ast_state *state, PyObject* obj, withitem_ty* out, PyArena* arena) obj2ast_withitem() argument
11169 obj2ast_match_case(struct ast_state *state, PyObject* obj, match_case_ty* out, PyArena* arena) obj2ast_match_case() argument
11256 obj2ast_pattern(struct ast_state *state, PyObject* obj, pattern_ty* out, PyArena* arena) obj2ast_pattern() argument
11837 obj2ast_type_ignore(struct ast_state *state, PyObject* obj, type_ignore_ty* out, PyArena* arena) obj2ast_type_ignore() argument
12346 PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode) PyAST_obj2mod() argument
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dlow_level_alloc.cc85 // Pointer to parent arena.
86 LowLevelAlloc::Arena *arena; member
200 // Metadata for an LowLevelAlloc arena instance.
202 // Constructs an arena with the given LowLevelAlloc flags.
223 // Static storage space for the lazily-constructed, default global arena
250 // Returns a global arena that does not call into hooks. Used by NewArena()
258 // Returns a global arena that is async-signal safe. Used by NewArena() when
269 // Returns the default arena, as used by LowLevelAlloc::Alloc() and friends.
282 explicit ArenaLock(LowLevelAlloc::Arena *arena)
283 ABSL_EXCLUSIVE_LOCK_FUNCTION(arena
383 DeleteArena(Arena *arena) DeleteArena() argument
453 Next(int i, AllocList *prev, LowLevelAlloc::Arena *arena) Next() argument
476 LowLevelAlloc::Arena *arena = a->header.arena; Coalesce() local
491 AddToFreelist(void *v, LowLevelAlloc::Arena *arena) AddToFreelist() argument
513 LowLevelAlloc::Arena *arena = f->header.arena; Free() local
524 DoAllocWithArena(size_t request, LowLevelAlloc::Arena *arena) DoAllocWithArena() argument
610 AllocWithArena(size_t request, Arena *arena) AllocWithArena() argument
[all...]
/third_party/skia/tests/
H A DArenaAllocTest.cpp36 SkArenaAlloc arena{0}; in DEF_TEST()
37 REPORTER_ASSERT(r, *arena.make<int>(3) == 3); in DEF_TEST()
38 Foo* foo = arena.make<Foo>(3, 4.0f); in DEF_TEST()
43 arena.makeArrayDefault<int>(10); in DEF_TEST()
44 int* zeroed = arena.makeArray<int>(10); in DEF_TEST()
48 Foo* fooArray = arena.makeArrayDefault<Foo>(10); in DEF_TEST()
53 arena.make<OddAlignment>(); in DEF_TEST()
61 SkSTArenaAlloc<64> arena; in DEF_TEST() local
62 REPORTER_ASSERT(r, *arena.make<int>(3) == 3); in DEF_TEST()
63 Foo* foo = arena in DEF_TEST()
110 SkSTArenaAllocWithReset<64> arena; DEF_TEST() local
127 SkSTArenaAlloc<64> arena; DEF_TEST() local
152 SkSTArenaAlloc<64> arena; DEF_TEST() local
164 SkSTArenaAlloc<64> arena; DEF_TEST() local
[all...]
H A DGrTextBlobTest.cpp261 // Exercise default arena in DEF_TEST()
263 GrSubRunAllocator arena{0}; in DEF_TEST()
264 exercise(&arena); in DEF_TEST()
267 // Exercise on stack arena in DEF_TEST()
269 GrSTSubRunAllocator<64> arena; in DEF_TEST() local
270 exercise(&arena); in DEF_TEST()
273 // Exercise arena with a heap allocated starting block in DEF_TEST()
276 GrSubRunAllocator arena{block.get(), 1024, 0}; in DEF_TEST()
277 exercise(&arena); in DEF_TEST()
284 GrSubRunAllocator arena; in DEF_TEST() local
310 GrSTSubRunAllocator<64> arena; DEF_TEST() local
[all...]
/third_party/python/Include/internal/
H A Dpycore_ast.h60 asdl_mod_seq *_Py_asdl_mod_seq_new(Py_ssize_t size, PyArena *arena);
67 asdl_stmt_seq *_Py_asdl_stmt_seq_new(Py_ssize_t size, PyArena *arena);
74 asdl_expr_seq *_Py_asdl_expr_seq_new(Py_ssize_t size, PyArena *arena);
82 *arena);
90 *arena);
97 asdl_arguments_seq *_Py_asdl_arguments_seq_new(Py_ssize_t size, PyArena *arena);
104 asdl_arg_seq *_Py_asdl_arg_seq_new(Py_ssize_t size, PyArena *arena);
111 asdl_keyword_seq *_Py_asdl_keyword_seq_new(Py_ssize_t size, PyArena *arena);
118 asdl_alias_seq *_Py_asdl_alias_seq_new(Py_ssize_t size, PyArena *arena);
125 asdl_withitem_seq *_Py_asdl_withitem_seq_new(Py_ssize_t size, PyArena *arena);
[all...]
/third_party/protobuf/php/ext/google/protobuf/
H A Dphp-upb.h294 * It could either be an arena allocator (which doesn't require individual
296 * free memory unless it knows that the allocator is an arena allocator. */
350 /* upb_arena is a specific allocator implementation that uses arena allocation.
352 * arena blocks. Arenas by nature do not require the individual allocations
354 * functions that will run when the arena is destroyed.
358 * You could write a thread-safe arena allocator that satisfies the
376 /* Creates an arena from the given initial block (if any -- n may be 0).
378 * is a fixed-size arena and cannot grow. */
1008 /* Creates a new messages with the given layout on the given arena. */
1020 upb_arena *arena);
1125 _upb_array_reserve(upb_array *arr, size_t size, upb_arena *arena) _upb_array_reserve() argument
1131 _upb_array_resize(upb_array *arr, size_t size, upb_arena *arena) _upb_array_resize() argument
1162 _upb_array_resize_accessor(void *msg, size_t ofs, size_t size, upb_fieldtype_t type, upb_arena *arena) _upb_array_resize_accessor() argument
1175 _upb_array_append_accessor(void *msg, size_t ofs, size_t elem_size, upb_fieldtype_t type, const void *value, upb_arena *arena) _upb_array_append_accessor() argument
1297 _upb_map_set(upb_map *map, const void *key, size_t key_size, void *val, size_t val_size, upb_arena *arena) _upb_map_set() argument
1339 _upb_msg_map_set(upb_msg *msg, size_t ofs, const void *key, size_t key_size, void *val, size_t val_size, upb_arena *arena) _upb_msg_map_set() argument
1586 google_protobuf_FileDescriptorSet_new(upb_arena *arena) google_protobuf_FileDescriptorSet_new() argument
1589 google_protobuf_FileDescriptorSet_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileDescriptorSet_parse() argument
1594 google_protobuf_FileDescriptorSet_serialize(const google_protobuf_FileDescriptorSet *msg, upb_arena *arena, size_t *len) google_protobuf_FileDescriptorSet_serialize() argument
1604 google_protobuf_FileDescriptorSet_resize_file(google_protobuf_FileDescriptorSet *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorSet_resize_file() argument
1607 google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet *msg, upb_arena *arena) google_protobuf_FileDescriptorSet_add_file() argument
1617 google_protobuf_FileDescriptorProto_new(upb_arena *arena) google_protobuf_FileDescriptorProto_new() argument
1620 google_protobuf_FileDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileDescriptorProto_parse() argument
1625 google_protobuf_FileDescriptorProto_serialize(const google_protobuf_FileDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_FileDescriptorProto_serialize() argument
1662 google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_dependency() argument
1665 google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_dependency() argument
1672 google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_message_type() argument
1675 google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_message_type() argument
1685 google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_enum_type() argument
1688 google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_enum_type() argument
1698 google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_service() argument
1701 google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_service() argument
1711 google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_extension() argument
1714 google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_extension() argument
1725 google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_mutable_options() argument
1738 google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_mutable_source_code_info() argument
1750 google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_public_dependency() argument
1753 google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_public_dependency() argument
1760 google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_weak_dependency() argument
1763 google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_weak_dependency() argument
1774 google_protobuf_DescriptorProto_new(upb_arena *arena) google_protobuf_DescriptorProto_new() argument
1777 google_protobuf_DescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_parse() argument
1782 google_protobuf_DescriptorProto_serialize(const google_protobuf_DescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_serialize() argument
1813 google_protobuf_DescriptorProto_resize_field(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_field() argument
1816 google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_field() argument
1826 google_protobuf_DescriptorProto_resize_nested_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_nested_type() argument
1829 google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_nested_type() argument
1839 google_protobuf_DescriptorProto_resize_enum_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_enum_type() argument
1842 google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_enum_type() argument
1852 google_protobuf_DescriptorProto_resize_extension_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_extension_range() argument
1855 google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_extension_range() argument
1865 google_protobuf_DescriptorProto_resize_extension(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_extension() argument
1868 google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_extension() argument
1879 google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_mutable_options() argument
1891 google_protobuf_DescriptorProto_resize_oneof_decl(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_oneof_decl() argument
1894 google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_oneof_decl() argument
1904 google_protobuf_DescriptorProto_resize_reserved_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_reserved_range() argument
1907 google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_reserved_range() argument
1917 google_protobuf_DescriptorProto_resize_reserved_name(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_reserved_name() argument
1920 google_protobuf_DescriptorProto_add_reserved_name(google_protobuf_DescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_DescriptorProto_add_reserved_name() argument
1927 google_protobuf_DescriptorProto_ExtensionRange_new(upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_new() argument
1930 google_protobuf_DescriptorProto_ExtensionRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_parse() argument
1935 google_protobuf_DescriptorProto_ExtensionRange_serialize(const google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_ExtensionRange_serialize() argument
1958 google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_mutable_options() argument
1970 google_protobuf_DescriptorProto_ReservedRange_new(upb_arena *arena) google_protobuf_DescriptorProto_ReservedRange_new() argument
1973 google_protobuf_DescriptorProto_ReservedRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_ReservedRange_parse() argument
1978 google_protobuf_DescriptorProto_ReservedRange_serialize(const google_protobuf_DescriptorProto_ReservedRange *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_ReservedRange_serialize() argument
1998 google_protobuf_ExtensionRangeOptions_new(upb_arena *arena) google_protobuf_ExtensionRangeOptions_new() argument
2001 google_protobuf_ExtensionRangeOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ExtensionRangeOptions_parse() argument
2006 google_protobuf_ExtensionRangeOptions_serialize(const google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena, size_t *len) google_protobuf_ExtensionRangeOptions_serialize() argument
2016 google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t len, upb_arena *arena) google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option() argument
2019 google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena) google_protobuf_ExtensionRangeOptions_add_uninterpreted_option() argument
2029 google_protobuf_FieldDescriptorProto_new(upb_arena *arena) google_protobuf_FieldDescriptorProto_new() argument
2032 google_protobuf_FieldDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FieldDescriptorProto_parse() argument
2037 google_protobuf_FieldDescriptorProto_serialize(const google_protobuf_FieldDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_FieldDescriptorProto_serialize() argument
2096 google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto *msg, upb_arena *arena) google_protobuf_FieldDescriptorProto_mutable_options() argument
2120 google_protobuf_OneofDescriptorProto_new(upb_arena *arena) google_protobuf_OneofDescriptorProto_new() argument
2123 google_protobuf_OneofDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_OneofDescriptorProto_parse() argument
2128 google_protobuf_OneofDescriptorProto_serialize(const google_protobuf_OneofDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_OneofDescriptorProto_serialize() argument
2145 google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto *msg, upb_arena *arena) google_protobuf_OneofDescriptorProto_mutable_options() argument
2157 google_protobuf_EnumDescriptorProto_new(upb_arena *arena) google_protobuf_EnumDescriptorProto_new() argument
2160 google_protobuf_EnumDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumDescriptorProto_parse() argument
2165 google_protobuf_EnumDescriptorProto_serialize(const google_protobuf_EnumDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_EnumDescriptorProto_serialize() argument
2186 google_protobuf_EnumDescriptorProto_resize_value(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_value() argument
2189 google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_value() argument
2200 google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_mutable_options() argument
2212 google_protobuf_EnumDescriptorProto_resize_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_reserved_range() argument
2215 google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_reserved_range() argument
2225 google_protobuf_EnumDescriptorProto_resize_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_reserved_name() argument
2228 google_protobuf_EnumDescriptorProto_add_reserved_name(google_protobuf_EnumDescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_reserved_name() argument
2235 google_protobuf_EnumDescriptorProto_EnumReservedRange_new(upb_arena *arena) google_protobuf_EnumDescriptorProto_EnumReservedRange_new() argument
2238 google_protobuf_EnumDescriptorProto_EnumReservedRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumDescriptorProto_EnumReservedRange_parse() argument
2243 google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, upb_arena *arena, size_t *len) google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize() argument
2263 google_protobuf_EnumValueDescriptorProto_new(upb_arena *arena) google_protobuf_EnumValueDescriptorProto_new() argument
2266 google_protobuf_EnumValueDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumValueDescriptorProto_parse() argument
2271 google_protobuf_EnumValueDescriptorProto_serialize(const google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_EnumValueDescriptorProto_serialize() argument
2294 google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumValueDescriptorProto_mutable_options() argument
2306 google_protobuf_ServiceDescriptorProto_new(upb_arena *arena) google_protobuf_ServiceDescriptorProto_new() argument
2309 google_protobuf_ServiceDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ServiceDescriptorProto_parse() argument
2314 google_protobuf_ServiceDescriptorProto_serialize(const google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_ServiceDescriptorProto_serialize() argument
2332 google_protobuf_ServiceDescriptorProto_resize_method(google_protobuf_ServiceDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_ServiceDescriptorProto_resize_method() argument
2335 google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) google_protobuf_ServiceDescriptorProto_add_method() argument
2346 google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) google_protobuf_ServiceDescriptorProto_mutable_options() argument
2358 google_protobuf_MethodDescriptorProto_new(upb_arena *arena) google_protobuf_MethodDescriptorProto_new() argument
2361 google_protobuf_MethodDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MethodDescriptorProto_parse() argument
2366 google_protobuf_MethodDescriptorProto_serialize(const google_protobuf_MethodDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_MethodDescriptorProto_serialize() argument
2399 google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto *msg, upb_arena *arena) google_protobuf_MethodDescriptorProto_mutable_options() argument
2419 google_protobuf_FileOptions_new(upb_arena *arena) google_protobuf_FileOptions_new() argument
2422 google_protobuf_FileOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileOptions_parse() argument
2427 google_protobuf_FileOptions_serialize(const google_protobuf_FileOptions *msg, upb_arena *arena, size_t *len) google_protobuf_FileOptions_serialize() argument
2557 google_protobuf_FileOptions_resize_uninterpreted_option(google_protobuf_FileOptions *msg, size_t len, upb_arena *arena) google_protobuf_FileOptions_resize_uninterpreted_option() argument
2560 google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions *msg, upb_arena *arena) google_protobuf_FileOptions_add_uninterpreted_option() argument
2570 google_protobuf_MessageOptions_new(upb_arena *arena) google_protobuf_MessageOptions_new() argument
2573 google_protobuf_MessageOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MessageOptions_parse() argument
2578 google_protobuf_MessageOptions_serialize(const google_protobuf_MessageOptions *msg, upb_arena *arena, size_t *len) google_protobuf_MessageOptions_serialize() argument
2612 google_protobuf_MessageOptions_resize_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t len, upb_arena *arena) google_protobuf_MessageOptions_resize_uninterpreted_option() argument
2615 google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions *msg, upb_arena *arena) google_protobuf_MessageOptions_add_uninterpreted_option() argument
2625 google_protobuf_FieldOptions_new(upb_arena *arena) google_protobuf_FieldOptions_new() argument
2628 google_protobuf_FieldOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FieldOptions_parse() argument
2633 google_protobuf_FieldOptions_serialize(const google_protobuf_FieldOptions *msg, upb_arena *arena, size_t *len) google_protobuf_FieldOptions_serialize() argument
2679 google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t len, upb_arena *arena) google_protobuf_FieldOptions_resize_uninterpreted_option() argument
2682 google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions *msg, upb_arena *arena) google_protobuf_FieldOptions_add_uninterpreted_option() argument
2692 google_protobuf_OneofOptions_new(upb_arena *arena) google_protobuf_OneofOptions_new() argument
2695 google_protobuf_OneofOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_OneofOptions_parse() argument
2700 google_protobuf_OneofOptions_serialize(const google_protobuf_OneofOptions *msg, upb_arena *arena, size_t *len) google_protobuf_OneofOptions_serialize() argument
2710 google_protobuf_OneofOptions_resize_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t len, upb_arena *arena) google_protobuf_OneofOptions_resize_uninterpreted_option() argument
2713 google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions *msg, upb_arena *arena) google_protobuf_OneofOptions_add_uninterpreted_option() argument
2723 google_protobuf_EnumOptions_new(upb_arena *arena) google_protobuf_EnumOptions_new() argument
2726 google_protobuf_EnumOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumOptions_parse() argument
2731 google_protobuf_EnumOptions_serialize(const google_protobuf_EnumOptions *msg, upb_arena *arena, size_t *len) google_protobuf_EnumOptions_serialize() argument
2753 google_protobuf_EnumOptions_resize_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t len, upb_arena *arena) google_protobuf_EnumOptions_resize_uninterpreted_option() argument
2756 google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions *msg, upb_arena *arena) google_protobuf_EnumOptions_add_uninterpreted_option() argument
2766 google_protobuf_EnumValueOptions_new(upb_arena *arena) google_protobuf_EnumValueOptions_new() argument
2769 google_protobuf_EnumValueOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumValueOptions_parse() argument
2774 google_protobuf_EnumValueOptions_serialize(const google_protobuf_EnumValueOptions *msg, upb_arena *arena, size_t *len) google_protobuf_EnumValueOptions_serialize() argument
2790 google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t len, upb_arena *arena) google_protobuf_EnumValueOptions_resize_uninterpreted_option() argument
2793 google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions *msg, upb_arena *arena) google_protobuf_EnumValueOptions_add_uninterpreted_option() argument
2803 google_protobuf_ServiceOptions_new(upb_arena *arena) google_protobuf_ServiceOptions_new() argument
2806 google_protobuf_ServiceOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ServiceOptions_parse() argument
2811 google_protobuf_ServiceOptions_serialize(const google_protobuf_ServiceOptions *msg, upb_arena *arena, size_t *len) google_protobuf_ServiceOptions_serialize() argument
2827 google_protobuf_ServiceOptions_resize_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t len, upb_arena *arena) google_protobuf_ServiceOptions_resize_uninterpreted_option() argument
2830 google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions *msg, upb_arena *arena) google_protobuf_ServiceOptions_add_uninterpreted_option() argument
2840 google_protobuf_MethodOptions_new(upb_arena *arena) google_protobuf_MethodOptions_new() argument
2843 google_protobuf_MethodOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MethodOptions_parse() argument
2848 google_protobuf_MethodOptions_serialize(const google_protobuf_MethodOptions *msg, upb_arena *arena, size_t *len) google_protobuf_MethodOptions_serialize() argument
2870 google_protobuf_MethodOptions_resize_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t len, upb_arena *arena) google_protobuf_MethodOptions_resize_uninterpreted_option() argument
2873 google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions *msg, upb_arena *arena) google_protobuf_MethodOptions_add_uninterpreted_option() argument
2883 google_protobuf_UninterpretedOption_new(upb_arena *arena) google_protobuf_UninterpretedOption_new() argument
2886 google_protobuf_UninterpretedOption_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_UninterpretedOption_parse() argument
2891 google_protobuf_UninterpretedOption_serialize(const google_protobuf_UninterpretedOption *msg, upb_arena *arena, size_t *len) google_protobuf_UninterpretedOption_serialize() argument
2913 google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption *msg, size_t len, upb_arena *arena) google_protobuf_UninterpretedOption_resize_name() argument
2916 google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption *msg, upb_arena *arena) google_protobuf_UninterpretedOption_add_name() argument
2950 google_protobuf_UninterpretedOption_NamePart_new(upb_arena *arena) google_protobuf_UninterpretedOption_NamePart_new() argument
2953 google_protobuf_UninterpretedOption_NamePart_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_UninterpretedOption_NamePart_parse() argument
2958 google_protobuf_UninterpretedOption_NamePart_serialize(const google_protobuf_UninterpretedOption_NamePart *msg, upb_arena *arena, size_t *len) google_protobuf_UninterpretedOption_NamePart_serialize() argument
2978 google_protobuf_SourceCodeInfo_new(upb_arena *arena) google_protobuf_SourceCodeInfo_new() argument
2981 google_protobuf_SourceCodeInfo_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_SourceCodeInfo_parse() argument
2986 google_protobuf_SourceCodeInfo_serialize(const google_protobuf_SourceCodeInfo *msg, upb_arena *arena, size_t *len) google_protobuf_SourceCodeInfo_serialize() argument
2996 google_protobuf_SourceCodeInfo_resize_location(google_protobuf_SourceCodeInfo *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_resize_location() argument
2999 google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo *msg, upb_arena *arena) google_protobuf_SourceCodeInfo_add_location() argument
3009 google_protobuf_SourceCodeInfo_Location_new(upb_arena *arena) google_protobuf_SourceCodeInfo_Location_new() argument
3012 google_protobuf_SourceCodeInfo_Location_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_parse() argument
3017 google_protobuf_SourceCodeInfo_Location_serialize(const google_protobuf_SourceCodeInfo_Location *msg, upb_arena *arena, size_t *len) google_protobuf_SourceCodeInfo_Location_serialize() argument
3032 google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_path() argument
3035 google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_path() argument
3042 google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_span() argument
3045 google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_span() argument
3060 google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments() argument
3063 google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments() argument
3070 google_protobuf_GeneratedCodeInfo_new(upb_arena *arena) google_protobuf_GeneratedCodeInfo_new() argument
3073 google_protobuf_GeneratedCodeInfo_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_GeneratedCodeInfo_parse() argument
3078 google_protobuf_GeneratedCodeInfo_serialize(const google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena, size_t *len) google_protobuf_GeneratedCodeInfo_serialize() argument
3088 google_protobuf_GeneratedCodeInfo_resize_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t len, upb_arena *arena) google_protobuf_GeneratedCodeInfo_resize_annotation() argument
3091 google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena) google_protobuf_GeneratedCodeInfo_add_annotation() argument
3101 google_protobuf_GeneratedCodeInfo_Annotation_new(upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_new() argument
3104 google_protobuf_GeneratedCodeInfo_Annotation_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_parse() argument
3109 google_protobuf_GeneratedCodeInfo_Annotation_serialize(const google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_arena *arena, size_t *len) google_protobuf_GeneratedCodeInfo_Annotation_serialize() argument
3124 google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t len, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_resize_path() argument
3127 google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t val, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_add_path() argument
[all...]
H A Dmessage.c40 #include "arena.h"
54 zval arena; member
75 Arena_Init(&intern->arena); in Message_create()
89 zval_dtor(&intern->arena); in Message_dtor()
205 upb_arena *arena = Arena_Get(&intern->arena); in Message_read_property() local
210 upb_mutmsgval msgval = upb_msg_mutable(intern->msg, f, arena); in Message_read_property()
211 MapField_GetPhpWrapper(rv, msgval.map, f, &intern->arena); in Message_read_property()
213 upb_mutmsgval msgval = upb_msg_mutable(intern->msg, f, arena); in Message_read_property()
214 RepeatedField_GetPhpWrapper(rv, msgval.array, f, &intern->arena); in Message_read_property()
249 upb_arena *arena = Arena_Get(&intern->arena); Message_write_property() local
309 Message_GetPhpWrapper(zval *val, const Descriptor *desc, upb_msg *msg, zval *arena) Message_GetPhpWrapper() argument
330 Message_GetUpbMessage(zval *val, const Descriptor *desc, upb_arena *arena, upb_msg **msg) Message_GetUpbMessage() argument
382 Message_InitFromPhp(upb_msg *msg, const upb_msgdef *m, zval *init, upb_arena *arena) Message_InitFromPhp() argument
453 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
498 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
541 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
594 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
732 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
869 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
[all...]
H A Darray.c41 #include "arena.h"
55 zval arena; member
76 Arena_Init(&intern->arena); in RepeatedField_create()
93 zval_ptr_dtor(&intern->arena); in RepeatedField_destructor()
112 const upb_fielddef *f, zval *arena) { in RepeatedField_GetPhpWrapper()
122 ZVAL_COPY(&intern->arena, arena); in RepeatedField_GetPhpWrapper()
133 upb_arena *arena) { in RepeatedField_GetUpbArray()
140 upb_array *arr = upb_array_new(arena, upb_fielddef_type(f)); in RepeatedField_GetUpbArray()
154 if (!Convert_PhpToUpbAutoWrap(zv, &val, type, desc, arena)) { in RepeatedField_GetUpbArray()
111 RepeatedField_GetPhpWrapper(zval *val, upb_array *arr, const upb_fielddef *f, zval *arena) RepeatedField_GetPhpWrapper() argument
132 RepeatedField_GetUpbArray(zval *val, const upb_fielddef *f, upb_arena *arena) RepeatedField_GetUpbArray() argument
191 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
220 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
302 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
[all...]
H A Dmap.c38 #include "arena.h"
51 zval arena; member
73 Arena_Init(&intern->arena); in MapField_create()
89 zval_ptr_dtor(&intern->arena); in MapField_destructor()
107 zval *arena) { in MapField_GetPhpWrapper()
120 ZVAL_COPY(&intern->arena, arena); in MapField_GetPhpWrapper()
131 upb_map *MapField_GetUpbMap(zval *val, const upb_fielddef *f, upb_arena *arena) { in MapField_GetUpbMap() argument
144 upb_map *map = upb_map_new(arena, key_type, val_type); in MapField_GetUpbMap()
161 if (!Convert_PhpToUpb(&php_key, &upb_key, key_type, NULL, arena) || in MapField_GetUpbMap()
106 MapField_GetPhpWrapper(zval *val, upb_map *map, const upb_fielddef *f, zval *arena) MapField_GetPhpWrapper() argument
200 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
309 upb_arena *arena = Arena_Get(&intern->arena); PHP_METHOD() local
[all...]
/third_party/python/Lib/multiprocessing/
H A Dheap.py126 # Current arena allocation size
159 # Create a new arena with at least the given *size*
166 arena = Arena(length)
167 self._arenas.append(arena)
168 return (arena, 0, length)
170 def _discard_arena(self, arena):
171 # Possibly delete the given (unused) arena
172 length = arena.size
173 # Reusing an existing arena is faster than creating a new one, so
177 blocks = self._allocated_blocks.pop(arena)
[all...]
/third_party/protobuf/src/google/protobuf/
H A Darena_unittest.cc31 #include <google/protobuf/arena.h>
170 Arena arena; in TEST() local
171 EXPECT_TRUE(Arena::Create<int32>(&arena) != NULL); in TEST()
172 EXPECT_TRUE(Arena::Create<int64>(&arena) != NULL); in TEST()
173 EXPECT_TRUE(Arena::Create<float>(&arena) != NULL); in TEST()
174 EXPECT_TRUE(Arena::Create<double>(&arena) != NULL); in TEST()
175 EXPECT_TRUE(Arena::Create<std::string>(&arena) != NULL); in TEST()
176 arena.Own(new int32); in TEST()
177 arena.Own(new int64); in TEST()
178 arena in TEST()
193 Arena arena; TEST() local
202 Arena arena; TEST() local
211 Arena arena; TEST() local
220 Arena arena; TEST() local
234 Arena arena; TEST() local
266 Arena arena; TEST() local
304 Arena arena; TEST() local
320 Arena arena; TEST() local
458 Arena arena; TEST() local
467 Arena arena; TEST() local
480 Arena arena; TEST() local
488 Arena arena; TEST() local
570 Arena arena; TEST() local
588 Arena arena; TEST() local
802 Arena arena; TEST() local
862 Arena arena; TEST() local
872 Arena arena; TEST() local
888 Arena arena; TEST() local
955 Arena arena; TEST() local
966 Arena arena; TEST() local
971 Arena arena; TEST() local
976 Arena arena; TEST() local
1069 Arena arena; TEST() local
1181 Arena arena; TEST() local
1234 Arena arena; TEST() local
1258 Arena arena; TEST() local
1302 Arena arena; TEST() local
1313 on_init(Arena* arena) on_init() argument
1326 on_reset(Arena* arena, void* cookie, uint64 space_used) on_reset() argument
1332 on_destruction(Arena* arena, void* cookie, uint64 space_used) on_destruction() argument
[all...]
H A Darenastring.h41 #include <google/protobuf/arena.h>
51 // This is the implementation of arena string fields written for the open-source
57 // more closely with the arena allocator.
77 const ::std::string& value, Arena* arena) { in Set()
79 CreateInstance(arena, &value); in Set()
86 const ::std::string& value, Arena* arena) { in SetLite()
87 Set(default_value, value, arena); in SetLite()
94 Arena* arena) { in Mutable()
96 CreateInstance(arena, default_value); in Mutable()
102 // Own()'d by any arena
[all...]
H A Darenastring_unittest.cc56 // Test ArenaStringPtr with arena == NULL.
82 Arena arena; in TEST() local
87 field.Set(&default_value, WrapString("Test short"), &arena); in TEST()
90 &arena); in TEST()
92 field.Set(&default_value, std::string(""), &arena); in TEST()
93 field.Destroy(&default_value, &arena); in TEST()
97 std::string* mut = field2.Mutable(&default_value, &arena); in TEST()
98 EXPECT_EQ(mut, field2.Mutable(&default_value, &arena)); in TEST()
104 field2.Destroy(&default_value, &arena); in TEST()
108 Arena arena; in TEST() local
[all...]
H A Darena.h116 // ArenaOptions provides optional additional parameters to arena construction
124 // individual arena allocation request occurs with a size larger than this
129 // An initial block of memory for the arena to use, or NULL for none. If
130 // provided, the block must live at least as long as the arena itself. The
145 // from the arena. By default, it contains a ptr to a wrapper function that
165 // return a pointer to a cookie to be stored in the arena. Reset and
167 // allows us to save an external object per arena instance and use it on the
169 // called on this arena instance).
171 // arena just before the reset.
172 void* (*on_arena_init)(Arena* arena);
297 CreateMessage(Arena* arena, Args&&... args) CreateMessage() argument
323 Create(Arena* arena, Args&&... args) Create() argument
335 CreateArray(Arena* arena, size_t num_elements) CreateArray() argument
480 CreateMessageInternal(Arena* arena, Args&&... args) CreateMessageInternal() argument
496 CreateMessageInternal(Arena* arena) CreateMessageInternal() argument
508 CreateInternal(Arena* arena, Args&&... args) CreateInternal() argument
549 DoCreateMaybeMessage(Arena* arena, std::true_type, Args&&... args) DoCreateMaybeMessage() argument
556 DoCreateMaybeMessage(Arena* arena, std::false_type, Args&&... args) DoCreateMaybeMessage() argument
563 CreateMaybeMessage(Arena* arena, Args&&... args) CreateMaybeMessage() argument
570 CreateNoMessage(Arena* arena, std::true_type, Args&&... args) CreateNoMessage() argument
579 CreateNoMessage(Arena* arena, std::false_type, Args&&... args) CreateNoMessage() argument
617 CreateInArenaStorage(T* ptr, Arena* arena, Args&&... args) CreateInArenaStorage() argument
627 CreateInArenaStorageInternal(T* ptr, Arena* arena, std::true_type, Args&&... args) CreateInArenaStorageInternal() argument
641 RegisterDestructorInternal(T* ptr, Arena* arena, std::false_type) RegisterDestructorInternal() argument
[all...]
H A Dgenerated_message_table_driven_lite.h148 inline void ClearOneofField(const ParseTableField& field, Arena* arena, in ClearOneofField() argument
152 if (arena == NULL) { in ClearOneofField()
160 ->Destroy(&GetEmptyStringAlreadyInited(), arena); in ClearOneofField() local
182 Arena* arena, MessageLite* msg, uint32* oneof_case, in ResetOneofField()
191 ClearOneofField(table.fields[*oneof_case], arena, msg); in ResetOneofField()
208 *submessage = prototype->New(arena); in ResetOneofField()
216 Arena* arena, uint32* has_bits, in HandleString()
257 static_cast<const std::string*>(default_ptr), arena); in HandleString()
275 static_cast<const std::string*>(default_ptr), arena); in HandleString()
349 Arena* arena in NewFromPrototype()
181 ResetOneofField(const ParseTable& table, int field_number, Arena* arena, MessageLite* msg, uint32* oneof_case, int64 offset, const void* default_ptr) ResetOneofField() argument
215 HandleString(io::CodedInputStream* input, MessageLite* msg, Arena* arena, uint32* has_bits, uint32 has_bit_index, int64 offset, const void* default_ptr, const char* field_name) HandleString() argument
472 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
489 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
506 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
530 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
544 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
559 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
573 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
626 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
662 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
700 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
717 Arena* const arena = msg->GetArena(); MergePartialFromCodedStreamInlined() local
[all...]
H A Dimplicit_weak_message.h37 #include <google/protobuf/arena.h>
60 explicit ImplicitWeakMessage(Arena* arena) : MessageLite(arena) {} in ImplicitWeakMessage() argument
67 MessageLite* New(Arena* arena) const override {
68 return Arena::CreateMessage<ImplicitWeakMessage>(arena);
106 Arena* arena = NULL) { in NewFromPrototype()
107 return prototype->New(arena); in NewFromPrototype()
110 static inline void Delete(MessageLite* value, Arena* arena) { in Delete() argument
111 if (arena == NULL) { in Delete()
133 explicit WeakRepeatedPtrField(Arena* arena) in WeakRepeatedPtrField()
[all...]
H A Ddynamic_message_unittest.cc147 Arena arena; in TEST_P() local
148 Message* message = prototype_->New(GetParam() ? &arena : NULL); in TEST_P()
161 Arena arena; in TEST_P() local
162 Message* message = extensions_prototype_->New(GetParam() ? &arena : NULL); in TEST_P()
175 Arena arena; in TEST_P() local
176 Message* message = packed_prototype_->New(GetParam() ? &arena : NULL); in TEST_P()
189 Arena arena; in TEST_P() local
190 Message* message = oneof_prototype_->New(GetParam() ? &arena : NULL); in TEST_P()
260 Arena arena; in TEST_P() local
261 Message* message = prototype_->New(GetParam() ? &arena in TEST_P()
275 Arena arena; TEST_F() local
[all...]
H A Dwrappers.pb.cc312 DoubleValue::DoubleValue(::PROTOBUF_NAMESPACE_ID::Arena* arena) in DoubleValue() argument
313 : ::PROTOBUF_NAMESPACE_ID::Message(arena) { in DoubleValue()
315 RegisterArenaDtor(arena); in DoubleValue()
366 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; in _InternalParse() local
507 FloatValue::FloatValue(::PROTOBUF_NAMESPACE_ID::Arena* arena) in FloatValue() argument
508 : ::PROTOBUF_NAMESPACE_ID::Message(arena) { in FloatValue()
510 RegisterArenaDtor(arena); in FloatValue()
561 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; in _InternalParse() local
702 Int64Value(::PROTOBUF_NAMESPACE_ID::Arena* arena) Int64Value() argument
756 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; _InternalParse() local
899 UInt64Value(::PROTOBUF_NAMESPACE_ID::Arena* arena) UInt64Value() argument
953 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; _InternalParse() local
1096 Int32Value(::PROTOBUF_NAMESPACE_ID::Arena* arena) Int32Value() argument
1150 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; _InternalParse() local
1293 UInt32Value(::PROTOBUF_NAMESPACE_ID::Arena* arena) UInt32Value() argument
1347 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; _InternalParse() local
1490 BoolValue(::PROTOBUF_NAMESPACE_ID::Arena* arena) BoolValue() argument
1544 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; _InternalParse() local
1685 StringValue(::PROTOBUF_NAMESPACE_ID::Arena* arena) StringValue() argument
1745 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; _InternalParse() local
1894 BytesValue(::PROTOBUF_NAMESPACE_ID::Arena* arena) BytesValue() argument
1954 ::PROTOBUF_NAMESPACE_ID::Arena* arena = GetArena(); (void)arena; _InternalParse() local
2093 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
2096 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
2099 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
2102 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
2105 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
2108 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
2111 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
2114 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
2117 CreateMaybeMessage(Arena* arena) CreateMaybeMessage() argument
[all...]
H A Dmetadata_lite.h36 #include <google/protobuf/arena.h>
49 // This is the representation for messages that support arena allocation. It
57 // indicate an arena pointer and bit 0 == 1 to indicate a UFS+Arena-container
62 explicit InternalMetadata(Arena* arena) : ptr_(arena) {} in InternalMetadata() argument
67 if (have_unknown_fields() && arena() == NULL) { in Delete()
72 PROTOBUF_ALWAYS_INLINE Arena* arena() const { in arena() function in google::protobuf::internal::InternalMetadata
74 return PtrValue<ContainerBase>()->arena; in arena()
107 // Semantics here are that we swap only the unknown fields, not the arena in Swap()
109 // maintain our own arena pt in Swap()
158 Arena* arena; global() member
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.h280 * It could either be an arena allocator (which doesn't require individual
282 * free memory unless it knows that the allocator is an arena allocator. */
336 /* upb_arena is a specific allocator implementation that uses arena allocation.
338 * arena blocks. Arenas by nature do not require the individual allocations
340 * functions that will run when the arena is destroyed.
344 * You could write a thread-safe arena allocator that satisfies the
366 /* Creates an arena from the given initial block (if any -- n may be 0).
368 * is a fixed-size arena and cannot grow. */
1003 /* Creates a new messages with the given layout on the given arena. */
1009 upb_arena *arena);
1091 _upb_array_resize_accessor(void *msg, size_t ofs, size_t size, upb_fieldtype_t type, upb_arena *arena) _upb_array_resize_accessor() argument
1104 _upb_array_append_accessor(void *msg, size_t ofs, size_t elem_size, upb_fieldtype_t type, const void *value, upb_arena *arena) _upb_array_append_accessor() argument
1226 _upb_map_set(upb_map *map, const void *key, size_t key_size, void *val, size_t val_size, upb_arena *arena) _upb_map_set() argument
1268 _upb_msg_map_set(upb_msg *msg, size_t ofs, const void *key, size_t key_size, void *val, size_t val_size, upb_arena *arena) _upb_msg_map_set() argument
1515 google_protobuf_FileDescriptorSet_new(upb_arena *arena) google_protobuf_FileDescriptorSet_new() argument
1518 google_protobuf_FileDescriptorSet_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileDescriptorSet_parse() argument
1523 google_protobuf_FileDescriptorSet_serialize(const google_protobuf_FileDescriptorSet *msg, upb_arena *arena, size_t *len) google_protobuf_FileDescriptorSet_serialize() argument
1533 google_protobuf_FileDescriptorSet_resize_file(google_protobuf_FileDescriptorSet *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorSet_resize_file() argument
1536 google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet *msg, upb_arena *arena) google_protobuf_FileDescriptorSet_add_file() argument
1546 google_protobuf_FileDescriptorProto_new(upb_arena *arena) google_protobuf_FileDescriptorProto_new() argument
1549 google_protobuf_FileDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileDescriptorProto_parse() argument
1554 google_protobuf_FileDescriptorProto_serialize(const google_protobuf_FileDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_FileDescriptorProto_serialize() argument
1591 google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_dependency() argument
1594 google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_dependency() argument
1601 google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_message_type() argument
1604 google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_message_type() argument
1614 google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_enum_type() argument
1617 google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_enum_type() argument
1627 google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_service() argument
1630 google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_service() argument
1640 google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_extension() argument
1643 google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_extension() argument
1654 google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_mutable_options() argument
1667 google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_mutable_source_code_info() argument
1679 google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_public_dependency() argument
1682 google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_public_dependency() argument
1689 google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_weak_dependency() argument
1692 google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_weak_dependency() argument
1703 google_protobuf_DescriptorProto_new(upb_arena *arena) google_protobuf_DescriptorProto_new() argument
1706 google_protobuf_DescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_parse() argument
1711 google_protobuf_DescriptorProto_serialize(const google_protobuf_DescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_serialize() argument
1742 google_protobuf_DescriptorProto_resize_field(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_field() argument
1745 google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_field() argument
1755 google_protobuf_DescriptorProto_resize_nested_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_nested_type() argument
1758 google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_nested_type() argument
1768 google_protobuf_DescriptorProto_resize_enum_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_enum_type() argument
1771 google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_enum_type() argument
1781 google_protobuf_DescriptorProto_resize_extension_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_extension_range() argument
1784 google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_extension_range() argument
1794 google_protobuf_DescriptorProto_resize_extension(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_extension() argument
1797 google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_extension() argument
1808 google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_mutable_options() argument
1820 google_protobuf_DescriptorProto_resize_oneof_decl(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_oneof_decl() argument
1823 google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_oneof_decl() argument
1833 google_protobuf_DescriptorProto_resize_reserved_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_reserved_range() argument
1836 google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_reserved_range() argument
1846 google_protobuf_DescriptorProto_resize_reserved_name(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_reserved_name() argument
1849 google_protobuf_DescriptorProto_add_reserved_name(google_protobuf_DescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_DescriptorProto_add_reserved_name() argument
1856 google_protobuf_DescriptorProto_ExtensionRange_new(upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_new() argument
1859 google_protobuf_DescriptorProto_ExtensionRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_parse() argument
1864 google_protobuf_DescriptorProto_ExtensionRange_serialize(const google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_ExtensionRange_serialize() argument
1887 google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_mutable_options() argument
1899 google_protobuf_DescriptorProto_ReservedRange_new(upb_arena *arena) google_protobuf_DescriptorProto_ReservedRange_new() argument
1902 google_protobuf_DescriptorProto_ReservedRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_ReservedRange_parse() argument
1907 google_protobuf_DescriptorProto_ReservedRange_serialize(const google_protobuf_DescriptorProto_ReservedRange *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_ReservedRange_serialize() argument
1927 google_protobuf_ExtensionRangeOptions_new(upb_arena *arena) google_protobuf_ExtensionRangeOptions_new() argument
1930 google_protobuf_ExtensionRangeOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ExtensionRangeOptions_parse() argument
1935 google_protobuf_ExtensionRangeOptions_serialize(const google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena, size_t *len) google_protobuf_ExtensionRangeOptions_serialize() argument
1945 google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t len, upb_arena *arena) google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option() argument
1948 google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena) google_protobuf_ExtensionRangeOptions_add_uninterpreted_option() argument
1958 google_protobuf_FieldDescriptorProto_new(upb_arena *arena) google_protobuf_FieldDescriptorProto_new() argument
1961 google_protobuf_FieldDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FieldDescriptorProto_parse() argument
1966 google_protobuf_FieldDescriptorProto_serialize(const google_protobuf_FieldDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_FieldDescriptorProto_serialize() argument
2025 google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto *msg, upb_arena *arena) google_protobuf_FieldDescriptorProto_mutable_options() argument
2049 google_protobuf_OneofDescriptorProto_new(upb_arena *arena) google_protobuf_OneofDescriptorProto_new() argument
2052 google_protobuf_OneofDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_OneofDescriptorProto_parse() argument
2057 google_protobuf_OneofDescriptorProto_serialize(const google_protobuf_OneofDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_OneofDescriptorProto_serialize() argument
2074 google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto *msg, upb_arena *arena) google_protobuf_OneofDescriptorProto_mutable_options() argument
2086 google_protobuf_EnumDescriptorProto_new(upb_arena *arena) google_protobuf_EnumDescriptorProto_new() argument
2089 google_protobuf_EnumDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumDescriptorProto_parse() argument
2094 google_protobuf_EnumDescriptorProto_serialize(const google_protobuf_EnumDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_EnumDescriptorProto_serialize() argument
2115 google_protobuf_EnumDescriptorProto_resize_value(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_value() argument
2118 google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_value() argument
2129 google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_mutable_options() argument
2141 google_protobuf_EnumDescriptorProto_resize_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_reserved_range() argument
2144 google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_reserved_range() argument
2154 google_protobuf_EnumDescriptorProto_resize_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_reserved_name() argument
2157 google_protobuf_EnumDescriptorProto_add_reserved_name(google_protobuf_EnumDescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_reserved_name() argument
2164 google_protobuf_EnumDescriptorProto_EnumReservedRange_new(upb_arena *arena) google_protobuf_EnumDescriptorProto_EnumReservedRange_new() argument
2167 google_protobuf_EnumDescriptorProto_EnumReservedRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumDescriptorProto_EnumReservedRange_parse() argument
2172 google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, upb_arena *arena, size_t *len) google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize() argument
2192 google_protobuf_EnumValueDescriptorProto_new(upb_arena *arena) google_protobuf_EnumValueDescriptorProto_new() argument
2195 google_protobuf_EnumValueDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumValueDescriptorProto_parse() argument
2200 google_protobuf_EnumValueDescriptorProto_serialize(const google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_EnumValueDescriptorProto_serialize() argument
2223 google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumValueDescriptorProto_mutable_options() argument
2235 google_protobuf_ServiceDescriptorProto_new(upb_arena *arena) google_protobuf_ServiceDescriptorProto_new() argument
2238 google_protobuf_ServiceDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ServiceDescriptorProto_parse() argument
2243 google_protobuf_ServiceDescriptorProto_serialize(const google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_ServiceDescriptorProto_serialize() argument
2261 google_protobuf_ServiceDescriptorProto_resize_method(google_protobuf_ServiceDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_ServiceDescriptorProto_resize_method() argument
2264 google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) google_protobuf_ServiceDescriptorProto_add_method() argument
2275 google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) google_protobuf_ServiceDescriptorProto_mutable_options() argument
2287 google_protobuf_MethodDescriptorProto_new(upb_arena *arena) google_protobuf_MethodDescriptorProto_new() argument
2290 google_protobuf_MethodDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MethodDescriptorProto_parse() argument
2295 google_protobuf_MethodDescriptorProto_serialize(const google_protobuf_MethodDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_MethodDescriptorProto_serialize() argument
2328 google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto *msg, upb_arena *arena) google_protobuf_MethodDescriptorProto_mutable_options() argument
2348 google_protobuf_FileOptions_new(upb_arena *arena) google_protobuf_FileOptions_new() argument
2351 google_protobuf_FileOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileOptions_parse() argument
2356 google_protobuf_FileOptions_serialize(const google_protobuf_FileOptions *msg, upb_arena *arena, size_t *len) google_protobuf_FileOptions_serialize() argument
2486 google_protobuf_FileOptions_resize_uninterpreted_option(google_protobuf_FileOptions *msg, size_t len, upb_arena *arena) google_protobuf_FileOptions_resize_uninterpreted_option() argument
2489 google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions *msg, upb_arena *arena) google_protobuf_FileOptions_add_uninterpreted_option() argument
2499 google_protobuf_MessageOptions_new(upb_arena *arena) google_protobuf_MessageOptions_new() argument
2502 google_protobuf_MessageOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MessageOptions_parse() argument
2507 google_protobuf_MessageOptions_serialize(const google_protobuf_MessageOptions *msg, upb_arena *arena, size_t *len) google_protobuf_MessageOptions_serialize() argument
2541 google_protobuf_MessageOptions_resize_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t len, upb_arena *arena) google_protobuf_MessageOptions_resize_uninterpreted_option() argument
2544 google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions *msg, upb_arena *arena) google_protobuf_MessageOptions_add_uninterpreted_option() argument
2554 google_protobuf_FieldOptions_new(upb_arena *arena) google_protobuf_FieldOptions_new() argument
2557 google_protobuf_FieldOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FieldOptions_parse() argument
2562 google_protobuf_FieldOptions_serialize(const google_protobuf_FieldOptions *msg, upb_arena *arena, size_t *len) google_protobuf_FieldOptions_serialize() argument
2608 google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t len, upb_arena *arena) google_protobuf_FieldOptions_resize_uninterpreted_option() argument
2611 google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions *msg, upb_arena *arena) google_protobuf_FieldOptions_add_uninterpreted_option() argument
2621 google_protobuf_OneofOptions_new(upb_arena *arena) google_protobuf_OneofOptions_new() argument
2624 google_protobuf_OneofOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_OneofOptions_parse() argument
2629 google_protobuf_OneofOptions_serialize(const google_protobuf_OneofOptions *msg, upb_arena *arena, size_t *len) google_protobuf_OneofOptions_serialize() argument
2639 google_protobuf_OneofOptions_resize_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t len, upb_arena *arena) google_protobuf_OneofOptions_resize_uninterpreted_option() argument
2642 google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions *msg, upb_arena *arena) google_protobuf_OneofOptions_add_uninterpreted_option() argument
2652 google_protobuf_EnumOptions_new(upb_arena *arena) google_protobuf_EnumOptions_new() argument
2655 google_protobuf_EnumOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumOptions_parse() argument
2660 google_protobuf_EnumOptions_serialize(const google_protobuf_EnumOptions *msg, upb_arena *arena, size_t *len) google_protobuf_EnumOptions_serialize() argument
2682 google_protobuf_EnumOptions_resize_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t len, upb_arena *arena) google_protobuf_EnumOptions_resize_uninterpreted_option() argument
2685 google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions *msg, upb_arena *arena) google_protobuf_EnumOptions_add_uninterpreted_option() argument
2695 google_protobuf_EnumValueOptions_new(upb_arena *arena) google_protobuf_EnumValueOptions_new() argument
2698 google_protobuf_EnumValueOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumValueOptions_parse() argument
2703 google_protobuf_EnumValueOptions_serialize(const google_protobuf_EnumValueOptions *msg, upb_arena *arena, size_t *len) google_protobuf_EnumValueOptions_serialize() argument
2719 google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t len, upb_arena *arena) google_protobuf_EnumValueOptions_resize_uninterpreted_option() argument
2722 google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions *msg, upb_arena *arena) google_protobuf_EnumValueOptions_add_uninterpreted_option() argument
2732 google_protobuf_ServiceOptions_new(upb_arena *arena) google_protobuf_ServiceOptions_new() argument
2735 google_protobuf_ServiceOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ServiceOptions_parse() argument
2740 google_protobuf_ServiceOptions_serialize(const google_protobuf_ServiceOptions *msg, upb_arena *arena, size_t *len) google_protobuf_ServiceOptions_serialize() argument
2756 google_protobuf_ServiceOptions_resize_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t len, upb_arena *arena) google_protobuf_ServiceOptions_resize_uninterpreted_option() argument
2759 google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions *msg, upb_arena *arena) google_protobuf_ServiceOptions_add_uninterpreted_option() argument
2769 google_protobuf_MethodOptions_new(upb_arena *arena) google_protobuf_MethodOptions_new() argument
2772 google_protobuf_MethodOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MethodOptions_parse() argument
2777 google_protobuf_MethodOptions_serialize(const google_protobuf_MethodOptions *msg, upb_arena *arena, size_t *len) google_protobuf_MethodOptions_serialize() argument
2799 google_protobuf_MethodOptions_resize_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t len, upb_arena *arena) google_protobuf_MethodOptions_resize_uninterpreted_option() argument
2802 google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions *msg, upb_arena *arena) google_protobuf_MethodOptions_add_uninterpreted_option() argument
2812 google_protobuf_UninterpretedOption_new(upb_arena *arena) google_protobuf_UninterpretedOption_new() argument
2815 google_protobuf_UninterpretedOption_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_UninterpretedOption_parse() argument
2820 google_protobuf_UninterpretedOption_serialize(const google_protobuf_UninterpretedOption *msg, upb_arena *arena, size_t *len) google_protobuf_UninterpretedOption_serialize() argument
2842 google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption *msg, size_t len, upb_arena *arena) google_protobuf_UninterpretedOption_resize_name() argument
2845 google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption *msg, upb_arena *arena) google_protobuf_UninterpretedOption_add_name() argument
2879 google_protobuf_UninterpretedOption_NamePart_new(upb_arena *arena) google_protobuf_UninterpretedOption_NamePart_new() argument
2882 google_protobuf_UninterpretedOption_NamePart_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_UninterpretedOption_NamePart_parse() argument
2887 google_protobuf_UninterpretedOption_NamePart_serialize(const google_protobuf_UninterpretedOption_NamePart *msg, upb_arena *arena, size_t *len) google_protobuf_UninterpretedOption_NamePart_serialize() argument
2907 google_protobuf_SourceCodeInfo_new(upb_arena *arena) google_protobuf_SourceCodeInfo_new() argument
2910 google_protobuf_SourceCodeInfo_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_SourceCodeInfo_parse() argument
2915 google_protobuf_SourceCodeInfo_serialize(const google_protobuf_SourceCodeInfo *msg, upb_arena *arena, size_t *len) google_protobuf_SourceCodeInfo_serialize() argument
2925 google_protobuf_SourceCodeInfo_resize_location(google_protobuf_SourceCodeInfo *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_resize_location() argument
2928 google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo *msg, upb_arena *arena) google_protobuf_SourceCodeInfo_add_location() argument
2938 google_protobuf_SourceCodeInfo_Location_new(upb_arena *arena) google_protobuf_SourceCodeInfo_Location_new() argument
2941 google_protobuf_SourceCodeInfo_Location_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_parse() argument
2946 google_protobuf_SourceCodeInfo_Location_serialize(const google_protobuf_SourceCodeInfo_Location *msg, upb_arena *arena, size_t *len) google_protobuf_SourceCodeInfo_Location_serialize() argument
2961 google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_path() argument
2964 google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_path() argument
2971 google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_span() argument
2974 google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_span() argument
2989 google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments() argument
2992 google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments() argument
2999 google_protobuf_GeneratedCodeInfo_new(upb_arena *arena) google_protobuf_GeneratedCodeInfo_new() argument
3002 google_protobuf_GeneratedCodeInfo_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_GeneratedCodeInfo_parse() argument
3007 google_protobuf_GeneratedCodeInfo_serialize(const google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena, size_t *len) google_protobuf_GeneratedCodeInfo_serialize() argument
3017 google_protobuf_GeneratedCodeInfo_resize_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t len, upb_arena *arena) google_protobuf_GeneratedCodeInfo_resize_annotation() argument
3020 google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena) google_protobuf_GeneratedCodeInfo_add_annotation() argument
3030 google_protobuf_GeneratedCodeInfo_Annotation_new(upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_new() argument
3033 google_protobuf_GeneratedCodeInfo_Annotation_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_parse() argument
3038 google_protobuf_GeneratedCodeInfo_Annotation_serialize(const google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_arena *arena, size_t *len) google_protobuf_GeneratedCodeInfo_Annotation_serialize() argument
3053 google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t len, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_resize_path() argument
3056 google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t val, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_add_path() argument
5848 Create(Arena *arena, DecoderMethodPtr method, upb::Sink output, Status *status) Create() argument
6023 upb_arena *arena; global() member
6110 upb_arena *arena; global() member
6454 Create(Arena* arena, const Handlers* handlers, BytesSink output) Create() argument
6520 Create(Arena *arena, upb::HandlersPtr *handlers, BytesSink output) Create() argument
6630 Create(Arena* arena, ParserMethodPtr method, SymbolTable* symtab, Sink output, Status* status, bool ignore_json_unknown) Create() argument
6733 Create(Arena *arena, const upb::Handlers *handlers, BytesSink output) Create() argument
[all...]
/third_party/python/Parser/
H A Daction_helpers.c25 cache = _PyAST_Name(id, Load, 1, 0, 1, 0, p->arena); in _PyPegen_dummy_name()
34 asdl_seq *seq = (asdl_seq*)_Py_asdl_generic_seq_new(1, p->arena); in _PyPegen_singleton_seq()
51 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(asdl_seq_LEN(seq) + 1, p->arena); in _PyPegen_seq_insert_in_front()
72 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(asdl_seq_LEN(seq) + 1, p->arena); in _PyPegen_seq_append_to_end()
102 asdl_seq *flattened_seq = (asdl_seq*)_Py_asdl_generic_seq_new(flattened_seq_size, p->arena); in _PyPegen_seq_flatten()
179 if (_PyArena_AddPyObject(p->arena, uni) < 0) { in _PyPegen_join_names_with_dot()
212 int end_col_offset, PyArena *arena) { in _PyPegen_alias_for_star()
217 if (_PyArena_AddPyObject(p->arena, str) < 0) { in _PyPegen_alias_for_star()
221 return _PyAST_alias(str, NULL, lineno, col_offset, end_lineno, end_col_offset, arena); in _PyPegen_alias_for_star()
231 asdl_identifier_seq *new_seq = _Py_asdl_identifier_seq_new(len, p->arena); in _PyPegen_map_names_to_ids()
211 _PyPegen_alias_for_star(Parser *p, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyPegen_alias_for_star() argument
1156 _PyPegen_collect_call_seqs(Parser *p, asdl_expr_seq *a, asdl_seq *b, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyPegen_collect_call_seqs() argument
[all...]
/third_party/python/Tools/peg_generator/peg_extension/
H A Dpeg_extension.c6 _build_return_object(mod_ty module, int mode, PyObject *filename_ob, PyArena *arena) in _build_return_object() argument
11 result = (PyObject *)_PyAST_Compile(module, filename_ob, NULL, -1, arena); in _build_return_object()
35 PyArena *arena = _PyArena_New(); in parse_file() local
36 if (arena == NULL) { in parse_file()
56 NULL, NULL, NULL, &flags, NULL, arena); in parse_file()
62 result = _build_return_object(res, mode, filename_ob, arena); in parse_file()
66 _PyArena_Free(arena); in parse_file()
83 PyArena *arena = _PyArena_New(); in parse_string() local
84 if (arena == NULL) { in parse_string()
97 &flags, arena); in parse_string()
[all...]
/third_party/skia/experimental/graphite/src/geom/
H A DIntersectionTree.cpp35 Node* addNonIntersecting(Rect rect, SkArenaAlloc* arena) override {
37 fLo = fLo->addNonIntersecting(rect, arena);
40 fHi = fHi->addNonIntersecting(rect, arena);
108 Node* addNonIntersecting(Rect rect, SkArenaAlloc* arena) override {
111 return this->split(arena)->addNonIntersecting(rect, arena);
136 IntersectionTree::Node* split(SkArenaAlloc* arena) {
171 LeafNode* hiNode = arena->make<LeafNode>();
189 ? (Node*)arena->make<TreeNode<SplitType::kX>>(splitCoord, this, hiNode)
190 : (Node*)arena
[all...]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_move_unittest.cc89 Arena arena; in TEST() local
92 Arena::CreateMessage<protobuf_unittest::TestAllTypes>(&arena); in TEST()
97 Arena::CreateMessage<protobuf_unittest::TestAllTypes>(&arena); in TEST()
99 // Moving messages on the same arena should lead to swapped pointers. in TEST()
123 Arena arena; in TEST() local
126 Arena::CreateMessage<protobuf_unittest::TestAllTypes>(&arena); in TEST()
132 // Moving from a message on the arena should lead to a copy. in TEST()
140 Arena arena; in TEST() local
147 Arena::CreateMessage<protobuf_unittest::TestAllTypes>(&arena); in TEST()
149 // Moving to a message on the arena shoul in TEST()
[all...]

Completed in 44 milliseconds

12345678