Searched refs:strt (Results 1 – 11 of 11) sorted by relevance
| /f-stack/freebsd/arm/arm/ |
| H A D | bcopyinout_xscale.S | 610 strt r4, [r1], #0x04 611 strt r5, [r1], #0x04 613 strt r6, [r1], #0x04 614 strt r7, [r1], #0x04 615 strt r8, [r1], #0x04 616 strt r9, [r1], #0x04 618 strt r4, [r1], #0x04 619 strt r5, [r1], #0x04 635 strt r4, [r1], #0x04 636 strt r5, [r1], #0x04 [all …]
|
| H A D | fusu.S | 238 strt r1, [r0]
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lstate.c | 110 lua_assert(g->strt.nuse == 0); in close_state() 111 luaM_freearray(L, G(L)->strt.hash, G(L)->strt.size, TString *); in close_state() 163 g->strt.size = 0; in lua_newstate() 164 g->strt.nuse = 0; in lua_newstate() 165 g->strt.hash = NULL; in lua_newstate()
|
| H A D | lstring.c | 29 tb = &G(L)->strt; in luaS_resize() 64 tb = &G(L)->strt; in newlstr() 82 for (o = G(L)->strt.hash[lmod(h, G(L)->strt.size)]; in luaS_newlstr()
|
| H A D | lgc.c | 390 G(L)->strt.nuse--; in freeobj() 434 if (g->strt.nuse < cast(lu_int32, g->strt.size/4) && in checkSizes() 435 g->strt.size > MINSTRTABSIZE*2) in checkSizes() 436 luaS_resize(L, g->strt.size/2); /* table is too big */ in checkSizes() 488 for (i = 0; i < g->strt.size; i++) /* free all string lists */ in luaC_freeall() 489 sweepwholelist(L, &g->strt.hash[i]); in luaC_freeall() 574 sweepwholelist(L, &g->strt.hash[g->sweepstrgc++]); in singlestep() 575 if (g->sweepstrgc >= g->strt.size) /* nothing more to sweep? */ in singlestep()
|
| H A D | lstate.h | 69 stringtable strt; /* hash table for strings */ member
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lstring.c | 65 stringtable *tb = &G(L)->strt; in luaS_resize() 120 stringtable *tb = &G(L)->strt; in newshrstr() 138 for (o = g->strt.hash[lmod(h, g->strt.size)]; in internshrstr()
|
| H A D | lstate.c | 227 luaM_freearray(L, G(L)->strt.hash, G(L)->strt.size); in close_state() 286 g->strt.size = 0; in lua_newstate() 287 g->strt.nuse = 0; in lua_newstate() 288 g->strt.hash = NULL; in lua_newstate()
|
| H A D | lgc.c | 678 G(L)->strt.nuse--; in freeobj() 780 int hs = g->strt.size / 2; /* half the size of the string table */ in checkSizes() 781 if (g->strt.nuse < cast(lu_int32, hs)) /* using less than that half? */ in checkSizes() 992 for (i = 0; i < g->strt.size; i++) /* free all string lists */ in luaC_freeallobjects() 993 sweepwholelist(L, &g->strt.hash[i]); in luaC_freeallobjects() 994 lua_assert(g->strt.nuse == 0); in luaC_freeallobjects() 1044 g->GCmemtrav = g->strt.size * sizeof(GCObject*); in singlestep() 1069 for (i = 0; i < GCSWEEPMAX && g->sweepstrgc + i < g->strt.size; i++) in singlestep() 1070 sweepwholelist(L, &g->strt.hash[g->sweepstrgc + i]); in singlestep() 1072 if (g->sweepstrgc >= g->strt.size) /* no more strings to sweep? */ in singlestep()
|
| H A D | lstate.h | 120 stringtable strt; /* hash table for strings */ member
|
| /f-stack/tools/ipfw/ |
| H A D | dummynet.c | 170 us_to_time(int t, char *strt) in us_to_time() argument 173 strt[0]='\0'; in us_to_time() 175 sprintf(strt,"%d", t); in us_to_time() 177 sprintf(strt,"%dus", t); in us_to_time() 179 sprintf(strt,"%gms", (float) t / 1000); in us_to_time() 181 sprintf(strt,"%gfs", (float) t / 1000000); in us_to_time() 192 char strt[16]="", stru[16]=""; in time_to_us() local 206 strncpy(strt, s, i); in time_to_us() 213 return atol(strt); in time_to_us() 215 return (strtod(strt, NULL) * 1000); in time_to_us() [all …]
|