HomeSort by relevance Sort by last modified time
    Searched refs:me_key (Results 1 - 13 of 13) sorted by null

  /external/python/cpython3/Objects/
dict-common.h 5 /* Cached hash code of me_key. */
7 PyObject *me_key; member in struct:__anon33532
dictobject.c 71 2. Active. index >= 0, me_key != NULL and me_value != NULL
472 PyObject *key = entry->me_key;
560 Py_XDECREF(entries[i].me_key);
715 assert(ep->me_key != NULL);
716 if (ep->me_key == key) {
723 startkey = ep->me_key;
731 if (dk == mp->ma_keys && ep->me_key == startkey) {
764 assert(ep->me_key != NULL);
765 if (ep->me_key == key) {
773 startkey = ep->me_key;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
dictobject.c 333 if (ep->me_key == NULL || ep->me_key == key)
336 if (ep->me_key == dummy)
340 startkey = ep->me_key;
346 if (ep0 == mp->ma_table && ep->me_key == startkey) {
362 /* In the loop, me_key == dummy is by far (factor of 100s) the
367 if (ep->me_key == NULL)
369 if (ep->me_key == key)
371 if (ep->me_hash == hash && ep->me_key != dummy) {
372 startkey = ep->me_key;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
dictobject.c 333 if (ep->me_key == NULL || ep->me_key == key)
336 if (ep->me_key == dummy)
340 startkey = ep->me_key;
346 if (ep0 == mp->ma_table && ep->me_key == startkey) {
362 /* In the loop, me_key == dummy is by far (factor of 100s) the
367 if (ep->me_key == NULL)
369 if (ep->me_key == key)
371 if (ep->me_hash == hash && ep->me_key != dummy) {
372 startkey = ep->me_key;
    [all...]
  /external/python/cpython2/Objects/
dictobject.c 333 if (ep->me_key == NULL || ep->me_key == key)
336 if (ep->me_key == dummy)
340 startkey = ep->me_key;
346 if (ep0 == mp->ma_table && ep->me_key == startkey) {
362 /* In the loop, me_key == dummy is by far (factor of 100s) the
367 if (ep->me_key == NULL)
369 if (ep->me_key == key)
371 if (ep->me_hash == hash && ep->me_key != dummy) {
372 startkey = ep->me_key;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
dictobject.h 19 1. Unused. me_key == me_value == NULL
22 me_key is NULL, and is each slot's initial state.
24 2. Active. me_key != NULL and me_key != dummy and me_value != NULL
28 3. Dummy. me_key == dummy and me_value == NULL
32 (cannot have me_key set to NULL), else the probe sequence in case of
51 /* Cached hash code of me_key. Note that hash codes are C longs.
56 PyObject *me_key; member in struct:__anon4328
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
dictobject.h 19 1. Unused. me_key == me_value == NULL
22 me_key is NULL, and is each slot's initial state.
24 2. Active. me_key != NULL and me_key != dummy and me_value != NULL
28 3. Dummy. me_key == dummy and me_value == NULL
32 (cannot have me_key set to NULL), else the probe sequence in case of
51 /* Cached hash code of me_key. Note that hash codes are C longs.
56 PyObject *me_key; member in struct:__anon4635
  /prebuilts/gdb/darwin-x86/include/python2.7/
dictobject.h 19 1. Unused. me_key == me_value == NULL
22 me_key is NULL, and is each slot's initial state.
24 2. Active. me_key != NULL and me_key != dummy and me_value != NULL
28 3. Dummy. me_key == dummy and me_value == NULL
32 (cannot have me_key set to NULL), else the probe sequence in case of
51 /* Cached hash code of me_key. Note that hash codes are C longs.
56 PyObject *me_key; member in struct:__anon66467
  /prebuilts/gdb/linux-x86/include/python2.7/
dictobject.h 19 1. Unused. me_key == me_value == NULL
22 me_key is NULL, and is each slot's initial state.
24 2. Active. me_key != NULL and me_key != dummy and me_value != NULL
28 3. Dummy. me_key == dummy and me_value == NULL
32 (cannot have me_key set to NULL), else the probe sequence in case of
51 /* Cached hash code of me_key. Note that hash codes are C longs.
56 PyObject *me_key; member in struct:__anon66589
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
dictobject.h 19 1. Unused. me_key == me_value == NULL
22 me_key is NULL, and is each slot's initial state.
24 2. Active. me_key != NULL and me_key != dummy and me_value != NULL
28 3. Dummy. me_key == dummy and me_value == NULL
32 (cannot have me_key set to NULL), else the probe sequence in case of
51 /* Cached hash code of me_key. Note that hash codes are C longs.
56 PyObject *me_key; member in struct:__anon982
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
dictobject.h 19 1. Unused. me_key == me_value == NULL
22 me_key is NULL, and is each slot's initial state.
24 2. Active. me_key != NULL and me_key != dummy and me_value != NULL
28 3. Dummy. me_key == dummy and me_value == NULL
32 (cannot have me_key set to NULL), else the probe sequence in case of
51 /* Cached hash code of me_key. Note that hash codes are C longs.
56 PyObject *me_key; member in struct:__anon1105
  /external/python/cpython2/Include/
dictobject.h 19 1. Unused. me_key == me_value == NULL
22 me_key is NULL, and is each slot's initial state.
24 2. Active. me_key != NULL and me_key != dummy and me_value != NULL
28 3. Dummy. me_key == dummy and me_value == NULL
32 (cannot have me_key set to NULL), else the probe sequence in case of
51 /* Cached hash code of me_key. Note that hash codes are C longs.
56 PyObject *me_key; member in struct:__anon32576
  /external/python/cpython3/Modules/
_pickle.c 531 PyObject *me_key; member in struct:__anon33345
685 Py_XINCREF(self->mt_table[i].me_key);
705 Py_XDECREF(self->mt_table[i].me_key);
737 if (entry->me_key == NULL || entry->me_key == key)
743 if (entry->me_key == NULL || entry->me_key == key)
786 if (oldentry->me_key != NULL) {
791 newentry = _PyMemoTable_Lookup(self, oldentry->me_key);
792 newentry->me_key = oldentry->me_key
    [all...]

Completed in 294 milliseconds