OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:goodsize
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/third_party/skia/third_party/lua/src/
ldo.c
207
int
goodsize
= inuse + (inuse / 8) + 2*EXTRA_STACK;
local
208
if (
goodsize
> LUAI_MAXSTACK)
goodsize
= LUAI_MAXSTACK;
210
goodsize
>= L->stacksize) /* would grow instead of shrink? */
213
luaD_reallocstack(L,
goodsize
); /* shrink it */
Completed in 78 milliseconds