Home | History | Annotate | Download | only in objc

Lines Matching refs:slots

46   /* Total number of slots.  This is the maximum number of elements
48 the number of slots in the C array. Important: this is
59 /* Number of slots that are not empty (ie, that are active). We
65 slots equals this number, we need to resize the array. This is
66 calculated once, when the slots are resized, and then kept cached
74 tree * GTY ((length ("%h.number_of_slots"))) slots;
77 to slots[i]. */
144 if (map->slots[i] == OBJC_MAP_PRIVATE_EMPTY_SLOT)
147 if (map->slots[i] == key)
154 if (map->slots[i] == OBJC_MAP_PRIVATE_EMPTY_SLOT)
157 if (map->slots[i] == key)
186 if (map->slots[i] == OBJC_MAP_PRIVATE_EMPTY_SLOT)
189 map->slots[i] = key;
193 if (map->slots[i] == key)
276 slot = map->slots[*i];
293 return map->slots[i - 1];