Searched refs:strcache (Results 1 – 14 of 14) sorted by relevance
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/ |
D | duk_heap_stringcache.c | 23 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_string_remove() 137 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() 144 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() 258 sce = heap->strcache + DUK_HEAP_STRCACHE_SIZE - 1; /* take last entry */ in duk_heap_strcache_offset_char2byte() 266 if (sce > &heap->strcache[0]) { in duk_heap_strcache_offset_char2byte() 276 DUK_MEMMOVE((void *) (&heap->strcache[1]), in duk_heap_strcache_offset_char2byte() 277 (const void *) (&heap->strcache[0]), in duk_heap_strcache_offset_char2byte() 278 (size_t) (((char *) sce) - ((char *) &heap->strcache[0]))); in duk_heap_strcache_offset_char2byte() 279 heap->strcache[0] = tmp; in duk_heap_strcache_offset_char2byte() 286 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte()
|
D | duk_debug_heap.c | 164 duk_strcache *c = &heap->strcache[i];
|
D | duk_heap.h | 490 duk_strcache strcache[DUK_HEAP_STRCACHE_SIZE]; member
|
D | duk_heap_alloc.c | 972 res->strcache[i].h = NULL; in duk_heap_alloc()
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/ |
D | duk_heap_stringcache.c | 23 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_string_remove() 137 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() 144 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() 258 sce = heap->strcache + DUK_HEAP_STRCACHE_SIZE - 1; /* take last entry */ in duk_heap_strcache_offset_char2byte() 266 if (sce > &heap->strcache[0]) { in duk_heap_strcache_offset_char2byte() 276 DUK_MEMMOVE((void *) (&heap->strcache[1]), in duk_heap_strcache_offset_char2byte() 277 (const void *) (&heap->strcache[0]), in duk_heap_strcache_offset_char2byte() 278 (size_t) (((char *) sce) - ((char *) &heap->strcache[0]))); in duk_heap_strcache_offset_char2byte() 279 heap->strcache[0] = tmp; in duk_heap_strcache_offset_char2byte() 286 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte()
|
D | duk_debug_heap.c | 164 duk_strcache *c = &heap->strcache[i];
|
D | duk_heap.h | 490 duk_strcache strcache[DUK_HEAP_STRCACHE_SIZE]; member
|
D | duk_heap_alloc.c | 972 res->strcache[i].h = NULL; in duk_heap_alloc()
|
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/ |
D | lstring.c | 107 if (iswhite(g->strcache[i][j])) /* will entry be collected? */ in luaS_clearcache() 108 g->strcache[i][j] = g->memerrmsg; /* replace it with something fixed */ in luaS_clearcache() 125 g->strcache[i][j] = g->memerrmsg; in luaS_init() 222 TString **p = G(L)->strcache[i]; in luaS_new()
|
D | lstate.h | 171 TString *strcache[STRCACHE_N][STRCACHE_M]; /* cache for strings in API */ member
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-noline/ |
D | duktape.c | 7142 duk_strcache strcache[DUK_HEAP_STRCACHE_SIZE]; member 35652 duk_strcache *c = &heap->strcache[i]; 41688 res->strcache[i].h = NULL; 44399 duk_strcache *c = heap->strcache + i; 44513 duk_strcache *c = heap->strcache + i; 44520 duk_strcache *c = heap->strcache + i; 44634 sce = heap->strcache + DUK_HEAP_STRCACHE_SIZE - 1; /* take last entry */ 44642 if (sce > &heap->strcache[0]) { 44652 DUK_MEMMOVE((void *) (&heap->strcache[1]), 44653 (const void *) (&heap->strcache[0]), [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src/ |
D | duktape.c | 7171 duk_strcache strcache[DUK_HEAP_STRCACHE_SIZE]; member 35939 duk_strcache *c = &heap->strcache[i]; 41997 res->strcache[i].h = NULL; 44746 duk_strcache *c = heap->strcache + i; 44860 duk_strcache *c = heap->strcache + i; 44867 duk_strcache *c = heap->strcache + i; 44981 sce = heap->strcache + DUK_HEAP_STRCACHE_SIZE - 1; /* take last entry */ 44989 if (sce > &heap->strcache[0]) { 44999 DUK_MEMMOVE((void *) (&heap->strcache[1]), 45000 (const void *) (&heap->strcache[0]), [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src/ |
D | duktape.c | 7166 duk_strcache strcache[DUK_HEAP_STRCACHE_SIZE]; member 35732 duk_strcache *c = &heap->strcache[i]; 41778 res->strcache[i].h = NULL; 44495 duk_strcache *c = heap->strcache + i; 44609 duk_strcache *c = heap->strcache + i; 44616 duk_strcache *c = heap->strcache + i; 44730 sce = heap->strcache + DUK_HEAP_STRCACHE_SIZE - 1; /* take last entry */ 44738 if (sce > &heap->strcache[0]) { 44748 DUK_MEMMOVE((void *) (&heap->strcache[1]), 44749 (const void *) (&heap->strcache[0]), [all …]
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-noline/ |
D | duktape.c | 7147 duk_strcache strcache[DUK_HEAP_STRCACHE_SIZE]; member 35859 duk_strcache *c = &heap->strcache[i]; 41907 res->strcache[i].h = NULL; 44650 duk_strcache *c = heap->strcache + i; 44764 duk_strcache *c = heap->strcache + i; 44771 duk_strcache *c = heap->strcache + i; 44885 sce = heap->strcache + DUK_HEAP_STRCACHE_SIZE - 1; /* take last entry */ 44893 if (sce > &heap->strcache[0]) { 44903 DUK_MEMMOVE((void *) (&heap->strcache[1]), 44904 (const void *) (&heap->strcache[0]), [all …]
|