/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | ldo.c | 143 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 …]
|
D | ldebug.c | 36 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 …]
|
D | lvm.c | 61 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 …]
|
D | lstate.c | 113 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 …]
|
D | lapi.h | 14 #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), \
|
D | lapi.c | 56 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 …]
|
D | ldebug.h | 21 #define ci_func(ci) (clLvalue((ci)->func)) argument
|
D | lstate.h | 106 #define isLua(ci) ((ci)->callstatus & CIST_LUA) argument 159 CallInfo *ci; /* call info for current function */ member
|
D | lgc.c | 508 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/ |
D | makefile | 17 ci: target 18 ci -u $(SRC) *.h makefile
|
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/ |
D | cpu_counter.h | 69 cpu_frequency(struct cpu_info *ci) in cpu_frequency() argument
|
D | cpu.h | 129 #define need_resched(ci) /*XXX: FIXME */ argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | complexobject.c | 1139 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.2/Objects/ |
D | complexobject.c | 1135 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/google/cuttlefish_common/guest/hals/ril/ |
D | cuttlefish_ril.cpp | 1534 RIL_CellInfo_v12 ci; in request_get_cell_info_list() local 1536 RIL_CellInfo ci; in request_get_cell_info_list() local 1540 ci.cellInfoType = RIL_CELL_INFO_TYPE_GSM; in request_get_cell_info_list() 1541 ci.registered = 1; in request_get_cell_info_list() 1542 ci.timeStampType = RIL_TIMESTAMP_TYPE_ANTENNA; // Our own timestamp. in request_get_cell_info_list() 1543 ci.timeStamp = curTime - 1000; // Fake time in the past. in request_get_cell_info_list() 1544 ci.CellInfo.gsm.cellIdentityGsm.mcc = s_mcc; in request_get_cell_info_list() 1545 ci.CellInfo.gsm.cellIdentityGsm.mnc = s_mnc; in request_get_cell_info_list() 1546 ci.CellInfo.gsm.cellIdentityGsm.lac = s_lac; in request_get_cell_info_list() 1547 ci.CellInfo.gsm.cellIdentityGsm.cid = s_cid; in request_get_cell_info_list() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | formatter.py | 238 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/ |
D | formatter.py | 238 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/ |
D | dlg1.txt | 47 -ci The automaton will treat upper and lower case charac-
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | README | 69 xxci.py Wrapper for rcsdiff and ci
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/ |
D | textio.c | 972 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/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/ |
D | textio.c | 956 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/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/ |
D | oniguruma.h | 733 …, 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/poplar/wifi/wifi_hal/ |
D | gscan.cpp | 1587 ChangeInfo *ci = (ChangeInfo *)event.get_vendor_data(); in handleEvent() local 1590 memcpy(mResultsBuffer[i].bssid, ci[i].bssid, sizeof(mac_addr)); in handleEvent() 1591 mResultsBuffer[i].channel = ci[i].channel; in handleEvent() 1594 mResultsBuffer[i].rssi[j] = (int) ci[i].rssi_history[j]; in handleEvent()
|
/device/google/cuttlefish_common/guest/hals/ril/libril/ |
D | ril.h | 1447 int ci; /* 28-bit Cell Identity described in TS ???, INT_MAX if unknown */ member 1457 int ci; /* 28-bit Cell Identity described in TS ???, INT_MAX if unknown */ member
|
/device/generic/goldfish/ril/ |
D | ril.h | 1412 int ci; /* 28-bit Cell Identity described in TS ???, INT_MAX if unknown */ member 1420 int ci; /* 28-bit Cell Identity described in TS ???, INT_MAX if unknown */ member
|