Home
last modified time | relevance | path

Searched refs:xrealloc (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
Dregint.h105 #define xrealloc realloc macro
355 (buf)->p = (UChar* )xrealloc((buf)->p, (buf)->alloc);\
362 (buf)->p = (UChar* )xrealloc((buf)->p, (buf)->alloc, OldSize_);\
370 (buf)->p = (UChar* )xrealloc((buf)->p, new_alloc, (buf)->alloc);\
Dregexec.c115 (OnigCaptureTreeNode** )xrealloc(parent->childs, in history_tree_add_child()
192 region->beg = (int* )xrealloc(region->beg, n * sizeof(int), region->allocated * sizeof(int)); in onig_region_resize()
193 region->end = (int* )xrealloc(region->end, n * sizeof(int), region->allocated * sizeof(int)); in onig_region_resize()
284 to->beg = (int* )xrealloc(to->beg, RREGC_SIZE, sizeof(int) * to->allocated); in onig_region_copy()
285 to->end = (int* )xrealloc(to->end, RREGC_SIZE, sizeof(int) * to->allocated); in onig_region_copy()
465 …x = (OnigStackType* )xrealloc(stk_base, sizeof(OnigStackType) * n, sizeof(OnigStackType) * (stk_en… in stack_double()
Dregenc.c854 list = (const OnigCodePoint** )xrealloc((void* )list, size, *psize * sizeof(OnigCodePoint*)); in resize_property_list()
Dregparse.c285 r = (UChar* )xrealloc(dest, capa + 1, oldCapa); in strcat_capa()
777 t->e = (NameEntry* )xrealloc(t->e, sizeof(NameEntry) * alloc); in name_add()
821 e->back_refs = (int* )xrealloc(e->back_refs, sizeof(int) * alloc, sizeof(int) * e->back_alloc); in name_add()
976 …p = (Node** )xrealloc(env->mem_nodes_dynamic, sizeof(Node*) * alloc, sizeof(Node*) * env->mem_allo… in scan_env_add_mem_entry()
Dregcomp.c190 …p = (UnsetAddr* )xrealloc(uslist->us, sizeof(UnsetAddr) * size, sizeof(UnsetAddr) * uslist->alloc); in unset_addr_list_add()
669 p = (OnigRepeatRange* )xrealloc(reg->repeat_range, in entry_repeat_range()
3223 sbuf = (UChar* )xrealloc(sbuf, sbuf_size * 2, sbuf_size); in update_string_node_case_fold()
/device/generic/goldfish/qemud/
Dqemud.c148 xrealloc( void* block, size_t size ) in xrealloc() function
158 #define xrenew(p,count) (p) = xrealloc((p),sizeof(*(p))*(count))