Home
last modified time | relevance | path

Searched refs:stack (Results 426 - 450 of 959) sorted by relevance

1...<<11121314151617181920>>...39

/third_party/jerryscript/jerry-core/ext/
H A Dtracker.h60 char* GetStacktraceString(ecma_string_t* stack);
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_memorypool.h32 #include <stack>
/third_party/node/test/addons/report-api/
H A Dtest.js29 // Check that the javascript stack is present.
31 assert.strictEqual(content.javascriptStack.stack.findIndex((frame) => frame.match('myAddonMain')), 0);
33 assert.strictEqual(content.javascriptStack.message, 'No stack.');
/third_party/node/deps/v8/src/heap/
H A Dinvalidated-slots.h9 #include <stack>
/third_party/node/deps/v8/src/profiler/
H A Dtick-sample.h50 * Get a call stack sample from the isolate.
54 * \param frames Caller allocated buffer to store stack frames.
58 * provides number of actual captured stack frames and
89 void* tos; // Top stack value (*sp).
94 void* stack[kMaxFramesCount]; // Call stack. member
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/aarch64/
H A Dalign.rs44 pub stack: ::c_ulonglong,
/third_party/skia/third_party/externals/freetype/src/lzw/
H A Dftzopen.h139 FT_Byte* stack; /* character stack */ member
/third_party/node/deps/v8/src/inspector/
H A Dvalue-mirror.cc157 // For whatever reason, ASan on MacOS has bigger stack frames. in toProtocolValue()
252 // * Usually return the stack trace found in the {stack} property.
253 // * If the stack trace does not start with the class name of the passed
255 // {message} property and the rest of the stack trace.
256 // (The stack trace is only used if {message} was also found in
257 // said stack trace).
264 v8::base::Optional<String16> stack; in descriptionForError() local
267 if (object->Get(context, toV8String(isolate, "stack")) in descriptionForError()
270 stack in descriptionForError()
[all...]
/third_party/python/Lib/test/
H A Dtest_traceback.py1001 # It also varies depending on the platform (stack size)
2353 stack = Skip_G.extract(
2356 self.assertEqual(len(stack), 1)
2359 stack[0],
2377 self.assertEqual(expected_stack, exc.stack)
2399 self.assertEqual(expected_stack, exc.stack)
2421 self.assertEqual(expected_stack, exc.stack)
2441 self.assertEqual(expected_stack, exc.stack)
2486 self.assertEqual(expected_stack, exc.stack)
2506 self.assertEqual(expected_stack, exc.stack)
[all...]
H A Dtest_sys_setprofile.py60 self.stack = []
69 self.stack.append(frame)
73 self.stack.pop()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dreg.py98 stack = deque()
99 stack.append(tree)
101 while len(stack) > 0:
102 parent = stack.pop()
109 stack.append(child)
176 stack = deque()
177 stack.append(tree)
179 while len(stack) > 0:
180 parent = stack.pop()
187 stack
[all...]
/third_party/python/Python/
H A Dbltinmodule.c1344 PyObject **stack; in map_next() local
1350 stack = small_stack; in map_next()
1353 stack = PyMem_Malloc(niters * sizeof(stack[0])); in map_next()
1354 if (stack == NULL) { in map_next()
1367 stack[i] = val; in map_next()
1371 result = _PyObject_VectorcallTstate(tstate, lz->func, stack, nargs, NULL); in map_next()
1375 Py_DECREF(stack[i]); in map_next()
1377 if (stack != small_stack) { in map_next()
1378 PyMem_Free(stack); in map_next()
[all...]
H A Dcompile.c49 /* A soft limit for stack use, to avoid excessive
53 * Code that could use more stack than this is
238 /* Exception stack at start of block, used by assembler to create the exception handling table */
251 /* depth of stack upon entry of block, computed by stackdepth() */
376 // i items off of the stack. The end result looks like this (with each block
386 // The number of items on top of the stack that need to *stay* on top of the
387 // stack. Variable captures go beneath these. All of them will be popped on
934 /* Return the stack effect of opcode with argument oparg.
936 Some opcodes have different stack effect when jump to the target and
1082 * Restore the stack positio in stack_effect()
7158 basicblock **stack, **sp; stackdepth() local
7283 push_except_block(ExceptStack *stack, struct instr *setup) push_except_block() argument
7295 pop_except_block(ExceptStack *stack) pop_except_block() argument
7301 except_stack_top(ExceptStack *stack) except_stack_top() argument
7318 copy_except_stack(ExceptStack *stack) copy_except_stack() argument
8628 int *stack = PyMem_Malloc(depth * sizeof(int)); swaptimize() local
9181 basicblock **stack, **sp; mark_reachable() local
[all...]
/third_party/vulkan-headers/registry/
H A Dreg.py98 stack = deque()
99 stack.append(tree)
101 while len(stack) > 0:
102 parent = stack.pop()
109 stack.append(child)
176 stack = deque()
177 stack.append(tree)
179 while len(stack) > 0:
180 parent = stack.pop()
187 stack
[all...]
/third_party/node/lib/internal/
H A Dasync_hooks.js21 * current execution stack.
23 * the resource corresponding to the current execution stack.
33 * stack. Each pushAsyncContext() call adds two doubles to it, and each
45 // responsible for the current execution stack. This is unwound as each resource
46 // exits. In the case of a fatal exception this stack is emptied after calling
160 if (typeof e?.stack === 'string') {
161 process._rawDebug(e.stack);
165 process._rawDebug(o.stack);
221 // Called from native. The asyncId stack handling is taken care of there
254 // Set the name property of the function as it looks good in the stack trac
[all...]
/third_party/node/deps/npm/node_modules/jsonparse/
H A Djsonparse.js66 this.stack = [];
324 this.stack.push({value: this.value, key: this.key, mode: this.mode});
328 var parent = this.stack.pop();
/third_party/lz4/tests/
H A Dtest-lz4-speed.py344 stack = traceback.format_exc() variable
346 send_email(args.emails, email_topic, stack, have_mutt, have_mail)
347 print(stack)
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dpkcs12.rs13 use crate::stack::Stack;
327 if let Some(stack) = parsed.ca { in parse_empty_chain()
328 assert_eq!(stack.len(), 0); in parse_empty_chain()
/third_party/gn/src/base/files/
H A Dfile_enumerator.h13 #include "base/containers/stack.h"
161 // A stack that keeps track of which subdirectories we still need to
163 base::stack<FilePath> pending_paths_;
/third_party/libunwind/libunwind/src/x86_64/
H A Dsetcontext.S76 /* push the return address on the stack */
86 /* We do not need executable stack. */
87 .section .note.GNU-stack,"",@progbits
/third_party/libunwind/libunwind/tests/
H A Dflush-cache.S100 /* We do not need executable stack. */
101 .section .note.GNU-stack,"",@progbits
/third_party/libunwind/libunwind/src/riscv/
H A Dsetcontext.S86 /* We do not need executable stack. */
87 .section .note.GNU-stack,"",@progbits
H A Dgetcontext.S86 /* We do not need executable stack. */
87 .section .note.GNU-stack,"",@progbits
/third_party/node/test/parallel/
H A Dtest-vm-run-in-new-context.js83 const lines = err.stack.split('\n');
90 // The rest of the stack is uninteresting.
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-solaris.cc20 #include <sys/stack.h> // for stack alignment

Completed in 21 milliseconds

1...<<11121314151617181920>>...39