Home
last modified time | relevance | path

Searched refs:strt (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/sys/arm/arm/
H A Dbcopyinout_xscale.S683 strt r4, [r1], #0x04
684 strt r5, [r1], #0x04
686 strt r6, [r1], #0x04
687 strt r7, [r1], #0x04
688 strt r8, [r1], #0x04
689 strt r9, [r1], #0x04
691 strt r4, [r1], #0x04
692 strt r5, [r1], #0x04
708 strt r4, [r1], #0x04
709 strt r5, [r1], #0x04
[all …]
H A Dbcopyinout.S444 strt r6, [r1], #4
447 strt r7, [r1], #4
450 strt r6, [r1], #4
453 strt r7, [r1], #4
456 strt r6, [r1], #4
459 strt r7, [r1], #4
462 strt r6, [r1], #4
486 strt r6, [r1], #4
487 strt r7, [r1], #4
489 strt r8, [r1], #4
[all …]
H A Dfusu.S257 strt r1, [r0]
/freebsd-12.1/contrib/lua/src/
H A Dlstring.c73 stringtable *tb = &G(L)->strt; in luaS_resize()
155 stringtable *tb = &G(L)->strt; in luaS_remove()
171 TString **list = &g->strt.hash[lmod(h, g->strt.size)]; in internshrstr()
182 if (g->strt.nuse >= g->strt.size && g->strt.size <= MAX_INT/2) { in internshrstr()
183 luaS_resize(L, g->strt.size * 2); in internshrstr()
184 list = &g->strt.hash[lmod(h, g->strt.size)]; /* recompute with new size */ in internshrstr()
191 g->strt.nuse++; in internshrstr()
H A Dlstate.c248 luaM_freearray(L, G(L)->strt.hash, G(L)->strt.size); in close_state()
314 g->strt.size = g->strt.nuse = 0; in lua_newstate()
315 g->strt.hash = NULL; in lua_newstate()
H A Dlgc.c781 if (g->strt.nuse < g->strt.size / 4) /* string table too big? */ in checkSizes()
782 luaS_resize(L, g->strt.size / 2); /* shrink it a little */ in checkSizes()
978 lua_assert(g->strt.nuse == 0); in luaC_freeallobjects()
1049 g->GCmemtrav = g->strt.size * sizeof(GCObject*); in singlestep()
H A Dlstate.h144 stringtable strt; /* hash table for strings */ member
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlstring.c66 stringtable *tb = &G(L)->strt; in luaS_resize()
119 stringtable *tb = &G(L)->strt; in newshrstr()
137 for (o = g->strt.hash[lmod(h, g->strt.size)]; in internshrstr()
H A Dlstate.c227 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 Dlgc.c679 G(L)->strt.nuse--; in freeobj()
781 int hs = g->strt.size / 2; /* half the size of the string table */ in checkSizes()
782 if (g->strt.nuse < cast(lu_int32, hs)) /* using less than that half? */ in checkSizes()
993 for (i = 0; i < g->strt.size; i++) /* free all string lists */ in luaC_freeallobjects()
994 sweepwholelist(L, &g->strt.hash[i]); in luaC_freeallobjects()
995 lua_assert(g->strt.nuse == 0); in luaC_freeallobjects()
1045 g->GCmemtrav = g->strt.size * sizeof(GCObject*); in singlestep()
1070 for (i = 0; i < GCSWEEPMAX && g->sweepstrgc + i < g->strt.size; i++) in singlestep()
1071 sweepwholelist(L, &g->strt.hash[g->sweepstrgc + i]); in singlestep()
1073 if (g->sweepstrgc >= g->strt.size) /* no more strings to sweep? */ in singlestep()
H A Dlstate.h119 stringtable strt; /* hash table for strings */ member
/freebsd-12.1/sbin/ipfw/
H A Ddummynet.c170 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 …]
/freebsd-12.1/contrib/openmp/runtime/src/
H A Dkmp_stats.h603 kmp_stats_event(uint64_t strt, uint64_t stp, int nst, timer_e nme) in kmp_stats_event() argument
604 : start(strt), stop(stp), nest_level(nst), timer_name(nme) {} in kmp_stats_event()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMInstrInfo.td3186 "strt", "\t$Rt, $addr, $offset",
3206 "strt", "\t$Rt, $addr, $offset", "$addr.base = $Rn_wb", []> {
3221 : ARMAsmPseudo<"strt${q} $Rt, $addr",
H A DARMInstrThumb2.td1554 def t2STRT : T2IstT<0b10, "strt", IIC_iStore_i>;
/freebsd-12.1/contrib/binutils/gas/
H A DChangeLog-0001162 (do_ldst): Simplify. Split code for ldrt/strt into do_ldstt. Split
3241 ldrt/strt instructions.
/freebsd-12.1/contrib/binutils/gas/config/
H A Dtc-arm.c15053 TC3(strt, 4200000, f8400e00, 2, (RR, ADDR), ldstt, t_ldstt),