/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/ |
D | duk_heap_stringtable.c | 162 e = heap->strtable + slotidx; in duk__insert_hstring_chain() 216 e = heap->strtable + slotidx; in duk__insert_hstring_chain() 270 e = heap->strtable + slotidx; in duk__find_matching_string_chain() 310 e = heap->strtable + slotidx; in duk__find_matching_string_chain() 351 e = heap->strtable + slotidx; in duk__remove_matching_hstring_chain() 386 e = heap->strtable + slotidx; in duk__remove_matching_hstring_chain() 426 e = heap->strtable + i; 482 if (heap->strtable[i] != NULL && heap->strtable[i] != DUK__DELETED_MARKER(heap)) { 656 duk_hstring **old_entries = heap->strtable; 745 DUK_FREE(heap, heap->strtable); [all …]
|
D | duk_heap_alloc.c | 828 res->strtable = (duk_hstring **) NULL; in duk_heap_alloc() 911 DUK_MEMZERO(res->strtable, sizeof(duk_strtab_entry) * DUK_STRTAB_CHAIN_SIZE); in duk_heap_alloc() 917 res->strtable[i].u.str16 = res->heapptr_null16; in duk_heap_alloc() 919 res->strtable[i].u.str = NULL; in duk_heap_alloc() 937 …res->strtable = (duk_hstring **) alloc_func(heap_udata, sizeof(duk_hstring *) * DUK_STRTAB_INITIAL… in duk_heap_alloc() 938 if (!res->strtable) { in duk_heap_alloc() 951 res->strtable[i] = NULL; in duk_heap_alloc() 959 DUK_MEMZERO(res->strtable, sizeof(duk_hstring *) * DUK_STRTAB_INITIAL_SIZE); in duk_heap_alloc()
|
D | duk_debug_heap.c | 104 (void *) heap->strtable, 110 duk_hstring *e = heap->strtable[i];
|
D | duk_heap.h | 474 duk_hstring **strtable; member 484 duk_strtab_entry strtable[DUK_STRTAB_CHAIN_SIZE]; member
|
D | duk_heap_markandsweep.c | 614 e = heap->strtable + i; 658 h = heap->strtable[i]; 693 heap->strtable[i] = DUK_STRTAB_DELETED_MARKER(heap);
|
D | duk_debugger.c | 1761 e = heap->strtable + i; in duk__debug_dump_strtab_chain() 1803 h = heap->strtable[i]; in duk__debug_dump_strtab_probe()
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/ |
D | duk_heap_stringtable.c | 162 e = heap->strtable + slotidx; in duk__insert_hstring_chain() 216 e = heap->strtable + slotidx; in duk__insert_hstring_chain() 270 e = heap->strtable + slotidx; in duk__find_matching_string_chain() 310 e = heap->strtable + slotidx; in duk__find_matching_string_chain() 351 e = heap->strtable + slotidx; in duk__remove_matching_hstring_chain() 386 e = heap->strtable + slotidx; in duk__remove_matching_hstring_chain() 426 e = heap->strtable + i; 482 if (heap->strtable[i] != NULL && heap->strtable[i] != DUK__DELETED_MARKER(heap)) { 656 duk_hstring **old_entries = heap->strtable; 745 DUK_FREE(heap, heap->strtable); [all …]
|
D | duk_heap_alloc.c | 828 res->strtable = (duk_hstring **) NULL; in duk_heap_alloc() 911 DUK_MEMZERO(res->strtable, sizeof(duk_strtab_entry) * DUK_STRTAB_CHAIN_SIZE); in duk_heap_alloc() 917 res->strtable[i].u.str16 = res->heapptr_null16; in duk_heap_alloc() 919 res->strtable[i].u.str = NULL; in duk_heap_alloc() 937 …res->strtable = (duk_hstring **) alloc_func(heap_udata, sizeof(duk_hstring *) * DUK_STRTAB_INITIAL… in duk_heap_alloc() 938 if (!res->strtable) { in duk_heap_alloc() 951 res->strtable[i] = NULL; in duk_heap_alloc() 959 DUK_MEMZERO(res->strtable, sizeof(duk_hstring *) * DUK_STRTAB_INITIAL_SIZE); in duk_heap_alloc()
|
D | duk_debug_heap.c | 104 (void *) heap->strtable, 110 duk_hstring *e = heap->strtable[i];
|
D | duk_heap.h | 474 duk_hstring **strtable; member 484 duk_strtab_entry strtable[DUK_STRTAB_CHAIN_SIZE]; member
|
D | duk_heap_markandsweep.c | 614 e = heap->strtable + i; 658 h = heap->strtable[i]; 693 heap->strtable[i] = DUK_STRTAB_DELETED_MARKER(heap);
|
D | duk_debugger.c | 1749 e = heap->strtable + i; in duk__debug_dump_strtab_chain() 1791 h = heap->strtable[i]; in duk__debug_dump_strtab_probe()
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-noline/ |
D | duktape.c | 7126 duk_hstring **strtable; member 7136 duk_strtab_entry strtable[DUK_STRTAB_CHAIN_SIZE]; member 35592 (void *) heap->strtable, 35598 duk_hstring *e = heap->strtable[i]; 38533 e = heap->strtable + i; 38575 h = heap->strtable[i]; 41544 res->strtable = (duk_hstring **) NULL; 41627 DUK_MEMZERO(res->strtable, sizeof(duk_strtab_entry) * DUK_STRTAB_CHAIN_SIZE); 41633 res->strtable[i].u.str16 = res->heapptr_null16; 41635 res->strtable[i].u.str = NULL; [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src/ |
D | duktape.c | 7155 duk_hstring **strtable; member 7165 duk_strtab_entry strtable[DUK_STRTAB_CHAIN_SIZE]; member 35879 (void *) heap->strtable, 35885 duk_hstring *e = heap->strtable[i]; 38834 e = heap->strtable + i; 38876 h = heap->strtable[i]; 41853 res->strtable = (duk_hstring **) NULL; 41936 DUK_MEMZERO(res->strtable, sizeof(duk_strtab_entry) * DUK_STRTAB_CHAIN_SIZE); 41942 res->strtable[i].u.str16 = res->heapptr_null16; 41944 res->strtable[i].u.str = NULL; [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src/ |
D | duktape.c | 7150 duk_hstring **strtable; member 7160 duk_strtab_entry strtable[DUK_STRTAB_CHAIN_SIZE]; member 35672 (void *) heap->strtable, 35678 duk_hstring *e = heap->strtable[i]; 38615 e = heap->strtable + i; 38657 h = heap->strtable[i]; 41634 res->strtable = (duk_hstring **) NULL; 41717 DUK_MEMZERO(res->strtable, sizeof(duk_strtab_entry) * DUK_STRTAB_CHAIN_SIZE); 41723 res->strtable[i].u.str16 = res->heapptr_null16; 41725 res->strtable[i].u.str = NULL; [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-noline/ |
D | duktape.c | 7131 duk_hstring **strtable; member 7141 duk_strtab_entry strtable[DUK_STRTAB_CHAIN_SIZE]; member 35799 (void *) heap->strtable, 35805 duk_hstring *e = heap->strtable[i]; 38752 e = heap->strtable + i; 38794 h = heap->strtable[i]; 41763 res->strtable = (duk_hstring **) NULL; 41846 DUK_MEMZERO(res->strtable, sizeof(duk_strtab_entry) * DUK_STRTAB_CHAIN_SIZE); 41852 res->strtable[i].u.str16 = res->heapptr_null16; 41854 res->strtable[i].u.str = NULL; [all …]
|