Home
last modified time | relevance | path

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

12345678

/freebsd/usr.bin/dc/
H A Dstack.c36 stack_init(struct stack *stack) in stack_init()
45 stack_empty(const struct stack *stack) in stack_empty()
99 stack_size(const struct stack *stack) in stack_size()
106 stack_dup(struct stack *stack) in stack_dup()
120 stack_swap(struct stack *stack) in stack_swap()
134 stack_grow(struct stack *stack) in stack_grow()
187 stack_tos(const struct stack *stack) in stack_tos()
210 stack_pop(struct stack *stack) in stack_pop()
219 stack_popnumber(struct stack *stack) in stack_popnumber()
234 stack_popstring(struct stack *stack) in stack_popstring()
[all …]
H A Dbcode.h58 struct stack { struct
59 struct value *stack; member
60 ssize_t size;
61 ssize_t sp;
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_report.cpp39 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()
136 void NORETURN ReportRssLimitExceeded(const StackTrace *stack) { in ReportRssLimitExceeded()
/freebsd/contrib/libcbor/test/
H A Dcallbacks_test.c35 struct _cbor_stack stack = _cbor_stack_init(); in test_builder_byte_string_callback_append() local
75 struct _cbor_stack stack = _cbor_stack_init(); in test_builder_byte_string_callback_append_alloc_failure() local
107 struct _cbor_stack stack = _cbor_stack_init(); in test_builder_byte_string_callback_append_item_alloc_failure() local
141 struct _cbor_stack stack = _cbor_stack_init(); in test_builder_byte_string_callback_append_parent_alloc_failure() local
175 struct _cbor_stack stack = _cbor_stack_init(); in test_builder_string_callback_append() local
212 struct _cbor_stack stack = _cbor_stack_init(); in test_builder_string_callback_append_alloc_failure() local
243 struct _cbor_stack stack = _cbor_stack_init(); in test_builder_string_callback_append_item_alloc_failure() local
275 struct _cbor_stack stack = _cbor_stack_init(); in test_builder_string_callback_append_parent_alloc_failure() local
306 struct _cbor_stack stack = _cbor_stack_init(); in test_append_array_failure() local
335 struct _cbor_stack stack = _cbor_stack_init(); in test_append_map_failure() local
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp90 void *Allocate(const StackTrace &stack, uptr size, uptr alignment, in Allocate()
115 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) { in Calloc()
130 void *Reallocate(const StackTrace &stack, void *p, uptr new_size, in Reallocate()
180 const StackTrace &stack) { in lsan_posix_memalign()
205 void *lsan_memalign(uptr alignment, uptr size, const StackTrace &stack) { in lsan_memalign()
215 void *lsan_malloc(uptr size, const StackTrace &stack) { in lsan_malloc()
223 void *lsan_realloc(void *p, uptr size, const StackTrace &stack) { in lsan_realloc()
228 const StackTrace &stack) { in lsan_reallocarray()
238 void *lsan_calloc(uptr nmemb, uptr size, const StackTrace &stack) { in lsan_calloc()
242 void *lsan_valloc(uptr size, const StackTrace &stack) { in lsan_valloc()
[all …]
/freebsd/sys/sys/
H A D_stack.h34 struct stack { struct
35 int depth;
36 vm_offset_t pcs[STACK_MAX];
/freebsd/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/lib/libthr/thread/
H A Dthr_stack.c43 struct stack { struct
45 size_t stacksize; /* Stack size (rounded up). */ argument
47 void *stackaddr; /* Stack address. */ argument
51 * Default sized (stack and guard) spare stack queue. Stacks are cached argument
/freebsd/sys/dev/qat/qat_api/common/utils/
H A Dlac_lock_free_stack.h34 pop(lock_free_stack_t *stack) in pop()
56 push(lock_free_stack_t *stack, lac_mem_blk_t *val) in push()
74 lock_free_stack_t stack = { { { 0 } } }; in _init_stack() local
79 top(lock_free_stack_t *stack) in top()
/freebsd/sys/dev/smartpqi/
H A Dsmartpqi_tag.c156 pqisrc_init_taglist(pqisrc_softstate_t *softs, lockless_stack_t *stack, in pqisrc_init_taglist()
195 pqisrc_destroy_taglist(pqisrc_softstate_t *softs, lockless_stack_t *stack) in pqisrc_destroy_taglist()
213 pqisrc_put_tag(lockless_stack_t *stack, uint32_t index) in pqisrc_put_tag()
250 pqisrc_get_tag(lockless_stack_t *stack) in pqisrc_get_tag()
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp83 inline void Metadata::SetAllocated(u32 stack, u64 size) { in SetAllocated()
277 static bool CheckInvalidFree(StackTrace *stack, void *untagged_ptr, in CheckInvalidFree()
288 static void HwasanDeallocate(StackTrace *stack, void *tagged_ptr) { in HwasanDeallocate()
394 static void *HwasanCalloc(StackTrace *stack, uptr nmemb, uptr size) { in HwasanCalloc()
450 void *hwasan_malloc(uptr size, StackTrace *stack) { in hwasan_malloc()
454 void *hwasan_calloc(uptr nmemb, uptr size, StackTrace *stack) { in hwasan_calloc()
458 void *hwasan_realloc(void *ptr, uptr size, StackTrace *stack) { in hwasan_realloc()
478 void *hwasan_valloc(uptr size, StackTrace *stack) { in hwasan_valloc()
483 void *hwasan_pvalloc(uptr size, StackTrace *stack) { in hwasan_pvalloc()
517 StackTrace *stack) { in hwasan_posix_memalign()
[all …]
H A Dhwasan_malloc_bisect.h18 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/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_report.cpp273 BufferedStackTrace *stack) { in ReportReallocArrayOverflow()
279 void ReportPvallocOverflow(uptr size, BufferedStackTrace *stack) { in ReportPvallocOverflow()
286 BufferedStackTrace *stack) { in ReportInvalidAllocationAlignment()
294 BufferedStackTrace *stack) { in ReportInvalidAlignedAllocAlignment()
302 BufferedStackTrace *stack) { in ReportInvalidPosixMemalignAlignment()
310 BufferedStackTrace *stack) { in ReportAllocationSizeTooBig()
317 void ReportRssLimitExceeded(BufferedStackTrace *stack) { in ReportRssLimitExceeded()
323 void ReportOutOfMemory(uptr requested_size, BufferedStackTrace *stack) { in ReportOutOfMemory()
341 BufferedStackTrace *stack) { in ReportStringFunctionSizeOverflow()
360 BufferedStackTrace *stack) { in ReportBadParamsToAnnotateDoubleEndedContiguousContainer()
[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
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 …]
H A Dasan_allocator.cpp57 u32 tid, u32 stack) { in AtomicContextStore()
65 u32 &tid, u32 &stack) { in AtomicContextLoad()
121 void SetAllocContext(u32 tid, u32 stack) { in SetAllocContext()
134 void SetFreeContext(u32 tid, u32 stack) { in SetFreeContext()
928 u32 stack = 0; in AllocTid() local
937 u32 stack = 0; in FreeTid() local
948 u32 stack = 0; in GetAllocStackId() local
957 u32 stack = 0; in GetFreeStackId() local
1008 BufferedStackTrace *stack) { in asan_reallocarray()
1075 BufferedStackTrace *stack) { in asan_posix_memalign()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp95 BufferedStackTrace stack; in DFsanAllocate() local
101 BufferedStackTrace stack; in DFsanAllocate() local
118 BufferedStackTrace stack; in DFsanAllocate() local
175 BufferedStackTrace stack; in DFsanCalloc() local
232 BufferedStackTrace stack; in dfsan_reallocarray() local
249 BufferedStackTrace stack; in dfsan_pvalloc() local
262 BufferedStackTrace stack; in dfsan_aligned_alloc() local
273 BufferedStackTrace stack; in dfsan_memalign() local
283 BufferedStackTrace stack; in dfsan_posix_memalign() local
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_poisoning.cpp44 StackTrace *stack) { in CopyOrigin()
99 StackTrace *stack) { in ReverseCopyOrigin()
155 StackTrace *stack) { in MoveOrigin()
168 StackTrace *stack) { in MoveShadowAndOrigin()
181 StackTrace *stack) { in CopyShadowAndOrigin()
192 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack) { in CopyMemory()
248 void PoisonMemory(const void *dst, uptr size, StackTrace *stack) { in PoisonMemory()
H A Dmsan_allocator.cpp238 void MsanDeallocate(BufferedStackTrace *stack, void *p) { in MsanDeallocate()
268 static void *MsanReallocate(BufferedStackTrace *stack, void *old_p, in MsanReallocate()
293 static void *MsanCalloc(BufferedStackTrace *stack, uptr nmemb, uptr size) { in MsanCalloc()
330 void *msan_malloc(uptr size, BufferedStackTrace *stack) { in msan_malloc()
334 void *msan_calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) { in msan_calloc()
338 void *msan_realloc(void *ptr, uptr size, BufferedStackTrace *stack) { in msan_realloc()
349 BufferedStackTrace *stack) { in msan_reallocarray()
360 void *msan_valloc(uptr size, BufferedStackTrace *stack) { in msan_valloc()
364 void *msan_pvalloc(uptr size, BufferedStackTrace *stack) { in msan_pvalloc()
389 void *msan_memalign(uptr alignment, uptr size, BufferedStackTrace *stack) { in msan_memalign()
[all …]
H A Dmsan_origin.h85 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()
/freebsd/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/contrib/libcbor/src/cbor/internal/
H A Dstack.c14 void _cbor_stack_pop(struct _cbor_stack *stack) { in _cbor_stack_pop()
21 struct _cbor_stack_record *_cbor_stack_push(struct _cbor_stack *stack, in _cbor_stack_push()
/freebsd/tests/sys/vm/stack/
H A Dstack_dt_need_exec_test.c21 char stack[SGROWSIZ]; in jumpstack0() local
30 char stack[SGROWSIZ * 2]; in jumpstack1() local
H A Dstack_dlopen_exec_test.c35 char stack[SGROWSIZ]; in jumpstack0() local
44 char stack[SGROWSIZ * 2]; in jumpstack1() local
/freebsd/contrib/unbound/services/
H A Dmodstack.c92 modstack_init(struct module_stack* stack) in modstack_init()
99 modstack_config(struct module_stack* stack, const char* module_conf) in modstack_config()
/freebsd/crypto/openssl/apps/
H A Dlist.c96 static void collect_ciphers(EVP_CIPHER *cipher, void *stack) in collect_ciphers()
180 static void collect_digests(EVP_MD *digest, void *stack) in collect_digests()
248 static void collect_macs(EVP_MAC *mac, void *stack) in collect_macs()
312 static void collect_kdfs(EVP_KDF *kdf, void *stack) in collect_kdfs()
382 static void collect_rands(EVP_RAND *rand, void *stack) in collect_rands()
508 static void collect_encoders(OSSL_ENCODER *encoder, void *stack) in collect_encoders()
573 static void collect_decoders(OSSL_DECODER *decoder, void *stack) in collect_decoders()
635 static void collect_keymanagers(EVP_KEYMGMT *km, void *stack) in collect_keymanagers()
698 static void collect_signatures(EVP_SIGNATURE *sig, void *stack) in collect_signatures()
758 static void collect_kem(EVP_KEM *kem, void *stack) in collect_kem()
[all …]

12345678