Home
last modified time | relevance | path

Searched refs:ci (Results 1 – 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldo.c143 CallInfo *ci; in correctstack() local
148 for (ci = L->ci; ci != NULL; ci = ci->previous) { in correctstack()
149 ci->top = (ci->top - oldstack) + L->stack; in correctstack()
150 ci->func = (ci->func - oldstack) + L->stack; in correctstack()
151 if (isLua(ci)) in correctstack()
152 ci->u.l.base = (ci->u.l.base - oldstack) + L->stack; in correctstack()
195 CallInfo *ci; in stackinuse() local
197 for (ci = L->ci; ci != NULL; ci = ci->previous) { in stackinuse()
198 lua_assert(ci->top <= L->stack_last); in stackinuse()
199 if (lim < ci->top) lim = ci->top; in stackinuse()
[all …]
Dldebug.c36 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
39 static int currentpc (CallInfo *ci) { in currentpc() argument
40 lua_assert(isLua(ci)); in currentpc()
41 return pcRel(ci->u.l.savedpc, ci_func(ci)->p); in currentpc()
45 static int currentline (CallInfo *ci) { in currentline() argument
46 return getfuncline(ci_func(ci)->p, currentpc(ci)); in currentline()
58 if (isLua(L->ci)) in lua_sethook()
59 L->oldpc = L->ci->u.l.savedpc; in lua_sethook()
85 CallInfo *ci; in lua_getstack() local
88 for (ci = L->ci; level > 0 && ci != &L->base_ci; ci = ci->previous) in lua_getstack()
[all …]
Dlvm.c61 CallInfo *ci = L->ci; in traceexec() local
66 if (ci->callstatus & CIST_HOOKYIELD) { /* called hook last time? */ in traceexec()
67 ci->callstatus &= ~CIST_HOOKYIELD; /* erase mark */ in traceexec()
73 Proto *p = ci_func(ci)->p; in traceexec()
74 int npc = pcRel(ci->u.l.savedpc, p); in traceexec()
77 ci->u.l.savedpc <= L->oldpc || /* when jump back (loop), or when */ in traceexec()
81 L->oldpc = ci->u.l.savedpc; in traceexec()
85 ci->u.l.savedpc--; /* undo increment (resume will increment it again) */ in traceexec()
86 ci->callstatus |= CIST_HOOKYIELD; /* mark that it yielded */ in traceexec()
87 ci->func = L->top - 1; /* protect stack below results */ in traceexec()
[all …]
Dlstate.c113 CallInfo *ci = luaM_new(L, CallInfo); in luaE_extendCI() local
114 lua_assert(L->ci->next == NULL); in luaE_extendCI()
115 L->ci->next = ci; in luaE_extendCI()
116 ci->previous = L->ci; in luaE_extendCI()
117 ci->next = NULL; in luaE_extendCI()
118 return ci; in luaE_extendCI()
123 CallInfo *ci = L->ci; in luaE_freeCI() local
124 CallInfo *next = ci->next; in luaE_freeCI()
125 ci->next = NULL; in luaE_freeCI()
126 while ((ci = next) != NULL) { in luaE_freeCI()
[all …]
Dlapi.h14 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \
18 { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; }
20 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
Dlapi.c56 CallInfo *ci = L->ci; in index2addr() local
58 TValue *o = ci->func + idx; in index2addr()
59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr()
64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr()
72 if (ttislcf(ci->func)) /* light C function? */ in index2addr()
75 CClosure *func = clCvalue(ci->func); in index2addr()
94 CallInfo *ci = L->ci; in lua_checkstack() local
105 if (res && ci->top < L->top + size) in lua_checkstack()
106 ci->top = L->top + size; /* adjust frame top */ in lua_checkstack()
118 api_check(from, to->ci->top - to->top >= n, "not enough elements to move"); in lua_xmove()
[all …]
Dldebug.h21 #define ci_func(ci) (clLvalue((ci)->func)) argument
Dlstate.h106 #define isLua(ci) ((ci)->callstatus & CIST_LUA) argument
159 CallInfo *ci; /* call info for current function */ member
Dlgc.c508 CallInfo *ci; in traversestack() local
509 for (ci = &th->base_ci; ci != th->ci; ci = ci->next) in traversestack()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
Dmakefile17 ci: target
18 ci -u $(SRC) *.h makefile
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
Dcpu_counter.h69 cpu_frequency(struct cpu_info *ci) in cpu_frequency() argument
Dcpu.h129 #define need_resched(ci) /*XXX: FIXME */ argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dcomplexobject.c1135 Py_complex cr, ci; in complex_new() local
1235 ci.real = 0.0; in complex_new()
1238 ci = ((PyComplexObject*)i)->cval; in complex_new()
1247 ci.real = PyFloat_AsDouble(tmp); in complex_new()
1255 cr.real -= ci.imag; in complex_new()
1258 ci.real += cr.imag; in complex_new()
1260 return complex_subtype_from_doubles(type, cr.real, ci.real); in complex_new()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dcomplexobject.c1139 Py_complex cr, ci; in complex_new() local
1239 ci.real = 0.0; in complex_new()
1242 ci = ((PyComplexObject*)i)->cval; in complex_new()
1251 ci.real = PyFloat_AsDouble(tmp); in complex_new()
1259 cr.real -= ci.imag; in complex_new()
1262 ci.real += cr.imag; in complex_new()
1264 return complex_subtype_from_doubles(type, cr.real, ci.real); in complex_new()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dformatter.py238 csize, ci, cb, ctt = self.font_stack[-1]
240 if i is AS_IS: i = ci
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dformatter.py238 csize, ci, cb, ctt = self.font_stack[-1]
240 if i is AS_IS: i = ci
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Ddlg1.txt47 -ci The automaton will treat upper and lower case charac-
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
DREADME69 xxci.py Wrapper for rcsdiff and ci
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
Dtextio.c956 PyObject *ci; in textiowrapper_init() local
962 ci = _PyCodec_Lookup(encoding); in textiowrapper_init()
963 if (ci == NULL) in textiowrapper_init()
965 res = PyObject_GetAttrString(ci, "name"); in textiowrapper_init()
966 Py_DECREF(ci); in textiowrapper_init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
Dtextio.c972 PyObject *ci; in textiowrapper_init() local
978 ci = _PyCodec_Lookup(encoding); in textiowrapper_init()
979 if (ci == NULL) in textiowrapper_init()
981 res = PyObject_GetAttrString(ci, "name"); in textiowrapper_init()
982 Py_DECREF(ci); in textiowrapper_init()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
Doniguruma.h733 …, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigCompileInfo* ci, OnigErrorInfo* einf…
741 …, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigCompileInfo* ci, OnigErrorInfo* einf…
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/Binary/
Dmcuimage.bin333 ����B���7� i9FBF����>F�(�������A�����p���&�i�B$�A�����p��ci!O�� A�r ������!� i���C��…
437 �i�B��Yi�E���B����!"����� ��@�pG��8�L������0<��G�B��� 8�����8�L��ci4��G�B��� 8��…