Home
last modified time | relevance | path

Searched refs:selectors (Results 1 – 20 of 20) sorted by relevance

/device/linaro/bootloader/edk2/UefiCpuPkg/Universal/Acpi/S3Resume2Pei/X64/
DAsmFuncs.S16 #* Assembly function to set segment selectors.
DAsmFuncs.asm17 ; Assembly function to set segment selectors.
DAsmFuncs.nasm17 ; Assembly function to set segment selectors.
/device/linaro/bootloader/edk2/UefiCpuPkg/Universal/Acpi/S3Resume2Pei/Ia32/
DAsmFuncs.S16 #* Assembly function to set segment selectors.
DAsmFuncs.asm17 ; Assembly function to set segment selectors.
DAsmFuncs.nasm17 ; Assembly function to set segment selectors.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Ditertoolsmodule.c2814 PyObject *selectors; member
2823 PyObject *data=NULL, *selectors=NULL; in compress_new() local
2833 selectors = PyObject_GetIter(seq2); in compress_new()
2834 if (selectors == NULL) in compress_new()
2842 lz->selectors = selectors; in compress_new()
2847 Py_XDECREF(selectors); in compress_new()
2856 Py_XDECREF(lz->selectors); in compress_dealloc()
2864 Py_VISIT(lz->selectors); in compress_traverse()
2871 PyObject *data = lz->data, *selectors = lz->selectors; in compress_next() local
2874 PyObject *(*selectornext)(PyObject *) = *Py_TYPE(selectors)->tp_iternext; in compress_next()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Ditertoolsmodule.c2775 PyObject *selectors; member
2784 PyObject *data=NULL, *selectors=NULL; in compress_new() local
2794 selectors = PyObject_GetIter(seq2); in compress_new()
2795 if (selectors == NULL) in compress_new()
2803 lz->selectors = selectors; in compress_new()
2808 Py_XDECREF(selectors); in compress_new()
2817 Py_XDECREF(lz->selectors); in compress_dealloc()
2825 Py_VISIT(lz->selectors); in compress_traverse()
2832 PyObject *data = lz->data, *selectors = lz->selectors; in compress_next() local
2835 PyObject *(*selectornext)(PyObject *) = *Py_TYPE(selectors)->tp_iternext; in compress_next()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
DThunk16.S89 movl %ecx, %ss # set new segment selectors
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
DThunk16.S111 movw %cx, %ss # set new segment selectors
DThunk16.nasm155 mov ss, cx ; set new segment selectors
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dplatform.py718 def _mac_ver_lookup(selectors,default=None): argument
724 for selector in selectors:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dplatform.py713 def _mac_ver_lookup(selectors,default=None): argument
719 for selector in selectors:
/device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/Ia32/
DSecEntry.nasm100 ; Set up the selectors for 32 bit protected mode entry
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
DThunk16.S173 movl %edx,%ss # set new segment selectors
DThunk16.asm161 mov ss, edx ; set new segment selectors
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
DThunk16.nasm163 mov ss, dx ; set new segment selectors
DThunk16.asm163 mov ss, edx ; set new segment selectors
DThunk16.S167 movl %edx,%ss # set new segment selectors
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_itertools.py312 self.assertEqual(list(compress(data='ABCDEF', selectors=[1,0,1,0,1,1])), list('ACEF'))
320 selectors = chain.from_iterable(repeat((0, 1)))
321 self.assertEqual(list(compress(data, selectors)), [1,3,5] * n)