Home
last modified time | relevance | path

Searched defs:size (Results 1 – 25 of 4631) sorted by relevance

12345678910>>...186

/netbsd-src/external/gpl3/gcc.old/dist/libobjc/
H A Dmemory.c47 objc_malloc (size_t size) in objc_malloc()
56 objc_atomic_malloc (size_t size) in objc_atomic_malloc()
65 objc_realloc (void *mem, size_t size) in objc_realloc()
74 objc_calloc (size_t nelem, size_t size) in objc_calloc()
93 objc_malloc (size_t size) in objc_malloc()
102 objc_atomic_malloc (size_t size) in objc_atomic_malloc()
111 objc_realloc (void *mem, size_t size) in objc_realloc()
120 objc_calloc (size_t nelem, size_t size) in objc_calloc()
/netbsd-src/external/gpl3/gcc/dist/libobjc/
H A Dmemory.c47 objc_malloc (size_t size) in objc_malloc()
56 objc_atomic_malloc (size_t size) in objc_atomic_malloc()
65 objc_realloc (void *mem, size_t size) in objc_realloc()
74 objc_calloc (size_t nelem, size_t size) in objc_calloc()
93 objc_malloc (size_t size) in objc_malloc()
102 objc_atomic_malloc (size_t size) in objc_atomic_malloc()
111 objc_realloc (void *mem, size_t size) in objc_realloc()
120 objc_calloc (size_t nelem, size_t size) in objc_calloc()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_allocation_functions.cpp32 int __sanitizer_posix_memalign(void **memptr, uptr alignment, uptr size) { in __sanitizer_posix_memalign()
40 void *__sanitizer_memalign(uptr alignment, uptr size) { in __sanitizer_memalign()
46 void *__sanitizer_aligned_alloc(uptr alignment, uptr size) { in __sanitizer_aligned_alloc()
52 void *__sanitizer___libc_memalign(uptr alignment, uptr size) { in __sanitizer___libc_memalign()
61 void *__sanitizer_valloc(uptr size) { in __sanitizer_valloc()
67 void *__sanitizer_pvalloc(uptr size) { in __sanitizer_pvalloc()
113 void *__sanitizer_calloc(uptr nmemb, uptr size) { in __sanitizer_calloc()
121 void *__sanitizer_realloc(void *ptr, uptr size) { in __sanitizer_realloc()
129 void *__sanitizer_reallocarray(void *ptr, uptr nmemb, uptr size) { in __sanitizer_reallocarray()
135 void *__sanitizer_malloc(uptr size) { in __sanitizer_malloc()
/netbsd-src/external/lgpl3/gmp/dist/mpf/
H A Dsub.c221 mp_size_t size; in mpf_sub() local
231 mp_size_t size; in mpf_sub() local
319 mp_size_t size; in mpf_sub() local
329 mp_size_t size; in mpf_sub() local
342 mp_size_t size; in mpf_sub() local
352 mp_size_t size; in mpf_sub() local
366 mp_size_t size, i; in mpf_sub() local
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/hash_fn/
H A Dranged_hash_fn.hpp100 ranged_hash_fn(size_type size) in ranged_hash_fn()
105 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn) in ranged_hash_fn()
111 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_hash_fn()
128 notify_resized(size_type size) in notify_resized()
186 ranged_hash_fn(size_type size) in ranged_hash_fn()
191 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn) : in ranged_hash_fn()
197 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_hash_fn()
214 notify_resized(size_type size) in notify_resized()
275 ranged_hash_fn(size_type size) in ranged_hash_fn()
280 ranged_hash_fn(size_type size, const Comb_Hash_Fn& r_comb_hash_fn) : in ranged_hash_fn()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/hash_fn/
H A Dranged_hash_fn.hpp100 ranged_hash_fn(size_type size) in ranged_hash_fn()
105 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn) in ranged_hash_fn()
111 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_hash_fn()
128 notify_resized(size_type size) in notify_resized()
186 ranged_hash_fn(size_type size) in ranged_hash_fn()
191 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn) : in ranged_hash_fn()
197 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_hash_fn()
214 notify_resized(size_type size) in notify_resized()
275 ranged_hash_fn(size_type size) in ranged_hash_fn()
280 ranged_hash_fn(size_type size, const Comb_Hash_Fn& r_comb_hash_fn) : in ranged_hash_fn()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_new_delete.cc46 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new()
48 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new[]()
50 void *operator new(size_t size, std::nothrow_t const&) { in operator new()
54 void *operator new[](size_t size, std::nothrow_t const&) { in operator new[]()
58 void *operator new(size_t size, std::align_val_t align) in operator new()
61 void *operator new[](size_t size, std::align_val_t align) in operator new[]()
64 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&) in operator new()
67 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const&) in operator new[]()
85 void operator delete(void *ptr, size_t size) NOEXCEPT { OPERATOR_DELETE_BODY; } in operator delete()
87 void operator delete[](void *ptr, size_t size) NOEXCEPT in operator delete[]()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/projects/
H A Dprojects.json8 "size": "tiny" string
16 "size": "small" string
24 "size": "tiny" string
32 "size": "small" string
40 "size": "tiny" string
48 "size": "tiny" string
56 "size": "tiny" string
64 "size": "small" string
72 "size": "tiny" string
80 "size": "small" string
[all …]
/netbsd-src/sys/arch/mips/mips/
H A Dcache_ls2.c56 ls2_icache_sync_range(register_t va, vsize_t size) in ls2_icache_sync_range()
82 ls2_icache_sync_range_index(vaddr_t va, vsize_t size) in ls2_icache_sync_range_index()
124 ls2_pdcache_inv_range(register_t va, vsize_t size) in ls2_pdcache_inv_range()
142 ls2_pdcache_wbinv_range(register_t va, vsize_t size) in ls2_pdcache_wbinv_range()
160 ls2_pdcache_wb_range(register_t va, vsize_t size) in ls2_pdcache_wb_range()
169 ls2_pdcache_wbinv_range_index(vaddr_t va, vsize_t size) in ls2_pdcache_wbinv_range_index()
218 ls2_sdcache_inv_range(register_t va, vsize_t size) in ls2_sdcache_inv_range()
238 ls2_sdcache_wbinv_range(register_t va, vsize_t size) in ls2_sdcache_wbinv_range()
258 ls2_sdcache_wb_range(register_t va, vsize_t size) in ls2_sdcache_wb_range()
267 ls2_sdcache_wbinv_range_index(vaddr_t va, vsize_t size) in ls2_sdcache_wbinv_range_index()
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dder_get.c48 unsigned *ret, size_t *size) in der_get_unsigned()
67 uint64_t *ret, size_t *size) in der_get_unsigned64()
86 int *ret, size_t *size) in der_get_integer()
109 int64_t *ret, size_t *size) in der_get_integer64()
131 size_t *val, size_t *size) in der_get_length()
164 der_get_boolean(const unsigned char *p, size_t len, int *data, size_t *size) in der_get_boolean()
178 heim_general_string *str, size_t *size) in der_get_general_string()
214 heim_utf8_string *str, size_t *size) in der_get_utf8string()
224 heim_printable_string *str, size_t *size) in der_get_printable_string()
244 heim_ia5_string *str, size_t *size) in der_get_ia5_string()
[all …]
H A Dder_put.c49 der_put_unsigned (unsigned char *p, size_t len, const unsigned *v, size_t *size) in der_put_unsigned()
81 der_put_unsigned64 (unsigned char *p, size_t len, const uint64_t *v, size_t *size) in der_put_unsigned64()
113 der_put_integer (unsigned char *p, size_t len, const int *v, size_t *size) in der_put_integer()
153 der_put_integer64 (unsigned char *p, size_t len, const int64_t *v, size_t *size) in der_put_integer64()
194 der_put_length (unsigned char *p, size_t len, size_t val, size_t *size) in der_put_length()
221 der_put_boolean(unsigned char *p, size_t len, const int *data, size_t *size) in der_put_boolean()
235 const heim_general_string *str, size_t *size) in der_put_general_string()
249 const heim_utf8_string *str, size_t *size) in der_put_utf8string()
256 const heim_printable_string *str, size_t *size) in der_put_printable_string()
263 const heim_ia5_string *str, size_t *size) in der_put_ia5_string()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_new_delete.cc64 void *operator new(__sanitizer::uptr size) { in operator new()
70 void *operator new[](__sanitizer::uptr size) { in operator new[]()
76 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) { in operator new()
82 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) { in operator new[]()
88 void *operator new(__sanitizer::uptr size, std::align_val_t align) { in operator new()
94 void *operator new[](__sanitizer::uptr size, std::align_val_t align) { in operator new[]()
101 void *operator new(__sanitizer::uptr size, std::align_val_t align, in operator new()
110 void *operator new[](__sanitizer::uptr size, std::align_val_t align, in operator new[]()
150 void operator delete(void *ptr, __sanitizer::uptr size) NOEXCEPT { in operator delete()
156 void operator delete[](void *ptr, __sanitizer::uptr size) NOEXCEPT { in operator delete[]()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_new_delete.cc62 void *operator new(__sanitizer::uptr size) { in operator new()
68 void *operator new[](__sanitizer::uptr size) { in operator new[]()
74 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) { in operator new()
80 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) { in operator new[]()
86 void *operator new(__sanitizer::uptr size, std::align_val_t align) { in operator new()
92 void *operator new[](__sanitizer::uptr size, std::align_val_t align) { in operator new[]()
99 void *operator new(__sanitizer::uptr size, std::align_val_t align, in operator new()
108 void *operator new[](__sanitizer::uptr size, std::align_val_t align, in operator new[]()
148 void operator delete(void *ptr, __sanitizer::uptr size) NOEXCEPT { in operator delete()
154 void operator delete[](void *ptr, __sanitizer::uptr size) NOEXCEPT { in operator delete[]()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_new_delete.cpp63 void *operator new(__sanitizer::uptr size) { in operator new()
69 void *operator new[](__sanitizer::uptr size) { in operator new[]()
75 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) { in operator new()
81 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) { in operator new[]()
87 void *operator new(__sanitizer::uptr size, std::align_val_t align) { in operator new()
93 void *operator new[](__sanitizer::uptr size, std::align_val_t align) { in operator new[]()
100 void *operator new(__sanitizer::uptr size, std::align_val_t align, in operator new()
109 void *operator new[](__sanitizer::uptr size, std::align_val_t align, in operator new[]()
149 void operator delete(void *ptr, __sanitizer::uptr size) NOEXCEPT { in operator delete()
155 void operator delete[](void *ptr, __sanitizer::uptr size) NOEXCEPT { in operator delete[]()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/tilepro/
H A Datomic.c67 #define __fetch_and_do(proto, type, size, opname, top, bottom) \ argument
76 #define __atomic_fetch_and_do(type, size, opname) \ argument
95 #define __sync_fetch_and_do(type, size, opname) \ argument
114 #define __do_and_fetch(proto, type, size, opname, op, op2, top, bottom) \ argument
123 #define __atomic_do_and_fetch(type, size, opname, op, op2) \ argument
142 #define __sync_do_and_fetch(type, size, opname, op, op2) \ argument
161 #define __atomic_exchange_methods(type, size) \ argument
188 #define __sync_exchange_methods(type, size) \ argument
230 #define __subword_cmpxchg_body(type, size, ptr, guess, val) \ argument
246 #define __atomic_subword_cmpxchg(type, size) \ argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/tilepro/
H A Datomic.c67 #define __fetch_and_do(proto, type, size, opname, top, bottom) \ argument
76 #define __atomic_fetch_and_do(type, size, opname) \ argument
95 #define __sync_fetch_and_do(type, size, opname) \ argument
114 #define __do_and_fetch(proto, type, size, opname, op, op2, top, bottom) \ argument
123 #define __atomic_do_and_fetch(type, size, opname, op, op2) \ argument
142 #define __sync_do_and_fetch(type, size, opname, op, op2) \ argument
161 #define __atomic_exchange_methods(type, size) \ argument
188 #define __sync_exchange_methods(type, size) \ argument
230 #define __subword_cmpxchg_body(type, size, ptr, guess, val) \ argument
246 #define __atomic_subword_cmpxchg(type, size) \ argument
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_new_delete.cc105 void *operator new(size_t size) in operator new()
108 void *operator new[](size_t size) in operator new[]()
111 void *operator new(size_t size, std::nothrow_t const&) in operator new()
114 void *operator new[](size_t size, std::nothrow_t const&) in operator new[]()
117 void *operator new(size_t size, std::align_val_t align) in operator new()
120 void *operator new[](size_t size, std::align_val_t align) in operator new[]()
123 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&) in operator new()
126 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const&) in operator new[]()
130 INTERCEPTOR(void *, _Znwm, size_t size) { in INTERCEPTOR()
133 INTERCEPTOR(void *, _Znam, size_t size) { in INTERCEPTOR()
[all …]
H A Dasan_poisoning.cc34 void PoisonShadow(uptr addr, uptr size, u8 value) { in PoisonShadow()
45 uptr size, in PoisonShadowPartialRightRedzone()
66 void FlushUnneededASanShadowMemory(uptr p, uptr size) { in FlushUnneededASanShadowMemory()
72 void AsanPoisonOrUnpoisonIntraObjectRedzone(uptr ptr, uptr size, bool poison) { in AsanPoisonOrUnpoisonIntraObjectRedzone()
108 void __asan_poison_memory_region(void const volatile *addr, uptr size) { in __asan_poison_memory_region()
148 void __asan_unpoison_memory_region(void const volatile *addr, uptr size) { in __asan_unpoison_memory_region()
182 uptr __asan_region_is_poisoned(uptr beg, uptr size) { in __asan_region_is_poisoned()
217 #define CHECK_SMALL_REGION(p, size, isWrite) \ argument
298 static void PoisonAlignedStackMemory(uptr addr, uptr size, bool do_poison) { in PoisonAlignedStackMemory()
321 void __asan_set_shadow_00(uptr addr, uptr size) { in __asan_set_shadow_00()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_new_delete.cc103 void *operator new(size_t size) in operator new()
106 void *operator new[](size_t size) in operator new[]()
109 void *operator new(size_t size, std::nothrow_t const&) in operator new()
112 void *operator new[](size_t size, std::nothrow_t const&) in operator new[]()
115 void *operator new(size_t size, std::align_val_t align) in operator new()
118 void *operator new[](size_t size, std::align_val_t align) in operator new[]()
121 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&) in operator new()
124 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const&) in operator new[]()
128 INTERCEPTOR(void *, _Znwm, size_t size) { in INTERCEPTOR()
131 INTERCEPTOR(void *, _Znam, size_t size) { in INTERCEPTOR()
[all …]
H A Dasan_poisoning.cc32 void PoisonShadow(uptr addr, uptr size, u8 value) { in PoisonShadow()
43 uptr size, in PoisonShadowPartialRightRedzone()
64 void FlushUnneededASanShadowMemory(uptr p, uptr size) { in FlushUnneededASanShadowMemory()
70 void AsanPoisonOrUnpoisonIntraObjectRedzone(uptr ptr, uptr size, bool poison) { in AsanPoisonOrUnpoisonIntraObjectRedzone()
106 void __asan_poison_memory_region(void const volatile *addr, uptr size) { in __asan_poison_memory_region()
146 void __asan_unpoison_memory_region(void const volatile *addr, uptr size) { in __asan_unpoison_memory_region()
180 uptr __asan_region_is_poisoned(uptr beg, uptr size) { in __asan_region_is_poisoned()
215 #define CHECK_SMALL_REGION(p, size, isWrite) \ argument
296 static void PoisonAlignedStackMemory(uptr addr, uptr size, bool do_poison) { in PoisonAlignedStackMemory()
319 void __asan_set_shadow_00(uptr addr, uptr size) { in __asan_set_shadow_00()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_new_delete.cpp94 void *operator new(size_t size) in operator new()
97 void *operator new[](size_t size) in operator new[]()
100 void *operator new(size_t size, std::nothrow_t const&) in operator new()
103 void *operator new[](size_t size, std::nothrow_t const&) in operator new[]()
106 void *operator new(size_t size, std::align_val_t align) in operator new()
109 void *operator new[](size_t size, std::align_val_t align) in operator new[]()
112 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&) in operator new()
115 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const&) in operator new[]()
119 INTERCEPTOR(void *, _Znwm, size_t size) { in INTERCEPTOR()
122 INTERCEPTOR(void *, _Znam, size_t size) { in INTERCEPTOR()
[all …]
/netbsd-src/sys/arch/macppc/stand/ofwboot/
H A Dloadfile_machdep.c51 ofw_claimphys(paddr_t pa, vsize_t size) in ofw_claimphys()
100 ofw_releasephys(paddr_t pa, vsize_t size) in ofw_releasephys()
131 ofw_claimvirt(vaddr_t va, vsize_t size) in ofw_claimvirt()
159 ofw_releasevirt(vaddr_t va, vsize_t size) in ofw_releasevirt()
177 ofw_map(vaddr_t va, paddr_t pa, vsize_t size) in ofw_map()
203 ofw_create_mapping(vaddr_t va, paddr_t pa, vsize_t size) in ofw_create_mapping()
255 kmapping_enter(vaddr_t va, vsize_t size) in kmapping_enter()
424 macppc_read(int f, void *addr, size_t size) in macppc_read()
433 macppc_memcpy(void *dst, const void *src, size_t size) in macppc_memcpy()
442 macppc_memset(void *dst, int c, size_t size) in macppc_memset()
/netbsd-src/external/lgpl3/gmp/dist/mpn/generic/
H A Dtoom_interpolate_16pts.c155 #define mpn_divexact_by255(dst,src,size) \ argument
159 #define mpn_divexact_by255(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(255),BINVERT_255,0) argument
161 #define mpn_divexact_by255(dst,src,size) mpn_divexact_1(dst,src,size,CNST_LIMB(255)) argument
168 #define mpn_divexact_by255x4(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(255),BINVERT_255… argument
170 #define mpn_divexact_by255x4(dst,src,size) mpn_divexact_1(dst,src,size,CNST_LIMB(255)<<2) argument
176 #define mpn_divexact_by9x16(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(9),BINVERT_9,4) argument
178 #define mpn_divexact_by9x16(dst,src,size) mpn_divexact_1(dst,src,size,CNST_LIMB(9)<<4) argument
184 #define mpn_divexact_by42525x16(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(42525),BINVER… argument
186 #define mpn_divexact_by42525x16(dst,src,size) mpn_divexact_1(dst,src,size,CNST_LIMB(42525)<<4) argument
192 #define mpn_divexact_by2835x64(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(2835),BINVERT_… argument
[all …]
/netbsd-src/sys/external/bsd/sljit/dist/sljit_src/
H A DsljitExecAllocator.c86 static SLJIT_INLINE void* alloc_chunk(sljit_uw size) in alloc_chunk()
91 static SLJIT_INLINE void free_chunk(void *chunk, sljit_uw size) in free_chunk()
107 static SLJIT_INLINE void* alloc_chunk(sljit_uw size) in alloc_chunk()
129 static SLJIT_INLINE void free_chunk(void *chunk, sljit_uw size) in free_chunk()
147 sljit_uw size; member
155 sljit_uw size; member
163 #define ALIGN_SIZE(size) (((size) + sizeof(struct block_header) + 7) & ~7) argument
169 static SLJIT_INLINE void sljit_insert_free_block(struct free_block *free_block, sljit_uw size) in sljit_insert_free_block()
194 SLJIT_API_FUNC_ATTRIBUTE void* sljit_malloc_exec(sljit_uw size) in sljit_malloc_exec()
/netbsd-src/external/cddl/osnet/sys/kern/
H A Dkobj.c73 kobj_free(void *address, size_t size) in kobj_free()
80 kobj_alloc(size_t size, int flag) in kobj_alloc()
87 kobj_zalloc(size_t size, int flag) in kobj_zalloc()
120 kobj_get_filesize_vnode(struct _buf *file, uint64_t *size) in kobj_get_filesize_vnode()
132 kobj_get_filesize(struct _buf *file, uint64_t *size) in kobj_get_filesize()
139 kobj_read_file_vnode(struct _buf *file, char *buf, unsigned size, unsigned off) in kobj_read_file_vnode()
150 kobj_read_file(struct _buf *file, char *buf, unsigned size, unsigned off) in kobj_read_file()

12345678910>>...186