Lines Matching refs:values
32 void** values; member
48 map->values = map->values0; in aintMap_new()
59 if (map->values != map->values0) in aintMap_free()
60 AFREE(map->values); in aintMap_free()
90 return map->values[index]; in aintMap_getWithDefault()
102 void* values = map->values; in aintMap_grow() local
107 if (values == map->values0) in aintMap_grow()
108 values = NULL; in aintMap_grow()
116 AARRAY_RENEW(values, newCapacity); in aintMap_grow()
119 map->values = values; in aintMap_grow()
146 map->values[limit] = value; in aintMap_set()
151 result = map->values[index]; in aintMap_set()
152 map->values[index] = value; in aintMap_set()
175 result = map->values[index]; in aintMap_del()
180 map->values[index] = map->values[limit]; in aintMap_del()
216 iter->value = map->values[index]; in aintMapIterator_next()