Lines Matching refs:new_ptr

60253 	duk_uint16_t *new_ptr;  local
60256 duk_hstring **new_ptr; local
60281 new_ptr = (duk_uint16_t *) DUK_REALLOC(heap, heap->strtable16, sizeof(duk_uint16_t) * new_st_size);
60283 new_ptr = (duk_hstring **) DUK_REALLOC(heap, heap->strtable, sizeof(duk_hstring *) * new_st_size);
60285 if (DUK_UNLIKELY(new_ptr == NULL)) {
60295 heap->strtable16 = new_ptr;
60297 heap->strtable = new_ptr;
60306 new_ptr_high = new_ptr + old_st_size;
60311 h = DUK__HEAPPTR_DEC16(heap, new_ptr[i]);
60344 new_ptr[i] = DUK__HEAPPTR_ENC16(heap, new_root);
60371 duk_uint16_t *new_ptr; local
60375 duk_hstring **new_ptr; local
60428 new_ptr = (duk_uint16_t *) DUK_REALLOC(heap, heap->strtable16, sizeof(duk_uint16_t) * new_st_size);
60429 DUK_ASSERT(new_ptr != NULL);
60430 heap->strtable16 = new_ptr;
60432 new_ptr = (duk_hstring **) DUK_REALLOC(heap, heap->strtable, sizeof(duk_hstring *) * new_st_size);
60433 DUK_ASSERT(new_ptr != NULL);
60434 heap->strtable = new_ptr;
70348 duk_tval *new_ptr; local
70370 new_ptr = (duk_tval *) DUK_ALLOC_RAW(thr->heap, alloc_size);
70371 if (new_ptr != NULL) {
70372 duk_memcpy((void *) new_ptr, (const void *) thr->valstack, alloc_size);
70375 thr->valstack = new_ptr;
70376 thr->valstack_alloc_end = (duk_tval *) ((duk_uint8_t *) new_ptr + alloc_end_off);
70377 thr->valstack_end = (duk_tval *) ((duk_uint8_t *) new_ptr + end_off);
70378 thr->valstack_bottom = (duk_tval *) ((duk_uint8_t *) new_ptr + bottom_off);
70379 thr->valstack_top = (duk_tval *) ((duk_uint8_t *) new_ptr + top_off);
97775 void *new_ptr; local
97792 new_ptr = realloc_func(udata, ptr, 1024);
97793 if (new_ptr == NULL) {
97798 ptr = new_ptr;