OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nCcalls
(Results
1 - 4
of
4
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ldo.c
126
unsigned short oldnCcalls = L->
nCcalls
;
135
L->
nCcalls
= oldnCcalls;
394
if (++L->
nCcalls
>= LUAI_MAXCCALLS) {
395
if (L->
nCcalls
== LUAI_MAXCCALLS)
397
else if (L->
nCcalls
>= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
404
L->
nCcalls
--;
497
int
nCcalls
= L->
nCcalls
;
500
if (
nCcalls
>= LUAI_MAXCCALLS)
531
lua_assert(
nCcalls
== L->nCcalls)
[
all
...]
lstate.h
165
unsigned short
nCcalls
; /* number of nested C calls */
/external/syslinux/com32/lua/src/
ldo.c
126
unsigned short oldnCcalls = L->
nCcalls
;
135
L->
nCcalls
= oldnCcalls;
394
if (++L->
nCcalls
>= LUAI_MAXCCALLS) {
395
if (L->
nCcalls
== LUAI_MAXCCALLS)
397
else if (L->
nCcalls
>= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
404
L->
nCcalls
--;
497
int
nCcalls
= L->
nCcalls
;
500
if (
nCcalls
>= LUAI_MAXCCALLS)
531
lua_assert(
nCcalls
== L->nCcalls)
[
all
...]
lstate.h
165
unsigned short
nCcalls
; /* number of nested C calls */
Completed in 89 milliseconds