Home
last modified time | relevance | path

Searched refs:stack (Results 201 - 225 of 3084) sorted by relevance

12345678910>>...124

/third_party/node/test/fixtures/wpt/resources/
H A Dtestharnessreport.js22 return {name:x.name, status:x.status, message:x.message, stack:x.stack}
28 stack: status.stack};
/third_party/node/deps/npm/node_modules/jsonparse/examples/
H A Dtwitterfeed.js24 if (this.stack.length === 1 && this.key === 'text') { text = value; }
25 if (this.stack.length === 2 && this.key === 'name' && this.stack[1].key === 'user') { name = value; }
26 if (this.stack.length === 0) {
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_nir_vectorize_vs_inputs.c123 struct util_dynarray *stack = ralloc(mem_ctx, struct util_dynarray); in r600_vec_instr_stack_create() local
124 util_dynarray_init(stack, mem_ctx); in r600_vec_instr_stack_create()
125 return stack; in r600_vec_instr_stack_create()
129 r600_vec_instr_stack_push(struct util_dynarray *stack, nir_instr *instr) in r600_vec_instr_stack_push() argument
131 util_dynarray_append(stack, nir_instr *, instr); in r600_vec_instr_stack_push()
177 r600_vec_instr_stack_pop(nir_builder *b, struct util_dynarray *stack, in r600_vec_instr_stack_pop() argument
181 nir_instr *last = util_dynarray_pop(stack, nir_instr *); in r600_vec_instr_stack_pop()
200 /* Don't bother walking the stack if this component can't be vectorised. */ in r600_vec_instr_stack_pop()
246 const struct util_dynarray *stack = data; in r600_hash_stack() local
247 const nir_instr *first = *(nir_instr **)util_dynarray_begin(stack); in r600_hash_stack()
277 struct util_dynarray *stack = (struct util_dynarray *) entry->key; r600_vec_instr_set_add() local
311 struct util_dynarray *stack = (struct util_dynarray *) entry->key; r600_vec_instr_set_remove() local
[all...]
/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dcffdecode.c507 FT_Fixed* stack; in FT_LOCAL_DEF() local
523 decoder->top = decoder->stack; in FT_LOCAL_DEF()
526 stack = decoder->top; in FT_LOCAL_DEF()
566 /* this is an operand, push it on the stack */ in FT_LOCAL_DEF()
603 if ( decoder->top - stack >= CFF_MAX_OPERANDS ) in FT_LOCAL_DEF()
620 /* from the bottom of the stack. However, this seems not to be */ in FT_LOCAL_DEF()
625 FT_Int num_args = (FT_Int)( args - decoder->stack ); in FT_LOCAL_DEF()
892 /* `glyph_width' to `nominal_width' plus number on the stack */ in FT_LOCAL_DEF()
931 ( stack[0] >> 16 ); in FT_LOCAL_DEF()
958 /* Note that we only pop arguments from the stack whic in FT_LOCAL_DEF()
[all...]
/kernel/linux/linux-6.6/tools/perf/scripts/python/
H A Dgecko.py100 frameTable: interned stack frame ID -> stack frame.
103 stackTable: interned stack ID -> stack.
104 stackMap: (stack prefix ID, leaf stack frame ID) -> interned Stack ID.
129 """Gets a matching stack, or saves the new stack. Returns a Stack ID."""
151 """Gets a matching stack frame, or saves the new frame. Returns a Frame ID."""
177 def _add_sample(self, comm: str, stack
[all...]
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_ctx.c16 /* The stack frame info is resizing, set a first-time expansion size; */
46 /* A wrapper to manage the "stack frames" */
48 /* Array of indexes into the bignum stack */
50 /* Number of stack frames, and the size of the allocated array */
66 /* The "stack frames", if you will */
67 BN_STACK stack; member
70 /* Depth of stack overflow */
86 BN_STACK *stack = &ctx->stack; in ctxdbg() local
99 while (fpidx < stack in ctxdbg()
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_ctx.c16 /* The stack frame info is resizing, set a first-time expansion size; */
46 /* A wrapper to manage the "stack frames" */
48 /* Array of indexes into the bignum stack */
50 /* Number of stack frames, and the size of the allocated array */
66 /* The "stack frames", if you will */
67 BN_STACK stack; member
70 /* Depth of stack overflow */
86 BN_STACK *stack = &ctx->stack; in ctxdbg() local
99 while (fpidx < stack in ctxdbg()
[all...]
/third_party/python/Lib/idlelib/
H A Ddebugger.py77 # below. So our stack looks something like this:
91 # ScriptBinding. However, we also need to unwind the stack back to
101 # clean stack.
229 stack, i = self.idb.get_stack(self.frame, tb)
230 sv.load_stack(stack, i)
297 stack, i = self.idb.get_stack(self.frame, None)
298 sv.load_stack(stack, i)
388 self.stack = []
390 def load_stack(self, stack, index=None):
391 self.stack
[all...]
/third_party/littlefs/
H A DMakefile222 ## Find the per-function stack usage
223 .PHONY: stack
224 stack: STACKFLAGS+=-S
225 stack: $(CI) $(BUILDDIR)/lfs.stack.csv
226 ./scripts/stack.py $(CI) $(STACKFLAGS)
228 ## Compare per-function stack usage
229 .PHONY: stack-diff
230 stack-diff: $(CI)
231 ./scripts/stack
[all...]
/third_party/mesa3d/src/glx/
H A Dindirect_vertex_array.c120 free(arrays->stack); in __glXFreeVertexArrayState()
121 arrays->stack = NULL; in __glXFreeVertexArrayState()
296 arrays->stack = malloc(sizeof(struct array_stack_state) in __glXInitVertexArrayState()
300 if (arrays->stack == NULL) { in __glXInitVertexArrayState()
1958 struct array_stack_state *stack = in __glXPushArrayState() local
1959 &arrays->stack[(arrays->stack_index * arrays->num_arrays)]; in __glXPushArrayState()
1964 stack[i].data = arrays->arrays[i].data; in __glXPushArrayState()
1965 stack[i].data_type = arrays->arrays[i].data_type; in __glXPushArrayState()
1966 stack[i].user_stride = arrays->arrays[i].user_stride; in __glXPushArrayState()
1967 stack[ in __glXPushArrayState()
1984 struct array_stack_state *stack; __glXPopArrayState() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DImmutableSet.h651 SmallVector<uintptr_t,20> stack; member in llvm::ImutAVLTreeGenericIterator
661 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root)); in ImutAVLTreeGenericIterator()
665 assert(!stack.empty()); in operator *()
666 return *reinterpret_cast<TreeTy *>(stack.back() & ~Flags); in operator *()
671 assert(!stack.empty()); in getVisitState()
672 return stack.back() & Flags; in getVisitState()
675 bool atEnd() const { return stack.empty(); } in atEnd()
678 return stack.size() == 1 && getVisitState() == VisitedNone; in atBeginning()
682 assert(!stack.empty()); in skipToParent()
683 stack in skipToParent()
[all...]
/kernel/linux/linux-5.10/arch/x86/entry/
H A DMakefile15 CFLAGS_common.o += -fno-stack-protector
16 CFLAGS_syscall_64.o += -fno-stack-protector
17 CFLAGS_syscall_32.o += -fno-stack-protector
18 CFLAGS_syscall_x32.o += -fno-stack-protector
/kernel/linux/linux-6.6/tools/perf/util/
H A Darm64-frame-pointer-unwind-support.c13 u64 stack[2]; member
27 entries->stack[entries->length++] = entry->ip; in add_entry()
41 * If PC and SP are not recorded, get the value of PC from the stack in get_leaf_frame_caller_aarch64()
62 return callchain_param.order == ORDER_CALLER ? entries.stack[0] : entries.stack[1]; in get_leaf_frame_caller_aarch64()
/kernel/liteos_a/testsuites/unittest/container/smoke/
H A DIt_mnt_container_002.cpp77 char *stack = nullptr; in ItMntContainer002() local
80 stack = (char *)mmap(nullptr, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); in ItMntContainer002()
81 ASSERT_NE(stack, MAP_FAILED); in ItMntContainer002()
86 stackTop = stack + STACK_SIZE; in ItMntContainer002()
H A DIt_mnt_container_001.cpp67 char *stack = nullptr; in ItMntContainer001() local
70 stack = (char *)mmap(nullptr, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); in ItMntContainer001()
71 ASSERT_NE(stack, MAP_FAILED); in ItMntContainer001()
76 stackTop = stack + STACK_SIZE; in ItMntContainer001()
H A DIt_mnt_container_004.cpp61 char *stack = nullptr; in ItMntContainer004() local
64 stack = (char *)mmap(nullptr, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); in ItMntContainer004()
65 ASSERT_NE(stack, MAP_FAILED); in ItMntContainer004()
70 stackTop = stack + STACK_SIZE; in ItMntContainer004()
H A DIt_mnt_container_003.cpp62 char *stack = nullptr; in ItMntContainer003() local
65 stack = (char *)mmap(nullptr, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); in ItMntContainer003()
66 ASSERT_NE(stack, MAP_FAILED); in ItMntContainer003()
71 stackTop = stack + STACK_SIZE; in ItMntContainer003()
H A DIt_mnt_container_006.cpp79 char *stack = nullptr; in ItMntContainer006() local
82 stack = (char *)mmap(nullptr, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); in ItMntContainer006()
83 ASSERT_NE(stack, MAP_FAILED); in ItMntContainer006()
85 stackTop = stack + STACK_SIZE; in ItMntContainer006()
H A DIt_mnt_container_007.cpp70 char *stack = nullptr; in ItMntContainer007() local
73 stack = (char *)mmap(nullptr, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); in ItMntContainer007()
74 ASSERT_NE(stack, MAP_FAILED); in ItMntContainer007()
79 stackTop = stack + STACK_SIZE; in ItMntContainer007()
H A DIt_uts_container_002.cpp71 char *stack = (char*)mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); in ItUtsContainer002() local
72 ASSERT_TRUE(stack != NULL); in ItUtsContainer002()
73 char *stackTop = stack + STACK_SIZE; in ItUtsContainer002()
81 (void)munmap(stack, STACK_SIZE); in ItUtsContainer002()
H A DIt_uts_container_004.cpp72 char *stack = (char *)mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, CLONE_STACK_MMAP_FLAG, -1, 0); in ItUtsContainer004() local
73 ASSERT_TRUE(stack != NULL); in ItUtsContainer004()
74 char *stackTop = stack + STACK_SIZE; in ItUtsContainer004()
81 (void)munmap(stack, STACK_SIZE); in ItUtsContainer004()
/third_party/musl/src/linux/
H A Dclone.c24 int clone(int (*func)(void *), void *stack, int flags, void *arg, ...) in clone() argument
34 if ((flags & badflags) || !stack) in clone()
51 __clone(func, stack, flags, arg, ptid, tls, ctid)); in clone()
60 int ret = __clone(clone_start, stack, flags, &csa, ptid, tls, ctid); in clone()
/third_party/ltp/testcases/kernel/syscalls/kcmp/
H A Dkcmp03.c30 static void *stack; variable
44 stack = SAFE_MALLOC(STACK_SIZE); in setup()
49 free(stack); in cleanup()
79 STACK_SIZE, stack); in verify_kcmp()
/kernel/linux/linux-5.10/arch/um/os-Linux/skas/
H A Dprocess.c112 * the stub stack page. We just have to copy it. in get_skas_faultinfo()
180 * @stack: pointer to the new userspace stack page, can be NULL, if? FIXME:
183 * This function will run on a temporary stack page.
193 static int userspace_tramp(void *stack) in userspace_tramp() argument
217 if (stack != NULL) { in userspace_tramp()
218 fd = phys_mapping(to_phys(stack), &offset); in userspace_tramp()
223 printk(UM_KERN_ERR "mapping segfault stack " in userspace_tramp()
229 if (stack != NULL) { in userspace_tramp()
257 * @stub_stack: pointer to the stub stack
268 void *stack; start_userspace() local
555 new_thread(void *stack, jmp_buf *buf, void (*handler)(void)) new_thread() argument
580 start_idle_thread(void *stack, jmp_buf *switch_buf) start_idle_thread() argument
[all...]
/kernel/linux/linux-6.6/arch/um/os-Linux/skas/
H A Dprocess.c162 * the stub stack page. We just have to copy it. in get_skas_faultinfo()
229 * @stack: pointer to the new userspace stack page, can be NULL, if? FIXME:
232 * This function will run on a temporary stack page.
242 static int userspace_tramp(void *stack) in userspace_tramp() argument
262 if (stack != NULL) { in userspace_tramp()
263 fd = phys_mapping(uml_to_phys(stack), &offset); in userspace_tramp()
268 printk(UM_KERN_ERR "mapping segfault stack at 0x%lx failed, errno = %d\n", in userspace_tramp()
273 if (stack != NULL) { in userspace_tramp()
301 * @stub_stack: pointer to the stub stack
312 void *stack; start_userspace() local
615 new_thread(void *stack, jmp_buf *buf, void (*handler)(void)) new_thread() argument
640 start_idle_thread(void *stack, jmp_buf *switch_buf) start_idle_thread() argument
[all...]

Completed in 13 milliseconds

12345678910>>...124