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

/bionic/libc/arch-arm64/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__;
48 __libc_init(raw_args, NULL, &main, &array);
/bionic/libc/arch-common/bionic/
H A Dcrtbegin.c47 structors_array_t array; local
48 array.preinit_array = &__PREINIT_ARRAY__;
49 array.init_array = &__INIT_ARRAY__;
50 array.fini_array = &__FINI_ARRAY__;
57 __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-mips64/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/bionic/
H A Dlibc_init_common.cpp131 void __libc_fini(void* array) { argument
132 void** fini_array = reinterpret_cast<void**>(array);
136 if (array == NULL || (size_t)fini_array[0] != minus1) {
/bionic/libc/kernel/uapi/linux/
H A Dsem.h59 unsigned short __user *array; member in union:semun
H A Dkvm.h739 __u64 array; member in struct:kvm_config_tlb
/bionic/linker/
H A Dlinker.cpp352 const char** array, char* buf, size_t buf_size, size_t max_count) {
361 while (i < max_count && (array[i] = strsep(&buf_p, delimiters))) {
362 if (*array[i] != '\0') {
370 array[i - 1] = NULL;
372 array[i] = NULL;
351 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
5345 dlbulk_free(void* array[], size_t nelem) argument
5875 mspace_bulk_free(mspace msp, void* array[], size_t nelem) argument
[all...]

Completed in 427 milliseconds