/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | copy_reg.py | 120 slots = c.__dict__['__slots__'] 122 if isinstance(slots, basestring): 123 slots = (slots,) 124 for name in slots:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | copy_reg.py | 120 slots = c.__dict__['__slots__'] 122 if isinstance(slots, basestring): 123 slots = (slots,) 124 for name in slots:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | frameobject.c | 496 int i, slots; in frame_traverse() local 509 …slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_c… in frame_traverse() 511 for (i = slots; --i >= 0; ++fastlocals) in frame_traverse() 526 int i, slots; in frame_clear() local 542 …slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_c… in frame_clear() 544 for (i = slots; --i >= 0; ++fastlocals) in frame_clear()
|
D | typeobject.c | 1995 _unicode_to_string(PyObject *slots, Py_ssize_t nslots) in _unicode_to_string() argument 2002 if (PyUnicode_Check(slot_name = PyTuple_GET_ITEM(slots, i))) { in _unicode_to_string() 2004 tmp = PySequence_List(slots); in _unicode_to_string() 2020 slots = PyList_AsTuple(tmp); in _unicode_to_string() 2023 return slots; in _unicode_to_string() 2065 PyObject *slots, *tmp, *newslots; in type_new() local 2160 slots = PyDict_GetItemString(dict, "__slots__"); in type_new() 2166 if (slots == NULL) { in type_new() 2178 if (PyString_Check(slots) || PyUnicode_Check(slots)) in type_new() 2179 slots = PyTuple_Pack(1, slots); in type_new() [all …]
|
D | listsort.txt | 183 + Here's the highwater mark for the number of heap-based temp slots (4 196 merges (*sort, !sort) need all N//2 temp slots (or almost all). ~sort 207 slots twice, but the run lengths that remain after 3 random exchanges 341 where phi = (1+sqrt(5))/2 ~= 1.618. Thus a small # of stack slots suffice
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | frameobject.c | 494 int i, slots; in frame_traverse() local 507 …slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_c… in frame_traverse() 509 for (i = slots; --i >= 0; ++fastlocals) in frame_traverse() 524 int i, slots; in frame_clear() local 540 …slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_c… in frame_clear() 542 for (i = slots; --i >= 0; ++fastlocals) in frame_clear()
|
D | typeobject.c | 1977 _unicode_to_string(PyObject *slots, Py_ssize_t nslots) in _unicode_to_string() argument 1984 if (PyUnicode_Check(slot_name = PyTuple_GET_ITEM(slots, i))) { in _unicode_to_string() 1986 tmp = PySequence_List(slots); in _unicode_to_string() 2002 slots = PyList_AsTuple(tmp); in _unicode_to_string() 2005 return slots; in _unicode_to_string() 2047 PyObject *slots, *tmp, *newslots; in type_new() local 2142 slots = PyDict_GetItemString(dict, "__slots__"); in type_new() 2148 if (slots == NULL) { in type_new() 2160 if (PyString_Check(slots) || PyUnicode_Check(slots)) in type_new() 2161 slots = PyTuple_Pack(1, slots); in type_new() [all …]
|
D | listsort.txt | 180 + Here's the highwater mark for the number of heap-based temp slots (4 193 merges (*sort, !sort) need all N//2 temp slots (or almost all). ~sort 204 slots twice, but the run lengths that remain after 3 random exchanges 338 where phi = (1+sqrt(5))/2 ~= 1.618. Thus a small # of stack slots suffice
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/SasV1Dxe/ |
D | SasV1Dxe.c | 278 struct hisi_sas_slot *slots; member 332 slot = &hba->slots[slot_idx]; in prepare_cmd() 662 hba->slots = AllocateZeroPool (SLOT_ENTRIES * sizeof(struct hisi_sas_slot)); in sas_init() 663 ASSERT (hba->slots != NULL); in sas_init() 1018 FreePool (SasV1Info->hba->slots); in SasDriverBindingStop()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/ |
D | bases.py | 8 from framer.slots import *
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/DeviceTree/ |
D | hi3660.dtsi | 945 num-slots = <1>; 983 num-slots = <1>;
|
/device/google/bonito/json-c/ |
D | ChangeLog | 106 * Fix subtle bug in linkhash where lookup could hang after all slots
|
/device/google/crosshatch/json-c/ |
D | ChangeLog | 106 * Fix subtle bug in linkhash where lookup could hang after all slots
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/ |
D | _sre.c | 3590 Py_ssize_t slots, offset; in match_copy() local 3592 slots = 2 * (self->pattern->groups+1); in match_copy() 3594 copy = PyObject_NEW_VAR(MatchObject, &Match_Type, slots); in match_copy() 3607 sizeof(MatchObject) + slots * sizeof(Py_ssize_t) - offset); in match_copy()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | _sre.c | 3509 Py_ssize_t slots, offset; in match_copy() local 3511 slots = 2 * (self->pattern->groups+1); in match_copy() 3513 copy = PyObject_NEW_VAR(MatchObject, &Match_Type, slots); in match_copy() 3526 sizeof(MatchObject) + slots * sizeof(Py_ssize_t) - offset); in match_copy()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/ |
D | _sre.c | 3509 Py_ssize_t slots, offset; in match_copy() local 3511 slots = 2 * (self->pattern->groups+1); in match_copy() 3513 copy = PyObject_NEW_VAR(MatchObject, &Match_Type, slots); in match_copy() 3526 sizeof(MatchObject) + slots * sizeof(Py_ssize_t) - offset); in match_copy()
|
/device/linaro/bootloader/edk2/IntelFrameworkPkg/ |
D | FrameworkSpecConformance.txt | 698 They are introduced to support new system slots (type 9) defined in SmBios 2.6 specification. 901 They are introduced to support new system slots (type 9) defined in SmBios 2.6 specification.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_descr.py | 1066 slots = (unicode("foo"), unicode("bar")) 1068 __slots__ = slots 1072 self.assertEqual(type(slots[0]), unicode)
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/ |
D | QuarkPlatformPkg.dec | 607 # Defines the number of the slots existent on board
|
/device/google/cuttlefish_kernel/4.4-x86_64/ |
D | System.map | 79686 ffffffff820dac30 b slots
|
/device/google/cuttlefish_kernel/4.14-x86_64/ |
D | System.map | 81074 ffffffff826df050 b slots
|