Lines Matching defs:ep0
804 PyDictUnicodeEntry *ep0 = DK_UNICODE_ENTRIES(keys);
805 pkey = &ep0->me_key;
806 pvalue = &ep0->me_value;
810 PyDictKeyEntry *ep0 = DK_ENTRIES(keys);
811 pkey = &ep0->me_key;
812 pvalue = &ep0->me_value;
870 PyDictUnicodeEntry *ep0 = DK_UNICODE_ENTRIES(dk);
878 PyDictUnicodeEntry *ep = &ep0[ix];
916 PyDictUnicodeEntry *ep0 = DK_UNICODE_ENTRIES(dk);
924 PyDictUnicodeEntry *ep = &ep0[ix];
939 PyDictUnicodeEntry *ep = &ep0[ix];
960 PyDictKeyEntry *ep0 = DK_ENTRIES(dk);
968 PyDictKeyEntry *ep = &ep0[ix];
1138 PyDictUnicodeEntry *ep0 = DK_UNICODE_ENTRIES(mp->ma_keys);
1140 if ((value = ep0[i].me_value) == NULL)
1147 PyDictKeyEntry *ep0 = DK_ENTRIES(mp->ma_keys);
1149 if ((value = ep0[i].me_value) == NULL)
1152 _PyObject_GC_MAY_BE_TRACKED(ep0[i].me_key))
3487 PyDictUnicodeEntry *ep0 = DK_UNICODE_ENTRIES(self->ma_keys);
3489 while (i >= 0 && ep0[i].me_value == NULL) {
3494 key = ep0[i].me_key;
3496 value = ep0[i].me_value;
3497 ep0[i].me_key = NULL;
3498 ep0[i].me_value = NULL;
3501 PyDictKeyEntry *ep0 = DK_ENTRIES(self->ma_keys);
3503 while (i >= 0 && ep0[i].me_value == NULL) {
3508 key = ep0[i].me_key;
3509 hash = ep0[i].me_hash;
3510 value = ep0[i].me_value;
3511 ep0[i].me_key = NULL;
3512 ep0[i].me_hash = -1;
3513 ep0[i].me_value = NULL;