Searched refs:array (Results 1 - 8 of 8) sorted by relevance

/bionic/libc/arch-arm/bionic/
H A Dcrtbegin.c43 structors_array_t array; local
44 array.preinit_array = &__PREINIT_ARRAY__;
45 array.init_array = &__INIT_ARRAY__;
46 array.fini_array = &__FINI_ARRAY__;
49 __libc_init(raw_args, NULL, &main, &array);
/bionic/libc/arch-mips/bionic/
H A Dcrtbegin.c44 structors_array_t array; local
45 array.preinit_array = &__PREINIT_ARRAY__;
46 array.init_array = &__INIT_ARRAY__;
47 array.fini_array = &__FINI_ARRAY__;
49 __libc_init(raw_args, NULL, &main, &array);
/bionic/libc/arch-x86/bionic/
H A Dcrtbegin.c45 structors_array_t array; local
46 array.preinit_array = &__PREINIT_ARRAY__;
47 array.init_array = &__INIT_ARRAY__;
48 array.fini_array = &__FINI_ARRAY__;
51 __libc_init(raw_args, NULL, &main, &array);
/bionic/libc/bionic/
H A Dlibc_init_common.cpp137 void __libc_fini(void* array) { argument
138 void** fini_array = reinterpret_cast<void**>(array);
142 if (array == NULL || (size_t)fini_array[0] != minus1) {
/bionic/libc/kernel/common/linux/
H A Dmoduleparam.h90 #define module_param_array_named(name, array, type, nump, perm) static struct kparam_array __param_arr_##name = { ARRAY_SIZE(array), nump, param_set_##type, param_get_##type, sizeof(array[0]), array }; module_param_call(name, param_array_set, param_array_get, &__param_arr_##name, perm); __MODULE_PARM_TYPE(name, "array of " #type)
H A Dsem.h59 unsigned short __user *array; member in union:semun
/bionic/linker/
H A Dlinker.cpp356 const char** array, char* buf, size_t buf_size, size_t max_count) {
365 while (i < max_count && (array[i] = strsep(&buf_p, delimiters))) {
366 if (*array[i] != '\0') {
374 array[i - 1] = NULL;
376 array[i] = NULL;
355 parse_path(const char* path, const char* delimiters, const char** array, char* buf, size_t buf_size, size_t max_count) argument
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c1079 single cleared space, it returns an array of pointers to n_elements
1088 probably the most typical usage). If it is null, the returned array
1090 no longer needed. Otherwise, the chunks array must be of at least
1094 In either case, independent_calloc returns this pointer array, or
1096 is null, it returns a chunk representing an array with zero elements
1120 free(pool); // Can now free the array (or not, if it is needed later)
1130 chunks with sizes indicated in the "sizes" array. It returns
1131 an array of pointers to these elements, each of which can be
1138 the returned array is itself dynamically allocated and should also
1139 be freed when it is no longer needed. Otherwise, the chunks array
5119 internal_bulk_free(mstate m, void* array[], size_t nelem) argument
5338 dlbulk_free(void* array[], size_t nelem) argument
5868 mspace_bulk_free(mspace msp, void* array[], size_t nelem) argument
[all...]

Completed in 355 milliseconds