OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tostore
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/skia/third_party/lua/src/
lcode.h
80
LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int
tostore
);
lparser.c
648
int
tostore
; /* number of array elements pending to be stored */
member in struct:ConsControl
677
if (cc->
tostore
== LFIELDS_PER_FLUSH) {
678
luaK_setlist(fs, cc->t->u.info, cc->na, cc->
tostore
); /* flush */
679
cc->
tostore
= 0; /* no more items pending */
685
if (cc->
tostore
== 0) return;
694
luaK_setlist(fs, cc->t->u.info, cc->na, cc->
tostore
);
704
cc->
tostore
++;
737
cc.na = cc.nh = cc.
tostore
= 0;
744
lua_assert(cc.v.k == VVOID || cc.
tostore
> 0);
[
all
...]
lcode.c
867
void luaK_setlist (FuncState *fs, int base, int nelems, int
tostore
) {
869
int b = (
tostore
== LUA_MULTRET) ? 0 :
tostore
;
870
lua_assert(
tostore
!= 0);
Completed in 185 milliseconds