Home
last modified time | relevance | path

Searched refs:size (Results 1 – 14 of 14) sorted by relevance

/include/
A Dalloca.h15 # define __alloca(size) __builtin_alloca (size) argument
18 extern int __libc_use_alloca (size_t size) __attribute__ ((const));
19 extern int __libc_alloca_cutoff (size_t size) __attribute__ ((const));
27 # define alloca_account(size, avar) \ argument
29 void *m__ = __alloca (size); \
33 # define alloca_account(size, avar) \
34 ({ size_t s__ = (size); \
A Dinline-hashtab.h33 size_t size; member
51 ht->size = 3; in htab_create()
91 size_t size = htab->size; in find_empty_slot_for_expand() local
103 if (index >= size) in find_empty_slot_for_expand()
104 index -= size; in find_empty_slot_for_expand()
137 nsize = htab->size; in htab_expand()
143 htab->size = nsize; in htab_expand()
188 size_t size; in htab_find_slot() local
197 size = htab->size; in htab_find_slot()
198 index = hash % size; in htab_find_slot()
[all …]
A Dlibc-pointer-arith.h46 #define ALIGN_DOWN(base, size) ((base) & -((__typeof__ (base)) (size))) argument
53 #define ALIGN_UP(base, size) ALIGN_DOWN ((base) + (size) - 1, (size)) argument
56 #define PTR_ALIGN_DOWN(base, size) \ argument
57 ((__typeof__ (base)) ALIGN_DOWN ((uintptr_t) (base), (size)))
60 #define PTR_ALIGN_UP(base, size) \ argument
61 ((__typeof__ (base)) ALIGN_UP ((uintptr_t) (base), (size)))
64 #define PTR_IS_ALIGNED(base, size) \ argument
65 ((((uintptr_t) (base)) & (size - 1)) == 0)
A Dalloc_buffer.h123 alloc_buffer_create (void *start, size_t size) in alloc_buffer_create() argument
126 uintptr_t end = (uintptr_t) start + size; in alloc_buffer_create()
143 return __libc_alloc_buffer_allocate (size, pptr); in alloc_buffer_allocate()
206 __alloc_buffer_assert_size (size_t size) in __alloc_buffer_assert_size() argument
208 if (!__builtin_constant_p (size)) in __alloc_buffer_assert_size()
213 else if (size == 0) in __alloc_buffer_assert_size()
218 return size; in __alloc_buffer_assert_size()
248 if (size == 1 && align == 1) in __alloc_buffer_alloc()
249 return alloc_buffer_alloc_bytes (buf, size); in __alloc_buffer_alloc()
253 size_t new_current = aligned + size; in __alloc_buffer_alloc()
[all …]
A Dscratch_buffer.h123 size_t nelem, size_t size);
129 size_t nelem, size_t size) in libc_hidden_proto()
132 (buffer, nelem, size)); in libc_hidden_proto()
140 size_t size);
145 scratch_buffer_dupfree (struct scratch_buffer *buffer, size_t size) in libc_hidden_proto()
147 void *r = __libc_scratch_buffer_dupfree (buffer, size); in libc_hidden_proto()
A Drtld-malloc.h54 malloc (size_t size) in malloc() argument
56 return __rtld_malloc (size); in malloc()
60 realloc (void *ptr, size_t size) in realloc() argument
62 return __rtld_realloc (ptr, size); in realloc()
A Dgmp.h13 extern mp_size_t __mpn_extract_double (mp_ptr res_ptr, mp_size_t size,
17 extern mp_size_t __mpn_extract_long_double (mp_ptr res_ptr, mp_size_t size,
23 extern mp_size_t __mpn_extract_float128 (mp_ptr res_ptr, mp_size_t size,
A Dfile_change_detection.h33 off64_t size; member
A Dstdlib.h111 size_t size, __compar_d_fn_t cmp, void *arg);
129 extern int __posix_memalign (void **memptr, size_t alignment, size_t size);
131 extern void *__libc_memalign (size_t alignment, size_t size)
311 unsigned int size; member
A Dgrp.h47 long int *size, gid_t **groupsp, long int limit, \
A Dlibc-symbols.h327 #define declare_symbol_alias(symbol, original, type, size) \ argument
328 declare_symbol_alias_1 (symbol, original, type, size)
330 # define declare_symbol_alias_1(symbol, original, type, size) \ argument
333 .size C_SYMBOL_NAME (symbol), size
335 # define declare_symbol_alias_1(symbol, original, type, size) \ argument
340 "\n\t.size " __SYMBOL_PREFIX #symbol ", " #size);
A Dstdio.h73 extern char *__fgets_unlocked_chk (char *buf, size_t size, int n, FILE *fp);
74 extern char *__fgets_chk (char *buf, size_t size, int n, FILE *fp);
A Dlink.h382 size_t size, void *data),
/include/rpc/
A Dsvc.h17 extern int svcudp_enablecache (SVCXPRT *transp, u_long size);

Completed in 30 milliseconds