Home
last modified time | relevance | path

Searched refs:initial (Results 1 – 25 of 88) sorted by relevance

1234

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtokenize.py365 token, initial = line[start:end], line[start]
367 if initial in numchars or \
368 (initial == '.' and token != '.'): # ordinary number
370 elif initial in '\r\n':
373 elif initial == '#':
388 elif initial in single_quoted or \
393 endprog = (endprogs[initial] or endprogs[token[1]] or
400 elif initial in namechars: # ordinary name
402 elif initial == '\\': # continued stmt
405 if initial in '([{':
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dtokenize.py373 token, initial = line[start:end], line[start]
375 if initial in numchars or \
376 (initial == '.' and token != '.'): # ordinary number
378 elif initial in '\r\n':
381 elif initial == '#':
396 elif initial in single_quoted or \
401 endprog = (endprogs[initial] or endprogs[token[1]] or
408 elif initial in namechars: # ordinary name
410 elif initial == '\\': # continued stmt
413 if initial in '([{':
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
Dtokenize.py441 token, initial = line[start:end], line[start]
443 if initial in numchars or \
444 (initial == '.' and token != '.'): # ordinary number
446 elif initial in '\r\n':
451 elif initial == '#':
466 elif initial in single_quoted or \
471 endprog = (endprogs[initial] or endprogs[token[1]] or
478 elif initial in namechars: # ordinary name
480 elif initial == '\\': # continued stmt
485 if initial in '([{': parenlev = parenlev + 1
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Dvswscanf.c68 static const mbstate_t initial = { 0 }; in vswscanf() local
83 mbs = initial; in vswscanf()
Dvswprintf.c45 static const mbstate_t initial = { 0 }; in vswprintf() local
80 mbs = initial; in vswprintf()
Dvfwprintf.c202 static const mbstate_t initial = { 0 }; in __xfputwc() local
212 mbs = initial; in __xfputwc()
423 static const mbstate_t initial = { 0 }; in __mbsconv() local
443 mbs = initial; in __mbsconv()
468 mbs = initial; in __mbsconv()
496 static const mbstate_t initial = { 0 }; in __wcsconv() local
506 mbs = initial; in __wcsconv()
521 mbs = initial; in __wcsconv()
536 mbs = initial; in __wcsconv()
1000 static const mbstate_t initial = { 0 }; in WDECL() local
[all …]
Dvfwscanf.c163 static const mbstate_t initial = { 0 }; in __vfwscanf_unlocked() local
401 mbs = initial; in __vfwscanf_unlocked()
466 mbs = initial; in __vfwscanf_unlocked()
527 mbs = initial; in __vfwscanf_unlocked()
Dvfscanf.c175 static const mbstate_t initial = { 0 }; in __svfscanf_unlocked() local
423 mbs = initial; in __svfscanf_unlocked()
503 mbs = initial; in __svfscanf_unlocked()
604 mbs = initial; in __svfscanf_unlocked()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dsignals.py47 initial = signal.getsignal(signal.SIGINT)
52 signal.signal(signal.SIGINT, initial)
/device/google/cuttlefish/shared/sepolicy/vendor/
Dcameraserver.te1 # Read GCE initial metadata file
Dsurfaceflinger.te3 # Read GCE initial metadata file
Dhal_graphics_allocator.te4 # Read GCE initial metadata file
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Darraymodule.c1917 PyObject *initial = NULL, *it = NULL; in array_new() local
1923 if (!PyArg_ParseTuple(args, "c|O:array", &c, &initial)) in array_new()
1926 if (!(initial == NULL || PyList_Check(initial) in array_new()
1927 || PyString_Check(initial) || PyTuple_Check(initial) in array_new()
1928 || (c == 'u' && PyUnicode_Check(initial)))) { in array_new()
1929 it = PyObject_GetIter(initial); in array_new()
1937 initial = NULL; in array_new()
1944 if (initial == NULL || !(PyList_Check(initial) in array_new()
1945 || PyTuple_Check(initial))) in array_new()
1948 len = PySequence_Size(initial); in array_new()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Darraymodule.c1932 PyObject *initial = NULL, *it = NULL; in array_new() local
1938 if (!PyArg_ParseTuple(args, "c|O:array", &c, &initial)) in array_new()
1941 if (!(initial == NULL || PyList_Check(initial) in array_new()
1942 || PyString_Check(initial) || PyTuple_Check(initial) in array_new()
1943 || (c == 'u' && PyUnicode_Check(initial)))) { in array_new()
1944 it = PyObject_GetIter(initial); in array_new()
1952 initial = NULL; in array_new()
1959 if (initial == NULL || !(PyList_Check(initial) in array_new()
1960 || PyTuple_Check(initial))) in array_new()
1963 len = PySequence_Size(initial); in array_new()
[all …]
/device/linaro/poplar/installer/
DREADME24 These instructions are only necessary for initial bootloader
25 installation or board unbricking. Once the initial installation is
/device/linaro/bootloader/edk2/DuetPkg/BootSector/
Dbootsect.S126 # dx - variable storage (initial value is 0)
127 # bx - loader (initial value is 0)
Dbootsect.asm125 ; dx - variable storage (initial value is 0)
126 ; bx - loader (initial value is 0)
/device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/
DMain.asm62 ; Restore initial EAX value into the EAX register
95 ; Restore initial EAX value into the RAX register
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_runpy.py55 initial = object()
60 d1 = dict(initial=initial)
69 self.assertIs(d2["initial"], initial)
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Application/FirmwareUpdate/
DFirmwareUpdateStrings.uni33 … #language fr-FR "\rLe système qui remettre à l'état initial dans %d les secondes ..."
36 … #language fr-FR "\nS'il vous plaît manuellement remet à l'état initial le système ...\n"
/device/google/contexthub/firmware/os/platform/stm32/lkr/
Dapp.lkr23 * initial contents of RW data
24 * initial contents of the GOT
Dstm32f4xx.bl.lkr33 /* initial EEDATA contents */
/device/linaro/bootloader/edk2/UefiCpuPkg/Library/BaseUefiCpuLib/X64/
DInitializeFpu.S32 # Float control word initial value:
DInitializeFpu.asm18 ; Float control word initial value:
DInitializeFpu.nasm17 ; Float control word initial value:

1234