Lines Matching refs:objc_malloc
150 new_index = (struct sindex *) objc_malloc (sizeof (struct sindex)); in sarray_at_put()
162 new_index = (struct sindex *) objc_malloc (sizeof (struct sindex)); in sarray_at_put()
178 new_bucket = (struct sbucket *) objc_malloc (sizeof (struct sbucket)); in sarray_at_put()
191 new_bucket = (struct sbucket *) objc_malloc (sizeof (struct sbucket)); in sarray_at_put()
225 arr = (struct sarray *) objc_malloc (sizeof (struct sarray)); in sarray_new()
232 objc_malloc (sizeof (struct sindex *) * num_indices); in sarray_new()
234 arr->empty_index = (struct sindex *) objc_malloc (sizeof (struct sindex)); in sarray_new()
244 objc_malloc (sizeof (struct sbucket *) * num_indices); in sarray_new()
251 arr->empty_bucket = (struct sbucket *) objc_malloc (sizeof (struct sbucket)); in sarray_new()
339 objc_malloc ((new_max_index + 1) * sizeof (struct sindex *)); in sarray_realloc()
343 objc_malloc ((new_max_index + 1) * sizeof (struct sbucket *)); in sarray_realloc()
494 arr = (struct sarray *) objc_malloc (sizeof (struct sarray)); /* !!! */ in sarray_lazy_copy()
508 objc_malloc (sizeof (struct sindex *) * num_indices); in sarray_lazy_copy()
514 objc_malloc (sizeof (struct sbucket *) * num_indices); in sarray_lazy_copy()