Home
last modified time | relevance | path

Searched refs:arena_capacity (Results 1 – 2 of 2) sorted by relevance

/external/grpc-grpc/src/core/lib/iomgr/
Derror.cc203 if ((*err)->arena_size + slots > (*err)->arena_capacity) { in get_placement()
204 (*err)->arena_capacity = static_cast<uint8_t> GPR_MIN( in get_placement()
205 UINT8_MAX - 1, (3 * (*err)->arena_capacity / 2)); in get_placement()
206 if ((*err)->arena_size + slots > (*err)->arena_capacity) { in get_placement()
213 *err, sizeof(grpc_error) + (*err)->arena_capacity * sizeof(intptr_t))); in get_placement()
347 err->arena_capacity = initial_arena_capacity; in grpc_error_create()
415 uint8_t new_arena_capacity = in->arena_capacity; in copy_error_and_unref()
418 if (in->arena_capacity - in->arena_size < in copy_error_and_unref()
436 out->arena_capacity = new_arena_capacity; in copy_error_and_unref()
Derror_internal.h57 uint8_t arena_capacity; member