Home
last modified time | relevance | path

Searched defs:stack (Results 1 – 25 of 227) sorted by relevance

12345678910

/freebsd-12.1/usr.bin/dc/
H A Dstack.c38 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()
189 stack_tos(const struct stack *stack) in stack_tos()
212 stack_pop(struct stack *stack) in stack_pop()
221 stack_popnumber(struct stack *stack) in stack_popnumber()
236 stack_popstring(struct stack *stack) in stack_popstring()
[all …]
H A Dbcode.h59 struct stack { struct
60 struct value *stack; argument
61 ssize_t size;
62 ssize_t sp;
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_report.cc40 const StackTrace* const stack; member in __sanitizer::ScopedAllocatorErrorReport
45 const StackTrace *stack) { in ReportCallocOverflow()
55 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack) { in ReportPvallocOverflow()
66 const StackTrace *stack) { in ReportInvalidAllocationAlignment()
76 const StackTrace *stack) { in ReportInvalidAlignedAllocAlignment()
94 const StackTrace *stack) { in ReportInvalidPosixMemalignAlignment()
107 const StackTrace *stack) { in ReportAllocationSizeTooBig()
116 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack) { in ReportOutOfMemory()
H A Dsanitizer_symbolizer_report.cc73 void ReportErrorSummary(const char *error_type, const StackTrace *stack, in ReportErrorSummary()
100 BufferedStackTrace *stack = stack_buffer.data(); in ReportMmapWriteExec() local
179 BufferedStackTrace *stack = stack_buffer.data(); in ReportStackOverflowImpl() local
209 BufferedStackTrace *stack = stack_buffer.data(); in ReportDeadlySignalImpl() local
/freebsd-12.1/contrib/compiler-rt/lib/lsan/
H A Dlsan_allocator.cc54 static void RegisterAllocation(const StackTrace &stack, void *p, uptr size) { in RegisterAllocation()
79 void *Allocate(const StackTrace &stack, uptr size, uptr alignment, in Allocate()
101 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) { in Calloc()
118 void *Reallocate(const StackTrace &stack, void *p, uptr new_size, in Reallocate()
142 const StackTrace &stack) { in lsan_posix_memalign()
167 void *lsan_memalign(uptr alignment, uptr size, const StackTrace &stack) { in lsan_memalign()
177 void *lsan_malloc(uptr size, const StackTrace &stack) { in lsan_malloc()
185 void *lsan_realloc(void *p, uptr size, const StackTrace &stack) { in lsan_realloc()
189 void *lsan_calloc(uptr nmemb, uptr size, const StackTrace &stack) { in lsan_calloc()
193 void *lsan_valloc(uptr size, const StackTrace &stack) { in lsan_valloc()
[all …]
/freebsd-12.1/sys/sys/
H A D_stack.h36 struct stack { struct
37 int depth;
38 vm_offset_t pcs[STACK_MAX];
/freebsd-12.1/contrib/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cc207 static void HwasanDeallocate(StackTrace *stack, void *tagged_ptr) { in HwasanDeallocate()
261 static void *HwasanReallocate(StackTrace *stack, void *tagged_ptr_old, in HwasanReallocate()
279 static void *HwasanCalloc(StackTrace *stack, uptr nmemb, uptr size) { in HwasanCalloc()
312 void *hwasan_malloc(uptr size, StackTrace *stack) { in hwasan_malloc()
316 void *hwasan_calloc(uptr nmemb, uptr size, StackTrace *stack) { in hwasan_calloc()
320 void *hwasan_realloc(void *ptr, uptr size, StackTrace *stack) { in hwasan_realloc()
338 void *hwasan_valloc(uptr size, StackTrace *stack) { in hwasan_valloc()
343 void *hwasan_pvalloc(uptr size, StackTrace *stack) { in hwasan_pvalloc()
366 void *hwasan_memalign(uptr alignment, uptr size, StackTrace *stack) { in hwasan_memalign()
377 StackTrace *stack) { in hwasan_posix_memalign()
[all …]
/freebsd-12.1/contrib/unbound/services/
H A Dmodstack.c89 modstack_init(struct module_stack* stack) in modstack_init()
96 modstack_config(struct module_stack* stack, const char* module_conf) in modstack_config()
214 modstack_setup(struct module_stack* stack, const char* module_conf, in modstack_setup()
239 modstack_desetup(struct module_stack* stack, struct module_env* env) in modstack_desetup()
252 modstack_find(struct module_stack* stack, const char* name) in modstack_find()
/freebsd-12.1/contrib/bsnmp/snmp_mibII/
H A DmibII_ifstack.c38 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.1/sys/dev/smartpqi/
H A Dsmartpqi_tag.c153 int pqisrc_init_taglist(pqisrc_softstate_t *softs, lockless_stack_t *stack, in pqisrc_init_taglist()
191 void pqisrc_destroy_taglist(pqisrc_softstate_t *softs, lockless_stack_t *stack) in pqisrc_destroy_taglist()
208 void pqisrc_put_tag(lockless_stack_t *stack, uint32_t index) in pqisrc_put_tag()
244 uint32_t pqisrc_get_tag(lockless_stack_t *stack) in pqisrc_get_tag()
/freebsd-12.1/lib/libthr/thread/
H A Dthr_stack.c45 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.1/contrib/compiler-rt/lib/msan/
H A Dmsan_allocator.cc144 static void *MsanAllocate(StackTrace *stack, uptr size, uptr alignment, in MsanAllocate()
186 void MsanDeallocate(StackTrace *stack, void *p) { in MsanDeallocate()
213 void *MsanReallocate(StackTrace *stack, void *old_p, uptr new_size, in MsanReallocate()
238 void *MsanCalloc(StackTrace *stack, uptr nmemb, uptr size) { in MsanCalloc()
255 void *msan_malloc(uptr size, StackTrace *stack) { in msan_malloc()
259 void *msan_calloc(uptr nmemb, uptr size, StackTrace *stack) { in msan_calloc()
263 void *msan_realloc(void *ptr, uptr size, StackTrace *stack) { in msan_realloc()
273 void *msan_valloc(uptr size, StackTrace *stack) { in msan_valloc()
277 void *msan_pvalloc(uptr size, StackTrace *stack) { in msan_pvalloc()
300 void *msan_memalign(uptr alignment, uptr size, StackTrace *stack) { in msan_memalign()
[all …]
H A Dmsan_poisoning.cc44 StackTrace *stack) { in CopyOrigin()
99 StackTrace *stack) { in MoveShadowAndOrigin()
109 StackTrace *stack) { in CopyShadowAndOrigin()
117 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack) { in CopyMemory()
166 void PoisonMemory(const void *dst, uptr size, StackTrace *stack) { in PoisonMemory()
H A Dmsan_origin.h86 Origin getNextChainedOrigin(StackTrace *stack) const { in getNextChainedOrigin()
103 static Origin CreateHeapOrigin(StackTrace *stack) { in CreateHeapOrigin()
110 static Origin CreateChainedOrigin(Origin prev, StackTrace *stack) { in CreateChainedOrigin()
H A Dmsan_report.cc65 StackTrace stack; in DescribeOrigin() local
76 StackTrace stack = o.getStackTraceForHeapOrigin(); in DescribeOrigin() local
99 void ReportUMR(StackTrace *stack, u32 origin) { in ReportUMR()
115 void ReportExpectedUMRNotFound(StackTrace *stack) { in ReportExpectedUMRNotFound()
/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_report.cc254 BufferedStackTrace *stack) { in ReportSanitizerGetAllocatedSizeNotOwned()
267 void ReportPvallocOverflow(uptr size, BufferedStackTrace *stack) { in ReportPvallocOverflow()
274 BufferedStackTrace *stack) { in ReportInvalidAllocationAlignment()
282 BufferedStackTrace *stack) { in ReportInvalidAlignedAllocAlignment()
290 BufferedStackTrace *stack) { in ReportInvalidPosixMemalignAlignment()
298 BufferedStackTrace *stack) { in ReportAllocationSizeTooBig()
305 void ReportRssLimitExceeded(BufferedStackTrace *stack) { in ReportRssLimitExceeded()
311 void ReportOutOfMemory(uptr requested_size, BufferedStackTrace *stack) { in ReportOutOfMemory()
320 BufferedStackTrace *stack) { in ReportStringFunctionMemoryRangesOverlap()
329 BufferedStackTrace *stack) { in ReportStringFunctionSizeOverflow()
[all …]
H A Dasan_errors.h128 const BufferedStackTrace *stack; member
140 const BufferedStackTrace *stack; member
153 const BufferedStackTrace *stack; member
168 const BufferedStackTrace *stack; member
180 const BufferedStackTrace *stack; member
193 const BufferedStackTrace *stack; member
208 const BufferedStackTrace *stack; member
221 const BufferedStackTrace *stack; member
238 const BufferedStackTrace *stack; member
248 const BufferedStackTrace *stack; member
[all …]
/freebsd-12.1/sys/contrib/ck/include/
H A Dck_stack.h56 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.1/contrib/gcc/
H A Dtree-ssa-threadedge.c117 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.1/contrib/ncurses/ncurses/tinfo/
H A Dlib_tparm.c178 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.1/sys/arm/cloudabi32/
H A Dcloudabi32_sysvec.c52 unsigned long stack) in cloudabi32_proc_setregs()
151 stack_t stack; in cloudabi32_thread_setregs() local
/freebsd-12.1/sys/arm64/cloudabi64/
H A Dcloudabi64_sysvec.c52 unsigned long stack) in cloudabi64_proc_setregs()
143 stack_t stack; in cloudabi64_thread_setregs() local
/freebsd-12.1/sys/i386/cloudabi32/
H A Dcloudabi32_sysvec.c80 unsigned long stack) in cloudabi32_proc_setregs()
156 stack_t stack; in cloudabi32_thread_setregs() local
/freebsd-12.1/sys/amd64/cloudabi64/
H A Dcloudabi64_sysvec.c72 unsigned long stack) in cloudabi64_proc_setregs()
162 stack_t stack; in cloudabi64_thread_setregs() local
/freebsd-12.1/sys/amd64/cloudabi32/
H A Dcloudabi32_sysvec.c85 unsigned long stack) in cloudabi32_proc_setregs()
181 stack_t stack; in cloudabi32_thread_setregs() local

12345678910