Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcopy_reg.py120 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/
Dcopy_reg.py120 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/
Dframeobject.c496 int i, slots; in frame_traverse() local
509slots = 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
542slots = 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()
Dtypeobject.c1995 _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 …]
Dlistsort.txt183 + 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/
Dframeobject.c494 int i, slots; in frame_traverse() local
507slots = 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
540slots = 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()
Dtypeobject.c1977 _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 …]
Dlistsort.txt180 + 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/
DSasV1Dxe.c278 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/
Dbases.py8 from framer.slots import *
/device/generic/goldfish-opengl/shared/GoldfishAddressSpace/include/
Dgoldfish_address_space_android.impl364 // shared memory slots are supported
381 // shared memory slots are not supported
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/DeviceTree/
Dhi3660.dtsi945 num-slots = <1>;
983 num-slots = <1>;
/device/google/coral/json-c/
DChangeLog106 * Fix subtle bug in linkhash where lookup could hang after all slots
/device/google/sunfish/json-c/
DChangeLog106 * Fix subtle bug in linkhash where lookup could hang after all slots
/device/google/crosshatch/json-c/
DChangeLog106 * Fix subtle bug in linkhash where lookup could hang after all slots
/device/google/bonito/json-c/
DChangeLog106 * Fix subtle bug in linkhash where lookup could hang after all slots
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
D_sre.c3509 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/Python-2.7.2/Modules/
D_sre.c3509 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/Python-2.7.10/PyMod-2.7.10/Modules/
D_sre.c3590 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/IntelFrameworkPkg/
DFrameworkSpecConformance.txt698 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/
Dtest_descr.py1066 slots = (unicode("foo"), unicode("bar"))
1068 __slots__ = slots
1072 self.assertEqual(type(slots[0]), unicode)
/device/linaro/bootloader/edk2/QuarkPlatformPkg/
DQuarkPlatformPkg.dec607 # Defines the number of the slots existent on board
/device/linaro/dragonboard/db845c/firmware/
Dadsp.b1332 …wn TDM HAL version: 0x%x���AFETdmDriver.cpp:Number of channels and active slots are mismatch, num_…
/device/google/cuttlefish_kernel/5.4-x86_64/
DSystem.map131222 ffffffff82f19630 b slots
/device/google/cuttlefish_kernel/5.4-arm64/
DSystem.map235257 ffffffc0119fcd48 b slots