/kernel/liteos_a/testsuites/unittest/container/smoke/ |
H A D | It_ipc_container_001.cpp | 84 char *stack = (char *)mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, in ItIpcContainer001() local 86 ASSERT_NE(stack, nullptr); in ItIpcContainer001() 87 char *stackTop = stack + STACK_SIZE; in ItIpcContainer001()
|
H A D | It_net_container_002.cpp | 119 char *stack = (char *)mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, CLONE_STACK_MMAP_FLAG, -1, 0); in ItNetContainer002() local 120 EXPECT_STRNE(stack, NULL); in ItNetContainer002() 121 char *stackTop = stack + STACK_SIZE; in ItNetContainer002()
|
H A D | It_net_container_001.cpp | 110 char *stack = (char *)mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, CLONE_STACK_MMAP_FLAG, -1, 0); in ItNetContainer001() local 111 EXPECT_STRNE(stack, NULL); in ItNetContainer001() 112 char *stackTop = stack + STACK_SIZE; in ItNetContainer001()
|
H A D | It_time_container_002.cpp | 109 char *stack = (char *)mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, CLONE_STACK_MMAP_FLAG, -1, 0); in TimeContainerUnshare() local 110 ASSERT_NE(stack, nullptr); in TimeContainerUnshare() 111 char *stackTop = stack + STACK_SIZE; in TimeContainerUnshare()
|
/third_party/jerryscript/jerry-core/ext/ |
H A D | tracker.c | 100 char* GetStacktraceString(ecma_string_t* stack) in GetStacktraceString() argument 102 if (stack == NULL) { in GetStacktraceString() 106 ECMA_STRING_TO_UTF8_STRING(stack, data, data_size); in GetStacktraceString()
|
/third_party/node/deps/v8/src/heap/base/ |
H A D | stack.cc | 5 #include "src/heap/base/stack.h" 30 // If the slot is part of a fake frame, then it is definitely on the stack. in IsOnStack() 36 // Fall through as there is still a regular stack present even when running in IsOnStack() 56 // "stack-use-after-scope" warnings. 58 // No TSAN support as the stack may not be exclusively owned by the current 66 // When using ASAN fake stack a pointer to the fake frame is kept on the in IterateAsanFakeFrameIfNecessary() 67 // native frame. In case |addr| points to a fake frame of the current stack in IterateAsanFakeFrameIfNecessary() 77 // of this stack. in IterateAsanFakeFrameIfNecessary() 116 // Called by the trampoline that pushes registers on the stack. This method 120 // No ASAN support as method accesses redzones while walking the stack 126 IteratePointersImpl(const Stack* stack, StackVisitor* visitor, intptr_t* stack_end) IteratePointersImpl() argument [all...] |
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_jit_misc.c | 122 * Allocate a JIT stack * 149 jit_stack->stack = sljit_allocate_stack(startsize, maxsize, &jit_stack->memctl); in pcre2_jit_stack_create() 150 if (jit_stack->stack == NULL) in pcre2_jit_stack_create() 162 * Assign a JIT stack to a pattern * 184 * Free a JIT stack * 195 sljit_free_stack((struct sljit_stack *)(jit_stack->stack), &jit_stack->memctl); in pcre2_jit_stack_free()
|
H A D | pcre2_jit_match.c | 56 arguments->stack = &local_stack; in jit_machine_stack_exec() 164 arguments.stack = (struct sljit_stack *)(jit_stack->stack); in pcre2_jit_match()
|
/third_party/skia/third_party/externals/angle2/src/common/serializer/ |
H A D | JsonSerializer.h | 23 #include <stack> 123 std::stack<std::string> mGroupNameStack; 124 std::stack<SortedValueGroup> mGroupValueStack;
|
/third_party/skia/src/sksl/transform/ |
H A D | SkSLEliminateUnreachableCode.cpp | 16 #include <stack> 129 std::stack<bool> fFoundFunctionExit; in EliminateUnreachableCode() 130 std::stack<bool> fFoundLoopExit; in EliminateUnreachableCode()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | stack.rs | 31 /// Trait implemented by types which can be placed in a stack. 35 /// The C stack type for this element. 42 /// An owned stack of `T`. 82 stack: self.0, in into_iter() 137 stack: *mut T::StackType, 147 OPENSSL_sk_free(self.stack as *mut _); in drop() 159 .map(|i| T::from_ptr(OPENSSL_sk_value(self.stack as *mut _, i) as *mut _)) in next() 173 .map(|i| T::from_ptr(OPENSSL_sk_value(self.stack as *mut _, i) as *mut _)) in next_back() 194 /// Returns the number of items in the stack. 199 /// Determines if the stack i [all...] |
/third_party/libwebsockets/lib/misc/ |
H A D | lecp.c | 818 * We should only come here by pushing on stack in lecp_parse() 968 char stack[12], literal = 0, numeric = 0; in format_scan() local 972 stack[sp] = *fmt++; in format_scan() 1002 if (!sp && stack[sp] == '\'') in format_scan() 1064 if (sp == sizeof(stack)) in format_scan() 1069 stack[sp] = *fmt; in format_scan() 1078 if (stack[sp] != '{') in format_scan() 1086 if (stack[sp] != '[') in format_scan() 1090 if (stack[sp] != '(') in format_scan() 1094 if (stack[s in format_scan() [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | profile-generator.cc | 252 info.stack.push_back(CpuProfileDeoptFrame( in GetDeoptInfo() 255 info.stack = rare_data_->deopt_inlined_frames_; in GetDeoptInfo() 438 indent + 10, "", info.stack[0].script_id, info.stack[0].position, in Print() 440 for (size_t index = 1; index < info.stack.size(); ++index) { in Print() 442 indent + 10, "", info.stack[index].script_id, in Print() 443 info.stack[index].position); in Print() 545 std::vector<Position> stack; in TraverseDepthFirst() local 546 stack.emplace_back(root_); in TraverseDepthFirst() 547 while (stack in TraverseDepthFirst() [all...] |
/third_party/skia/third_party/externals/freetype/src/psaux/ |
H A D | t1decode.c | 468 /* compute random seed from stack address of parameter */ in FT_LOCAL_DEF() 478 decoder->top = decoder->stack; in FT_LOCAL_DEF() 523 FT_TRACE5(( " (%ld)", decoder->top - decoder->stack )); in FT_LOCAL_DEF() 735 * Push value on stack, or process operator in FT_LOCAL_DEF() 740 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS ) in FT_LOCAL_DEF() 742 FT_ERROR(( "t1_decoder_parse_charstrings: stack overflow\n" )); in FT_LOCAL_DEF() 767 if ( top - decoder->stack < 2 ) in FT_LOCAL_DEF() 777 * remove all operands to callothersubr from the stack in FT_LOCAL_DEF() 780 * arguments, we increase the stack by the value of in FT_LOCAL_DEF() 784 * stack pointe in FT_LOCAL_DEF() [all...] |
/kernel/linux/linux-6.6/tools/perf/util/intel-pt-decoder/ |
H A D | intel-pt-decoder.c | 177 struct intel_pt_stack stack; member 387 static void intel_pt_pop_blk(struct intel_pt_stack *stack) in intel_pt_pop_blk() argument 389 struct intel_pt_blk *blk = stack->blk; in intel_pt_pop_blk() 391 stack->blk = blk->prev; in intel_pt_pop_blk() 392 if (!stack->spare) in intel_pt_pop_blk() 393 stack->spare = blk; in intel_pt_pop_blk() 398 static uint64_t intel_pt_pop(struct intel_pt_stack *stack) in intel_pt_pop() argument 400 if (!stack->pos) { in intel_pt_pop() 401 if (!stack->blk) in intel_pt_pop() 403 intel_pt_pop_blk(stack); in intel_pt_pop() 411 intel_pt_alloc_blk(struct intel_pt_stack *stack) intel_pt_alloc_blk() argument 430 intel_pt_push(struct intel_pt_stack *stack, uint64_t ip) intel_pt_push() argument 444 intel_pt_clear_stack(struct intel_pt_stack *stack) intel_pt_clear_stack() argument 451 intel_pt_free_stack(struct intel_pt_stack *stack) intel_pt_free_stack() argument [all...] |
/kernel/linux/linux-5.10/arch/nios2/kernel/ |
H A D | process.c | 108 struct switch_stack *stack; in copy_thread() local 132 stack = ((struct switch_stack *) regs) - 1; in copy_thread() 133 *childstack = *stack; in copy_thread() 265 .stack = newsp, in nios2_clone()
|
/kernel/linux/linux-5.10/arch/s390/include/asm/ |
H A D | compat.h | 189 unsigned long stack; in arch_compat_alloc_user_space() local 191 stack = KSTK_ESP(current); in arch_compat_alloc_user_space() 193 stack &= 0x7fffffffUL; in arch_compat_alloc_user_space() 194 return (void __user *) (stack - len); in arch_compat_alloc_user_space()
|
/kernel/linux/linux-5.10/arch/um/kernel/ |
H A D | um_arch.c | 255 unsigned long stack; in linux_main() local 323 stack = (unsigned long) argv; in linux_main() 324 stack &= ~(1024 * 1024 - 1); in linux_main() 325 avail = stack - start_vm; in linux_main()
|
/kernel/linux/linux-5.10/tools/testing/selftests/memfd/ |
H A D | fuse_test.c | 202 uint8_t *stack; in spawn_sealing_thread() local 205 stack = malloc(STACK_SIZE); in spawn_sealing_thread() 206 if (!stack) { in spawn_sealing_thread() 212 stack + STACK_SIZE, in spawn_sealing_thread()
|
/kernel/linux/linux-6.6/tools/testing/selftests/memfd/ |
H A D | fuse_test.c | 202 uint8_t *stack; in spawn_sealing_thread() local 205 stack = malloc(STACK_SIZE); in spawn_sealing_thread() 206 if (!stack) { in spawn_sealing_thread() 212 stack + STACK_SIZE, in spawn_sealing_thread()
|
/kernel/linux/linux-6.6/tools/testing/selftests/user_events/ |
H A D | abi_test.c | 214 void *stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, in TEST_F() local 218 ASSERT_NE(MAP_FAILED, stack); in TEST_F() 223 ASSERT_NE(-1, clone(&clone_check, stack + stack_size, in TEST_F() 229 munmap(stack, stack_size); in TEST_F()
|
/third_party/ffmpeg/libavcodec/ |
H A D | webvttenc.c | 38 char stack[WEBVTT_STACK_SIZE]; member 57 s->stack[s->stack_ptr++] = c; in webvtt_stack_push() 65 return s->stack[--s->stack_ptr]; in webvtt_stack_pop() 72 if (s->stack[i] == c) in webvtt_stack_find() 91 av_log(s->avctx, AV_LOG_ERROR, "tag stack overflow\n"); in webvtt_stack_push_pop()
|
/third_party/node/test/parallel/ |
H A D | test-assert-async.js | 95 assert.ok(!err.stack.includes('at Function.rejects')); 140 assert.match(err.stack, /rejects/); 209 assert.ok(err.stack); 210 assert.ok(!err.stack.includes('at Function.doesNotReject'));
|
H A D | test-util-promisify.js | 151 const stack = err.stack; 161 return assert.strictEqual(stack, err.stack);
|
/kernel/linux/linux-5.10/arch/mips/boot/compressed/ |
H A D | head.S | 36 PTR_LA sp, (.stack + 8192) /* stack address */ 56 .comm .stack,4096*2,4
|