Lines Matching refs:sarray
100 sarray_at_put (struct sarray *array, sidx index, void *element) in sarray_at_put()
203 sarray_at_put_safe (struct sarray *array, sidx index, void *element) in sarray_at_put_safe()
210 struct sarray *
213 struct sarray *arr; in sarray_new()
226 arr = (struct sarray *) objc_malloc (sizeof (struct sarray)); in sarray_new()
258 arr->is_copy_of = (struct sarray *) 0; in sarray_new()
291 sarray_realloc (struct sarray *array, int newsize) in sarray_realloc()
389 sarray_free (struct sarray *array) { in sarray_free()
481 struct sarray *
482 sarray_lazy_copy (struct sarray *oarr) in sarray_lazy_copy()
484 struct sarray *arr; in sarray_lazy_copy()
495 arr = (struct sarray *) objc_malloc (sizeof (struct sarray)); /* !!! */ in sarray_lazy_copy()