Home
last modified time | relevance | path

Searched refs:current (Results 1 – 25 of 238) sorted by relevance

12345678910

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dllex.c28 #define next(ls) (ls->current = zgetc(ls->z))
32 #define currIsNewline(ls) (ls->current == '\n' || ls->current == '\r')
46 #define save_and_next(ls) (save(ls, ls->current), next(ls))
149 int old = ls->current; in inclinenumber()
152 if (currIsNewline(ls) && ls->current != old) in inclinenumber()
163 ls->current = firstchar; in luaX_setinput()
186 if (ls->current == '\0' || !strchr(set, ls->current)) in check_next()
234 int first = ls->current; in read_numeral()
235 lua_assert(lisdigit(ls->current)); in read_numeral()
242 if (lisxdigit(ls->current) || ls->current == '.') in read_numeral()
[all …]
/device/google/cuttlefish_common/guest/hals/ril/libril/
DRilSapSocket.cpp87 RilSapSocketList *current = head; in printList() local
89 while(NULL != current) { in printList()
90 RLOGD("SocketName:%s",current->socket->name); in printList()
91 RLOGD("Socket id:%d",current->socket->id); in printList()
92 current = current->next; in printList()
98 RilSapSocketList *current = head; in getSocketById() local
103 while(NULL != current) { in getSocketById()
104 if(socketId == current->socket->id) { in getSocketById()
105 sap_socket = current->socket; in getSocketById()
108 current = current->next; in getSocketById()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dconfig.py80 current = {'server': server}
81 current['username'] = config.get(server, 'username')
89 current[key] = config.get(server, key)
91 current[key] = default
92 if (current['server'] == repository or
93 current['repository'] == repository):
94 return current
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_weakref.c44 PyWeakReference *current = *list; in weakref_getweakrefs() local
47 PyList_SET_ITEM(result, i, (PyObject *) current); in weakref_getweakrefs()
48 Py_INCREF(current); in weakref_getweakrefs()
49 current = current->wr_next; in weakref_getweakrefs()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_weakref.c44 PyWeakReference *current = *list; in weakref_getweakrefs() local
47 PyList_SET_ITEM(result, i, (PyObject *) current); in weakref_getweakrefs()
48 Py_INCREF(current); in weakref_getweakrefs()
49 current = current->wr_next; in weakref_getweakrefs()
/device/generic/goldfish/dhcp/client/
Dtimer.cpp40 uint64_t current = now(); in remainingMillis() local
41 if (current > mExpires) { in remainingMillis()
44 return mExpires - current; in remainingMillis()
/device/google/bonito/json-c/
Djson_tokener.c141 json_object_put(tok->stack[depth].current); in json_tokener_reset_level()
142 tok->stack[depth].current = NULL; in json_tokener_reset_level()
189 #define current tok->stack[tok->depth].current macro
284 current = json_object_new_object(); in json_tokener_parse_ex()
289 current = json_object_new_array(); in json_tokener_parse_ex()
349 obj = json_object_get(current); in json_tokener_parse_ex()
374 current = json_object_new_double(is_negative ? -INFINITY : INFINITY); in json_tokener_parse_ex()
398 current = NULL; in json_tokener_parse_ex()
411 current = json_object_new_double(NAN); in json_tokener_parse_ex()
484 current = json_object_new_string_len(tok->pb->buf, tok->pb->bpos); in json_tokener_parse_ex()
[all …]
/device/google/crosshatch/json-c/
Djson_tokener.c141 json_object_put(tok->stack[depth].current); in json_tokener_reset_level()
142 tok->stack[depth].current = NULL; in json_tokener_reset_level()
189 #define current tok->stack[tok->depth].current macro
284 current = json_object_new_object(); in json_tokener_parse_ex()
289 current = json_object_new_array(); in json_tokener_parse_ex()
349 obj = json_object_get(current); in json_tokener_parse_ex()
374 current = json_object_new_double(is_negative ? -INFINITY : INFINITY); in json_tokener_parse_ex()
398 current = NULL; in json_tokener_parse_ex()
411 current = json_object_new_double(NAN); in json_tokener_parse_ex()
484 current = json_object_new_string_len(tok->pb->buf, tok->pb->bpos); in json_tokener_parse_ex()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpdb.doc47 If a file ".pdbrc" exists in your home directory or in the current
68 An arrow indicates the "current frame", which determines the
72 Move the current frame one level down in the stack trace
76 Move the current frame one level up in the stack trace
81 filename is omitted, use the current file. With a function
124 Execute the current line, stop at the first possible occasion
125 (either in a function that is called or in the current function).
128 Continue execution until the next line in the current function
133 current one is reached or until the current frame returns.
136 Continue execution until the current function returns.
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dweakrefobject.c925 PyWeakReference *current = *list; in PyObject_ClearWeakRefs() local
926 Py_ssize_t count = _PyWeakref_GetWeakrefCount(current); in PyObject_ClearWeakRefs()
931 PyObject *callback = current->wr_callback; in PyObject_ClearWeakRefs()
933 current->wr_callback = NULL; in PyObject_ClearWeakRefs()
934 clear_weakref(current); in PyObject_ClearWeakRefs()
936 if (current->ob_refcnt > 0) in PyObject_ClearWeakRefs()
937 handle_callback(current, callback); in PyObject_ClearWeakRefs()
952 PyWeakReference *next = current->wr_next; in PyObject_ClearWeakRefs()
954 if (current->ob_refcnt > 0) in PyObject_ClearWeakRefs()
956 Py_INCREF(current); in PyObject_ClearWeakRefs()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dweakrefobject.c914 PyWeakReference *current = *list; in PyObject_ClearWeakRefs() local
915 Py_ssize_t count = _PyWeakref_GetWeakrefCount(current); in PyObject_ClearWeakRefs()
924 PyObject *callback = current->wr_callback; in PyObject_ClearWeakRefs()
926 current->wr_callback = NULL; in PyObject_ClearWeakRefs()
927 clear_weakref(current); in PyObject_ClearWeakRefs()
929 if (current->ob_refcnt > 0) in PyObject_ClearWeakRefs()
930 handle_callback(current, callback); in PyObject_ClearWeakRefs()
946 PyWeakReference *next = current->wr_next; in PyObject_ClearWeakRefs()
948 if (current->ob_refcnt > 0) in PyObject_ClearWeakRefs()
950 Py_INCREF(current); in PyObject_ClearWeakRefs()
[all …]
/device/google/cuttlefish_common/common/libs/threads/
Dcuttlefish_thread_test.cpp227 MonotonicTimePoint current(MonotonicTimePoint::Now()); in WaitThread() local
228 CHECK(Milliseconds(current - start_).count() >= 50); in WaitThread()
229 CHECK(Milliseconds(current - start_).count() <= 100); in WaitThread()
232 current = MonotonicTimePoint::Now(); in WaitThread()
233 CHECK(Milliseconds(current - start_).count() <= 500); in WaitThread()
/device/generic/goldfish/wifi/ipv6proxy/
Dpacket.cpp117 char* current = reinterpret_cast<char*>(currentHeader); in nextOpt() local
118 if (currentHeader < mFirstOpt || current >= end) { in nextOpt()
122 char* next = current + currentHeader->nd_opt_len * 8u; in nextOpt()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dpindent.py241 current, firstkw, lastkw, topid = 0, '', '', ''
273 while indent < current:
281 self.putline(s, current)
284 current, firstkw, lastkw, topid = stack[-1]
287 if indent == current and firstkw:
300 self.putline(s, current)
304 if indent > current:
305 stack.append((current, firstkw, lastkw, topid))
310 current, firstkw, lastkw, topid = \
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmExceptionLib/Arm/
DExceptionSupport.asm99 stmfd SP!,{LR} ; Store the link register for the current mode
111 stmfd SP!,{LR} ; Store the link register for the current mode
122 stmfd SP!,{LR} ; Store the link register for the current mode
134 stmfd SP!,{LR} ; Store the link register for the current mode
146 stmfd SP!,{LR} ; Store the link register for the current mode
157 stmfd SP!,{LR} ; Store the link register for the current mode
169 stmfd SP!,{LR} ; Store the link register for the current mode
181 stmfd SP!,{LR} ; Store the link register for the current mode
251 mov R4, SP ; Save current SP
DExceptionSupport.S105 stmfd SP!,{LR} @ Store the link register for the current mode
117 stmfd SP!,{LR} @ Store the link register for the current mode
128 stmfd SP!,{LR} @ Store the link register for the current mode
140 stmfd SP!,{LR} @ Store the link register for the current mode
152 stmfd SP!,{LR} @ Store the link register for the current mode
163 stmfd SP!,{LR} @ Store the link register for the current mode
175 stmfd SP!,{LR} @ Store the link register for the current mode
187 stmfd SP!,{LR} @ Store the link register for the current mode
257 mov R4, SP @ Save current SP
/device/linaro/bootloader/edk2/ArmPkg/Library/DebugAgentSymbolsBaseLib/Arm/
DDebugAgentException.asm77 stmfd SP!,{LR} ; Store the link register for the current mode
89 stmfd SP!,{LR} ; Store the link register for the current mode
101 stmfd SP!,{LR} ; Store the link register for the current mode
113 stmfd SP!,{LR} ; Store the link register for the current mode
125 stmfd SP!,{LR} ; Store the link register for the current mode
136 stmfd SP!,{LR} ; Store the link register for the current mode
148 stmfd SP!,{LR} ; Store the link register for the current mode
160 stmfd SP!,{LR} ; Store the link register for the current mode
DDebugAgentException.S82 stmfd SP!,{LR} @ Store the link register for the current mode
94 stmfd SP!,{LR} @ Store the link register for the current mode
106 stmfd SP!,{LR} @ Store the link register for the current mode
118 stmfd SP!,{LR} @ Store the link register for the current mode
130 stmfd SP!,{LR} @ Store the link register for the current mode
141 stmfd SP!,{LR} @ Store the link register for the current mode
153 stmfd SP!,{LR} @ Store the link register for the current mode
165 stmfd SP!,{LR} @ Store the link register for the current mode
/device/sample/apps/tv/SetupValidation/
Dgradle.properties8 # http://www.gradle.org/docs/current/userguide/build_environment.html
16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
/device/sample/apps/tv/SetupCustomizationSample/
Dgradle.properties8 # http://www.gradle.org/docs/current/userguide/build_environment.html
16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/versioncheck/
DREADME13 scripts retrieve the current-version file over the net, compares version
22 The script is executed with execfile(), not imported, and the current
28 'Current-Version:', which should contain te current version and is
32 of either the current distribution or a webpage describing it.
/device/linaro/bootloader/edk2/MdePkg/Library/BaseDebugPrintErrorLevelLib/
DBaseDebugPrintErrorLevelLib.uni4 // It retrieves the current error level from PcdDebugPrintErrorLevel.
20 #string STR_MODULE_DESCRIPTION #language en-US "It retrieves the current error level from …
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/Arm/
DExceptionSupport.ARMv6.asm99 stmfd SP!,{LR} ; Store the link register for the current mode
111 stmfd SP!,{LR} ; Store the link register for the current mode
123 stmfd SP!,{LR} ; Store the link register for the current mode
135 stmfd SP!,{LR} ; Store the link register for the current mode
146 stmfd SP!,{LR} ; Store the link register for the current mode
158 stmfd SP!,{LR} ; Store the link register for the current mode
/device/google/crosshatch/
Dinit.hardware.wlc.rc.userdebug17 on property:sys.boot_completed=1 && property:persist.vendor.limit.wlc.current=1
20 on property:sys.boot_completed=1 && property:persist.vendor.limit.wlc.current=0
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dpyassem.py13 self.current = self.entry = Block()
21 if self.current:
22 print "end", repr(self.current)
23 print " next", self.current.next
24 print " prev", self.current.prev
25 print " ", self.current.get_children()
27 self.current = block
50 self.current.addNext(block)
73 self.current.addOutEdge(inst[1])
74 self.current.emit(inst)

12345678910