| /freebsd-12-stable/usr.bin/dc/ |
| D | stack.c | 38 stack_init(struct stack *stack) in stack_init() 47 stack_empty(const struct stack *stack) in stack_empty() 101 stack_size(const struct stack *stack) in stack_size() 108 stack_dup(struct stack *stack) in stack_dup() 122 stack_swap(struct stack *stack) in stack_swap() 136 stack_grow(struct stack *stack) in stack_grow() 149 stack_pushnumber(struct stack *stack, struct number *b) in stack_pushnumber() 159 stack_pushstring(struct stack *stack, char *string) in stack_pushstring() 169 stack_push(struct stack *stack, struct value *v) in stack_push() 189 stack_tos(const struct stack *stack) in stack_tos() [all …]
|
| D | bcode.h | 59 struct stack { struct 60 struct value *stack; member 61 ssize_t size; 62 ssize_t sp;
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_allocator_report.cpp | 39 const StackTrace* const stack; member in __sanitizer::ScopedAllocatorErrorReport 44 const StackTrace *stack) { in ReportCallocOverflow() 55 const StackTrace *stack) { in ReportReallocArrayOverflow() 66 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack) { in ReportPvallocOverflow() 77 const StackTrace *stack) { in ReportInvalidAllocationAlignment() 87 const StackTrace *stack) { in ReportInvalidAlignedAllocAlignment() 105 const StackTrace *stack) { in ReportInvalidPosixMemalignAlignment() 119 const StackTrace *stack) { in ReportAllocationSizeTooBig() 128 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack) { in ReportOutOfMemory() 137 void NORETURN ReportRssLimitExceeded(const StackTrace *stack) { in ReportRssLimitExceeded()
|
| D | sanitizer_symbolizer_report.cpp | 73 void ReportErrorSummary(const char *error_type, const StackTrace *stack, in ReportErrorSummary() 100 BufferedStackTrace *stack = stack_buffer.data(); in ReportMmapWriteExec() local 182 BufferedStackTrace *stack = stack_buffer.data(); in ReportStackOverflowImpl() local 221 BufferedStackTrace *stack = stack_buffer.data(); in ReportDeadlySignalImpl() local
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/lsan/ |
| D | lsan_allocator.cpp | 60 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() 107 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) { in Calloc() 124 void *Reallocate(const StackTrace &stack, void *p, uptr new_size, in Reallocate() 152 const StackTrace &stack) { in lsan_posix_memalign() 167 void *lsan_aligned_alloc(uptr alignment, uptr size, const StackTrace &stack) { in lsan_aligned_alloc() 177 void *lsan_memalign(uptr alignment, uptr size, const StackTrace &stack) { in lsan_memalign() 187 void *lsan_malloc(uptr size, const StackTrace &stack) { in lsan_malloc() 195 void *lsan_realloc(void *p, uptr size, const StackTrace &stack) { in lsan_realloc() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| D | hwasan_allocator.cpp | 121 static void *HwasanAllocate(StackTrace *stack, uptr orig_size, uptr alignment, in HwasanAllocate() 204 static void HwasanDeallocate(StackTrace *stack, void *tagged_ptr) { in HwasanDeallocate() 279 static void *HwasanReallocate(StackTrace *stack, void *tagged_ptr_old, in HwasanReallocate() 298 static void *HwasanCalloc(StackTrace *stack, uptr nmemb, uptr size) { in HwasanCalloc() 331 void *hwasan_malloc(uptr size, StackTrace *stack) { in hwasan_malloc() 335 void *hwasan_calloc(uptr nmemb, uptr size, StackTrace *stack) { in hwasan_calloc() 339 void *hwasan_realloc(void *ptr, uptr size, StackTrace *stack) { in hwasan_realloc() 349 void *hwasan_reallocarray(void *ptr, uptr nmemb, uptr size, StackTrace *stack) { in hwasan_reallocarray() 359 void *hwasan_valloc(uptr size, StackTrace *stack) { in hwasan_valloc() 364 void *hwasan_pvalloc(uptr size, StackTrace *stack) { in hwasan_pvalloc() [all …]
|
| D | hwasan_malloc_bisect.h | 18 static u32 malloc_hash(StackTrace *stack, uptr orig_size) { in malloc_hash() 31 static inline bool malloc_bisect(StackTrace *stack, uptr orig_size) { in malloc_bisect()
|
| /freebsd-12-stable/sys/sys/ |
| D | _stack.h | 36 struct stack { struct 37 int depth; 38 vm_offset_t pcs[STACK_MAX];
|
| /freebsd-12-stable/contrib/bsnmp/snmp_mibII/ |
| D | mibII_ifstack.c | 38 struct mibifstack *stack; in mib_ifstack_create() local 57 struct mibifstack *stack; in mib_ifstack_delete() local 73 struct mibifstack *stack; in op_ifstack() local
|
| /freebsd-12-stable/sys/dev/smartpqi/ |
| D | smartpqi_tag.c | 157 pqisrc_init_taglist(pqisrc_softstate_t *softs, lockless_stack_t *stack, in pqisrc_init_taglist() 196 pqisrc_destroy_taglist(pqisrc_softstate_t *softs, lockless_stack_t *stack) in pqisrc_destroy_taglist() 214 pqisrc_put_tag(lockless_stack_t *stack, uint32_t index) in pqisrc_put_tag() 251 pqisrc_get_tag(lockless_stack_t *stack) in pqisrc_get_tag()
|
| /freebsd-12-stable/lib/libthr/thread/ |
| D | thr_stack.c | 45 struct stack { struct 47 size_t stacksize; /* Stack size (rounded up). */ argument 49 void *stackaddr; /* Stack address. */ argument 53 * Default sized (stack and guard) spare stack queue. Stacks are cached argument
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/msan/ |
| D | msan_poisoning.cpp | 43 StackTrace *stack) { in CopyOrigin() 98 StackTrace *stack) { in ReverseCopyOrigin() 154 StackTrace *stack) { in MoveOrigin() 167 StackTrace *stack) { in MoveShadowAndOrigin() 180 StackTrace *stack) { in CopyShadowAndOrigin() 191 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack) { in CopyMemory() 240 void PoisonMemory(const void *dst, uptr size, StackTrace *stack) { in PoisonMemory()
|
| D | msan_allocator.cpp | 154 static void *MsanAllocate(StackTrace *stack, uptr size, uptr alignment, in MsanAllocate() 196 void MsanDeallocate(StackTrace *stack, void *p) { in MsanDeallocate() 223 static void *MsanReallocate(StackTrace *stack, void *old_p, uptr new_size, in MsanReallocate() 248 static void *MsanCalloc(StackTrace *stack, uptr nmemb, uptr size) { in MsanCalloc() 265 void *msan_malloc(uptr size, StackTrace *stack) { in msan_malloc() 269 void *msan_calloc(uptr nmemb, uptr size, StackTrace *stack) { in msan_calloc() 273 void *msan_realloc(void *ptr, uptr size, StackTrace *stack) { in msan_realloc() 283 void *msan_reallocarray(void *ptr, uptr nmemb, uptr size, StackTrace *stack) { in msan_reallocarray() 293 void *msan_valloc(uptr size, StackTrace *stack) { in msan_valloc() 297 void *msan_pvalloc(uptr size, StackTrace *stack) { in msan_pvalloc() [all …]
|
| D | msan_origin.h | 85 Origin getNextChainedOrigin(StackTrace *stack) const { in getNextChainedOrigin() 102 static Origin CreateHeapOrigin(StackTrace *stack) { in CreateHeapOrigin() 109 static Origin CreateChainedOrigin(Origin prev, StackTrace *stack) { in CreateChainedOrigin()
|
| D | msan_report.cpp | 64 StackTrace stack; in DescribeOrigin() local 75 StackTrace stack = o.getStackTraceForHeapOrigin(); in DescribeOrigin() local 98 void ReportUMR(StackTrace *stack, u32 origin) { in ReportUMR() 114 void ReportExpectedUMRNotFound(StackTrace *stack) { in ReportExpectedUMRNotFound()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/asan/ |
| D | asan_report.cpp | 250 void ReportMallocUsableSizeNotOwned(uptr addr, BufferedStackTrace *stack) { in ReportMallocUsableSizeNotOwned() 257 BufferedStackTrace *stack) { in ReportSanitizerGetAllocatedSizeNotOwned() 264 void ReportCallocOverflow(uptr count, uptr size, BufferedStackTrace *stack) { in ReportCallocOverflow() 271 BufferedStackTrace *stack) { in ReportReallocArrayOverflow() 277 void ReportPvallocOverflow(uptr size, BufferedStackTrace *stack) { in ReportPvallocOverflow() 284 BufferedStackTrace *stack) { in ReportInvalidAllocationAlignment() 292 BufferedStackTrace *stack) { in ReportInvalidAlignedAllocAlignment() 300 BufferedStackTrace *stack) { in ReportInvalidPosixMemalignAlignment() 308 BufferedStackTrace *stack) { in ReportAllocationSizeTooBig() 315 void ReportRssLimitExceeded(BufferedStackTrace *stack) { in ReportRssLimitExceeded() [all …]
|
| D | asan_errors.h | 128 const BufferedStackTrace *stack; member 140 const BufferedStackTrace *stack; member 153 const BufferedStackTrace *stack; member 168 const BufferedStackTrace *stack; member 183 const BufferedStackTrace *stack; member 195 const BufferedStackTrace *stack; member 208 const BufferedStackTrace *stack; member 223 const BufferedStackTrace *stack; member 236 const BufferedStackTrace *stack; member 253 const BufferedStackTrace *stack; member [all …]
|
| D | asan_allocator.cpp | 55 u32 tid, u32 stack) { in AtomicContextStore() 63 u32 &tid, u32 &stack) { in AtomicContextLoad() 120 void SetAllocContext(u32 tid, u32 stack) { in SetAllocContext() 133 void SetFreeContext(u32 tid, u32 stack) { in SetFreeContext() 893 u32 stack = 0; in AllocTid() local 902 u32 stack = 0; in FreeTid() local 920 u32 stack = 0; in GetAllocStackId() local 929 u32 stack = 0; in GetFreeStackId() local 970 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type) { in asan_free() 975 BufferedStackTrace *stack, AllocType alloc_type) { in asan_delete() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| D | dfsan_allocator.cpp | 87 BufferedStackTrace stack; in DFsanAllocate() local 104 BufferedStackTrace stack; in DFsanAllocate() local 161 BufferedStackTrace stack; in DFsanCalloc() local 200 BufferedStackTrace stack; in dfsan_reallocarray() local 217 BufferedStackTrace stack; in dfsan_pvalloc() local 230 BufferedStackTrace stack; in dfsan_aligned_alloc() local 241 BufferedStackTrace stack; in dfsan_memalign() local 251 BufferedStackTrace stack; in dfsan_posix_memalign() local
|
| /freebsd-12-stable/sys/contrib/ck/include/ |
| D | ck_stack.h | 56 struct ck_stack_entry *stack; in ck_stack_push_upmc() local 80 struct ck_stack_entry *stack; in ck_stack_trypush_upmc() local 275 struct ck_stack_entry *stack; in ck_stack_push_mpnc() local 334 ck_stack_init(struct ck_stack *stack) in ck_stack_init() 348 #define CK_STACK_FOREACH(stack, entry) \ argument 352 #define CK_STACK_FOREACH_SAFE(stack, entry, T) \ argument
|
| /freebsd-12-stable/contrib/gcc/ |
| D | tree-ssa-threadedge.c | 117 remove_temporary_equivalences (VEC(tree, heap) **stack) in remove_temporary_equivalences() 140 record_temporary_equivalence (tree x, tree y, VEC(tree, heap) **stack) in record_temporary_equivalence() 163 record_temporary_equivalences_from_phis (edge e, VEC(tree, heap) **stack) in record_temporary_equivalences_from_phis() 212 record_temporary_equivalences_from_stmts_at_dest (edge e, in record_temporary_equivalences_from_stmts_at_dest() 494 thread_across_edge (tree dummy_cond, in thread_across_edge()
|
| /freebsd-12-stable/contrib/unbound/services/ |
| D | modstack.c | 92 modstack_init(struct module_stack* stack) in modstack_init() 99 modstack_config(struct module_stack* stack, const char* module_conf) in modstack_config()
|
| /freebsd-12-stable/contrib/ncurses/ncurses/tinfo/ |
| D | lib_tparm.c | 178 TPS(stack)[TPS(stack_ptr)].num_type = TRUE; in npush() local 179 TPS(stack)[TPS(stack_ptr)].data.num = x; in npush() local 193 if (TPS(stack)[TPS(stack_ptr)].num_type) in npop() local 206 TPS(stack)[TPS(stack_ptr)].num_type = FALSE; in spush() local 207 TPS(stack)[TPS(stack_ptr)].data.str = x; in spush() local
|
| /freebsd-12-stable/sys/arm64/cloudabi64/ |
| D | cloudabi64_sysvec.c | 52 unsigned long stack) in cloudabi64_proc_setregs() 143 stack_t stack; in cloudabi64_thread_setregs() local
|
| /freebsd-12-stable/sys/arm/cloudabi32/ |
| D | cloudabi32_sysvec.c | 52 unsigned long stack) in cloudabi32_proc_setregs() 151 stack_t stack; in cloudabi32_thread_setregs() local
|