Home
last modified time | relevance | path

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

12345678910>>...129

/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dwrappers_cpp.cpp24 INTERFACE WEAK void *operator new(size_t size) { in operator new()
27 INTERFACE WEAK void *operator new[](size_t size) { in operator new[]()
30 INTERFACE WEAK void *operator new(size_t size, in operator new()
34 INTERFACE WEAK void *operator new[](size_t size, in operator new[]()
38 INTERFACE WEAK void *operator new(size_t size, std::align_val_t align) { in operator new()
42 INTERFACE WEAK void *operator new[](size_t size, std::align_val_t align) { in operator new[]()
46 INTERFACE WEAK void *operator new(size_t size, std::align_val_t align, in operator new()
51 INTERFACE WEAK void *operator new[](size_t size, std::align_val_t align, in operator new[]()
71 INTERFACE WEAK void operator delete(void *ptr, size_t size) NOEXCEPT { in operator delete()
74 INTERFACE WEAK void operator delete[](void *ptr, size_t size) NOEXCEPT { in operator delete[]()
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/hash_fn/
H A Dranged_hash_fn.hpp105 ranged_hash_fn(size_type size) in ranged_hash_fn()
110 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn) in ranged_hash_fn()
116 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_hash_fn()
133 notify_resized(size_type size) in notify_resized()
191 ranged_hash_fn(size_type size) in ranged_hash_fn()
196 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn) : in ranged_hash_fn()
202 ranged_hash_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_hash_fn()
219 notify_resized(size_type size) in notify_resized()
280 ranged_hash_fn(size_type size) in ranged_hash_fn()
285 ranged_hash_fn(size_type size, const Comb_Hash_Fn& r_comb_hash_fn) : in ranged_hash_fn()
[all …]
H A Dranged_probe_fn.hpp113 ranged_probe_fn(size_type size) in ranged_probe_fn()
118 ranged_probe_fn(size_type size, const Hash_Fn& r_hash_fn) in ranged_probe_fn()
124 ranged_probe_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_probe_fn()
131 ranged_probe_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_probe_fn()
149 notify_resized(size_type size) in notify_resized()
223 ranged_probe_fn(size_type size) in ranged_probe_fn()
228 ranged_probe_fn(size_type size, const Hash_Fn& r_hash_fn) in ranged_probe_fn()
234 ranged_probe_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_probe_fn()
241 ranged_probe_fn(size_type size, const Hash_Fn& r_hash_fn, in ranged_probe_fn()
259 notify_resized(size_type size) in notify_resized()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddfsan_new_delete.cpp46 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()
62 void *operator new[](size_t size, std::align_val_t align) { in operator new[]()
66 void *operator new(size_t size, std::align_val_t align, in operator new()
71 void *operator new[](size_t size, std::align_val_t align, in operator new[]()
93 void operator delete(void *ptr, size_t size)NOEXCEPT { OPERATOR_DELETE_BODY; } in operator delete()
95 void operator delete[](void *ptr, size_t size) NOEXCEPT { in operator delete[]()
[all …]
H A Ddfsan_allocator.cpp84 static void *DFsanAllocate(uptr size, uptr alignment, bool zeroise) { in DFsanAllocate()
132 uptr size = meta->requested_size; in dfsan_deallocate() local
167 void *DFsanCalloc(uptr nmemb, uptr size) { in DFsanCalloc()
187 void *dfsan_malloc(uptr size) { in dfsan_malloc()
191 void *dfsan_calloc(uptr nmemb, uptr size) { in dfsan_calloc()
195 void *dfsan_realloc(void *ptr, uptr size) { in dfsan_realloc()
205 void *dfsan_reallocarray(void *ptr, uptr nmemb, uptr size) { in dfsan_reallocarray()
216 void *dfsan_valloc(uptr size) { in dfsan_valloc()
221 void *dfsan_pvalloc(uptr size) { in dfsan_pvalloc()
235 void *dfsan_aligned_alloc(uptr alignment, uptr size) { in dfsan_aligned_alloc()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/msan/
H A Dmsan_new_delete.cpp45 void *operator new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new()
47 void *operator new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); } in operator new[]()
49 void *operator new(size_t size, std::nothrow_t const&) { in operator new()
53 void *operator new[](size_t size, std::nothrow_t const&) { in operator new[]()
57 void *operator new(size_t size, std::align_val_t align) in operator new()
60 void *operator new[](size_t size, std::align_val_t align) in operator new[]()
63 void *operator new(size_t size, std::align_val_t align, std::nothrow_t const&) in operator new()
66 void *operator new[](size_t size, std::align_val_t align, std::nothrow_t const&) in operator new[]()
84 void operator delete(void *ptr, size_t size) NOEXCEPT { OPERATOR_DELETE_BODY; } in operator delete()
86 void operator delete[](void *ptr, size_t size) NOEXCEPT in operator delete[]()
[all …]
H A Dmsan_poisoning.cpp26 u32 GetOriginIfPoisoned(uptr addr, uptr size) { in GetOriginIfPoisoned()
33 void SetOriginIfPoisoned(uptr addr, uptr src_shadow, uptr size, in SetOriginIfPoisoned()
43 void CopyOrigin(const void *dst, const void *src, uptr size, in CopyOrigin()
98 void ReverseCopyOrigin(const void *dst, const void *src, uptr size, in ReverseCopyOrigin()
154 void MoveOrigin(const void *dst, const void *src, uptr size, in MoveOrigin()
167 void MoveShadowAndOrigin(const void *dst, const void *src, uptr size, in MoveShadowAndOrigin()
180 void CopyShadowAndOrigin(const void *dst, const void *src, uptr size, in CopyShadowAndOrigin()
192 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack) { in CopyMemory()
197 void SetShadow(const void *ptr, uptr size, u8 value) { in SetShadow()
223 void SetOrigin(const void *dst, uptr size, u32 origin) { in SetOrigin()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/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()
H A Dhwasan_new_delete.cpp63 INTERCEPTOR_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE void *operator new(size_t size) { in operator new()
67 size_t size) { in operator new[]()
71 size_t size, std::nothrow_t const &) { in operator new()
75 size_t size, std::nothrow_t const &) { in operator new[]()
105 size_t size, std::align_val_t align) { in operator new()
109 size_t size, std::align_val_t align) { in operator new[]()
113 size_t size, std::align_val_t align, std::nothrow_t const &) { in operator new()
117 size_t size, std::align_val_t align, std::nothrow_t const &) { in operator new[]()
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
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 …]
H A Dtsan_malloc_mac.cpp27 #define COMMON_MALLOC_MEMALIGN(alignment, size) \ argument
30 #define COMMON_MALLOC_MALLOC(size) \ argument
34 #define COMMON_MALLOC_REALLOC(ptr, size) \ argument
38 #define COMMON_MALLOC_CALLOC(count, size) \ argument
42 #define COMMON_MALLOC_POSIX_MEMALIGN(memptr, alignment, size) \ argument
51 #define COMMON_MALLOC_VALLOC(size) \ argument
/openbsd-src/gnu/llvm/compiler-rt/lib/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 …]
H A Dasan_poisoning.cpp35 void PoisonShadow(uptr addr, uptr size, u8 value) { in PoisonShadow()
46 uptr size, in PoisonShadowPartialRightRedzone()
67 void AsanPoisonOrUnpoisonIntraObjectRedzone(uptr ptr, uptr size, bool poison) { in AsanPoisonOrUnpoisonIntraObjectRedzone()
103 void __asan_poison_memory_region(void const volatile *addr, uptr size) { in __asan_poison_memory_region()
143 void __asan_unpoison_memory_region(void const volatile *addr, uptr size) { in __asan_unpoison_memory_region()
177 uptr __asan_region_is_poisoned(uptr beg, uptr size) { in __asan_region_is_poisoned()
207 #define CHECK_SMALL_REGION(p, size, isWrite) \ argument
288 static void PoisonAlignedStackMemory(uptr addr, uptr size, bool do_poison) { in PoisonAlignedStackMemory()
311 void __asan_set_shadow_00(uptr addr, uptr size) { in __asan_set_shadow_00()
315 void __asan_set_shadow_01(uptr addr, uptr size) { in __asan_set_shadow_01()
[all …]
H A Dasan_interceptors_memintrinsics.h21 DECLARE_REAL(void *, memcpy, void *to, const void *from, uptr size) in DECLARE_REAL()
55 #define ACCESS_MEMORY_RANGE(ctx, offset, size, isWrite) \ in DECLARE_REAL() argument
85 #define ASAN_MEMCPY_IMPL(ctx, to, from, size) \ in DECLARE_REAL() argument
100 #define ASAN_MEMSET_IMPL(ctx, block, c, size) \ in DECLARE_REAL() argument
110 #define ASAN_MEMMOVE_IMPL(ctx, to, from, size) \ in DECLARE_REAL() argument
119 #define ASAN_READ_RANGE(ctx, offset, size) \ in DECLARE_REAL() argument
121 #define ASAN_WRITE_RANGE(ctx, offset, size) \ in DECLARE_REAL() argument
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dmalloc.h68 mallocSize size; member
129 #define malloc_new_ks(pool,name,size) \ argument
131 #define malloc_new_ksr(pool,name,size) \ argument
133 #define malloc_new_kp(pool,name,size) \ argument
135 #define malloc_new_kpr(pool,name,size) \ argument
137 #define malloc_new_us(pool,name,size) \ argument
139 #define malloc_new_usr(pool,name,size) \ argument
141 #define malloc_new_zks(pool,name,size,z) \ argument
143 #define malloc_new_zksr(pool,name,size,z) \ argument
145 #define malloc_new_zkp(pool,name,size,z) \ argument
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_new_delete.cpp47 void *operator new(size_t size) { in operator new()
51 void *operator new[](size_t size) { in operator new[]()
55 void *operator new(size_t size, std::nothrow_t const &) { in operator new()
59 void *operator new[](size_t size, std::nothrow_t const &) { in operator new[]()
63 void *operator new(size_t size, std::align_val_t align) { in operator new()
67 void *operator new[](size_t size, std::align_val_t align) { in operator new[]()
71 void *operator new(size_t size, std::align_val_t align, in operator new()
76 void *operator new[](size_t size, std::align_val_t align, in operator new[]()
112 void operator delete(void *ptr, size_t size)NOEXCEPT { in operator delete()
116 void operator delete[](void *ptr, size_t size) NOEXCEPT { in operator delete[]()
[all …]
H A Dmemprof_interceptors_memintrinsics.h21 DECLARE_REAL(void *, memcpy, void *to, const void *from, uptr size) in DECLARE_REAL()
30 #define ACCESS_MEMORY_RANGE(offset, size) \ in DECLARE_REAL() argument
38 #define MEMPROF_MEMCPY_IMPL(to, from, size) \ in DECLARE_REAL() argument
52 #define MEMPROF_MEMSET_IMPL(block, c, size) \ in DECLARE_REAL() argument
64 #define MEMPROF_MEMMOVE_IMPL(to, from, size) \ in DECLARE_REAL() argument
74 #define MEMPROF_READ_RANGE(offset, size) ACCESS_MEMORY_RANGE(offset, size) in DECLARE_REAL() argument
75 #define MEMPROF_WRITE_RANGE(offset, size) ACCESS_MEMORY_RANGE(offset, size) in DECLARE_REAL() argument
H A Dmemprof_malloc_linux.cpp53 INTERCEPTOR(void *, malloc, uptr size) { in INTERCEPTOR()
61 INTERCEPTOR(void *, calloc, uptr nmemb, uptr size) { in INTERCEPTOR()
69 INTERCEPTOR(void *, realloc, void *ptr, uptr size) { in INTERCEPTOR()
78 INTERCEPTOR(void *, reallocarray, void *ptr, uptr nmemb, uptr size) { in INTERCEPTOR()
86 INTERCEPTOR(void *, memalign, uptr boundary, uptr size) { in INTERCEPTOR()
91 INTERCEPTOR(void *, __libc_memalign, uptr boundary, uptr size) { in INTERCEPTOR()
100 INTERCEPTOR(void *, aligned_alloc, uptr boundary, uptr size) { in INTERCEPTOR()
130 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) { in INTERCEPTOR()
135 INTERCEPTOR(void *, valloc, uptr size) { in INTERCEPTOR()
141 INTERCEPTOR(void *, pvalloc, uptr size) { in INTERCEPTOR()
/openbsd-src/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp60 static void RegisterAllocation(const StackTrace &stack, void *p, uptr size) { in RegisterAllocation()
77 static void *ReportAllocationSizeTooBig(uptr size, const StackTrace &stack) { in ReportAllocationSizeTooBig()
85 void *Allocate(const StackTrace &stack, uptr size, uptr alignment, in Allocate()
111 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) { in Calloc()
156 int lsan_posix_memalign(void **memptr, uptr alignment, uptr size, in lsan_posix_memalign()
172 void *lsan_aligned_alloc(uptr alignment, uptr size, const StackTrace &stack) { in lsan_aligned_alloc()
182 void *lsan_memalign(uptr alignment, uptr size, const StackTrace &stack) { in lsan_memalign()
192 void *lsan_malloc(uptr size, const StackTrace &stack) { in lsan_malloc()
200 void *lsan_realloc(void *p, uptr size, const StackTrace &stack) { in lsan_realloc()
204 void *lsan_reallocarray(void *ptr, uptr nmemb, uptr size, in lsan_reallocarray()
[all …]
H A Dlsan_interceptors.cpp71 INTERCEPTOR(void*, malloc, uptr size) { in INTERCEPTOR()
86 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) { in INTERCEPTOR()
94 INTERCEPTOR(void *, realloc, void *ptr, uptr size) { in INTERCEPTOR()
102 INTERCEPTOR(void*, reallocarray, void *q, uptr nmemb, uptr size) { in INTERCEPTOR()
108 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) { in INTERCEPTOR()
114 INTERCEPTOR(void*, valloc, uptr size) { in INTERCEPTOR()
122 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) { in INTERCEPTOR()
133 INTERCEPTOR(void *, __libc_memalign, uptr alignment, uptr size) { in INTERCEPTOR()
146 INTERCEPTOR(void*, aligned_alloc, uptr alignment, uptr size) { in INTERCEPTOR()
189 INTERCEPTOR(void*, pvalloc, uptr size) { in INTERCEPTOR()
[all …]
H A Dlsan_malloc_mac.cpp27 #define COMMON_MALLOC_MEMALIGN(alignment, size) \ argument
30 #define COMMON_MALLOC_MALLOC(size) \ argument
33 #define COMMON_MALLOC_REALLOC(ptr, size) \ argument
36 #define COMMON_MALLOC_CALLOC(count, size) \ argument
39 #define COMMON_MALLOC_POSIX_MEMALIGN(memptr, alignment, size) \ argument
42 #define COMMON_MALLOC_VALLOC(size) \ argument
/openbsd-src/sys/dev/pci/drm/
H A Dhdmi.c35 static u8 hdmi_infoframe_checksum(const u8 *ptr, size_t size) in hdmi_infoframe_checksum()
47 static void hdmi_infoframe_set_checksum(void *buffer, size_t size) in hdmi_infoframe_set_checksum()
111 void *buffer, size_t size) in hdmi_avi_infoframe_pack_only()
202 void *buffer, size_t size) in hdmi_avi_infoframe_pack()
282 void *buffer, size_t size) in hdmi_spd_infoframe_pack_only()
336 void *buffer, size_t size) in hdmi_spd_infoframe_pack()
428 void *buffer, size_t size) in hdmi_audio_infoframe_pack_only()
477 void *buffer, size_t size) in hdmi_audio_infoframe_pack()
612 void *buffer, size_t size) in hdmi_vendor_infoframe_pack_only()
675 void *buffer, size_t size) in hdmi_vendor_infoframe_pack()
[all …]
/openbsd-src/regress/sys/fileops/
H A Dfileops.c39 gen_data(void *buf, size_t size, uint32_t seed) in gen_data()
50 check_data(const void *buf, size_t size, uint32_t seed) in check_data()
63 check_zero(const void *buf, size_t size) in check_zero()
92 c_write(void *buf, size_t size) in c_write()
100 c_read(void *buf, size_t size) in c_read()
134 c_mmap(size_t size) in c_mmap()
145 c_munmap(size_t size) in c_munmap()
161 check_read(size_t size, int hole) in check_read()
180 check_mmap(size_t size, int hole) in check_mmap()
/openbsd-src/sbin/pfctl/
H A Dpfctl_radix.c88 pfr_add_tables(struct pfr_table *tbl, int size, int *nadd, int flags) in pfr_add_tables() argument
109 pfr_del_tables(struct pfr_table *tbl, int size, int *ndel, int flags) in pfr_del_tables() argument
130 pfr_get_tables(struct pfr_table *filter, struct pfr_table *tbl, int *size, in pfr_get_tables() argument
153 pfr_get_tstats(struct pfr_table * filter,struct pfr_tstats * tbl,int * size,int flags) pfr_get_tstats() argument
195 pfr_add_addrs(struct pfr_table * tbl,struct pfr_addr * addr,int size,int * nadd,int flags) pfr_add_addrs() argument
218 pfr_del_addrs(struct pfr_table * tbl,struct pfr_addr * addr,int size,int * ndel,int flags) pfr_del_addrs() argument
241 pfr_set_addrs(struct pfr_table * tbl,struct pfr_addr * addr,int size,int * size2,int * nadd,int * ndel,int * nchange,int flags) pfr_set_addrs() argument
271 pfr_get_addrs(struct pfr_table * tbl,struct pfr_addr * addr,int * size,int flags) pfr_get_addrs() argument
294 pfr_get_astats(struct pfr_table * tbl,struct pfr_astats * addr,int * size,int flags) pfr_get_astats() argument
317 pfr_clr_tstats(struct pfr_table * tbl,int size,int * nzero,int flags) pfr_clr_tstats() argument
338 pfr_tst_addrs(struct pfr_table * tbl,struct pfr_addr * addr,int size,int * nmatch,int flags) pfr_tst_addrs() argument
361 pfr_ina_define(struct pfr_table * tbl,struct pfr_addr * addr,int size,int * nadd,int * naddr,int ticket,int flags) pfr_ina_define() argument
390 pfi_get_ifaces(const char * filter,struct pfi_kif * buf,int * size) pfi_get_ifaces() argument
[all...]

12345678910>>...129