Home
last modified time | relevance | path

Searched refs:value_alloc (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dnode_hash_set.h454 ValueAlloc value_alloc(*alloc); in new_element()
455 T* res = absl::allocator_traits<ValueAlloc>::allocate(value_alloc, 1); in new_element()
456 absl::allocator_traits<ValueAlloc>::construct(value_alloc, res, in new_element()
465 ValueAlloc value_alloc(*alloc); in delete_element()
466 absl::allocator_traits<ValueAlloc>::destroy(value_alloc, elem); in delete_element()
467 absl::allocator_traits<ValueAlloc>::deallocate(value_alloc, elem, 1); in delete_element()
/third_party/curl/lib/
Dformdata.c343 current_form->value_alloc = TRUE; in FormAdd()
370 form->value_alloc = TRUE; in FormAdd()
389 current_form->value_alloc = TRUE; in FormAdd()
530 if(ptr->value_alloc) { in FormAdd()
532 ptr->value_alloc = FALSE; in FormAdd()
630 form->value_alloc = TRUE; in FormAdd()
659 if(ptr->value_alloc) { in FormAdd()
661 ptr->value_alloc = FALSE; in FormAdd()
Dformdata.h47 bool value_alloc; member