| /f-stack/freebsd/mips/mips/ |
| H A D | stack_machdep.c | 51 int ra_stack_pos, stacksize; in stack_capture() local 68 stacksize = 0; in stack_capture() 89 stacksize = -(short)insn.IType.imm; in stack_capture() 102 if (stacksize != 0) in stack_capture() 147 if (pc == ra && stacksize == 0) in stack_capture() 150 sp += stacksize; in stack_capture()
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | bio.c | 99 size_t stacksize; in bioInit() local 113 pthread_attr_getstacksize(&attr,&stacksize); in bioInit() 114 if (!stacksize) stacksize = 1; /* The world is full of Solaris Fixes */ in bioInit() 115 while (stacksize < REDIS_THREAD_STACK_SIZE) stacksize *= 2; in bioInit() 116 pthread_attr_setstacksize(&attr, stacksize); in bioInit()
|
| /f-stack/freebsd/contrib/openzfs/lib/libtpool/ |
| H A D | thread_pool.c | 308 size_t stacksize; in pthread_attr_clone() local 309 error = pthread_attr_getstack(old_attr, &stackaddr, &stacksize); in pthread_attr_clone() 311 error = pthread_attr_setstack(attr, stackaddr, stacksize); in pthread_attr_clone() 327 size_t stacksize; in tpool_create() local 336 if (pthread_attr_getstack(attr, &stackaddr, &stacksize) != 0) { in tpool_create() 346 if (stacksize < minstack || max_threads != 1) { in tpool_create() 350 } else if (stacksize != 0 && stacksize < minstack) { in tpool_create()
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lstate.c | 50 L1->stacksize = BASIC_STACK_SIZE + EXTRA_STACK; in stack_init() 52 L1->stack_last = L1->stack+(L1->stacksize - EXTRA_STACK)-1; in stack_init() 63 luaM_freearray(L, L1->stack, L1->stacksize, TValue); in freestack() 87 L->stacksize = 0; in preinit_state()
|
| H A D | ldo.c | 72 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK - 1); in restore_stack_limit() 144 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK - 1); in luaD_reallocstack() 145 luaM_reallocvector(L, L->stack, L->stacksize, realsize, TValue); in luaD_reallocstack() 146 L->stacksize = realsize; in luaD_reallocstack() 162 if (n <= L->stacksize) /* double size is enough? */ in luaD_growstack() 163 luaD_reallocstack(L, 2*L->stacksize); in luaD_growstack() 165 luaD_reallocstack(L, L->stacksize + n); in luaD_growstack()
|
| H A D | ldo.h | 19 else condhardstacktests(luaD_reallocstack(L, L->stacksize - EXTRA_STACK - 1));
|
| H A D | lgc.c | 249 if (4*s_used < L->stacksize && in checkstacksizes() 250 2*(BASIC_STACK_SIZE+EXTRA_STACK) < L->stacksize) in checkstacksizes() 251 luaD_reallocstack(L, L->stacksize/2); /* still big enough... */ in checkstacksizes() 304 return sizeof(lua_State) + sizeof(TValue) * th->stacksize + in propagatemark()
|
| H A D | lstate.h | 112 int stacksize; member
|
| H A D | lgc.h | 81 condhardstacktests(luaD_reallocstack(L, L->stacksize - EXTRA_STACK - 1)); \
|
| H A D | lvm.c | 404 lua_assert(base <= L->top && L->top <= L->stack + L->stacksize); in luaV_execute()
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lstate.c | 134 L1->stacksize = BASIC_STACK_SIZE; in stack_init() 138 L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK; in stack_init() 155 luaM_freearray(L, L->stack, L->stacksize); /* free stack array */ in freestack() 205 L->stacksize = 0; in preinit_state()
|
| H A D | ldo.c | 233 int lim = L->stacksize; in luaD_reallocstack() 235 lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK); in luaD_reallocstack() 236 luaM_reallocvector(L, L->stack, L->stacksize, newsize, TValue); in luaD_reallocstack() 239 L->stacksize = newsize; in luaD_reallocstack() 246 int size = L->stacksize; in luaD_growstack() 280 goodsize >= L->stacksize) /* would grow instead of shrink? */ in luaD_shrinkstack()
|
| H A D | lstate.h | 164 int stacksize; member
|
| H A D | llimits.h | 303 #define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
|
| H A D | lgc.c | 502 StkId lim = th->stack + th->stacksize; /* real end of stack */ in traversestack() 511 return sizeof(lua_State) + sizeof(TValue) * th->stacksize + in traversestack()
|
| H A D | lvm.c | 616 lua_assert(base <= L->top && L->top < L->stack + L->stacksize); in luaV_execute()
|
| /f-stack/freebsd/x86/xen/ |
| H A D | pv.c | 360 const size_t stacksize = kstack_pages * PAGE_SIZE; in start_xen_ap() local 363 bootstacks[cpu] = (void *)kmem_malloc(stacksize, M_WAITOK | M_ZERO); in start_xen_ap()
|