Home
last modified time | relevance | path

Searched refs:stack (Results 601 - 625 of 2301) sorted by relevance

1...<<21222324252627282930>>...93

/test/xts/acts/arkui/ace_ets_component_apilack/entry/src/main/ets/MainAbility/pages/compomettestjs/CanvasRenderingContext2D/
H A Dindex.js412 let stack = new StackAttribute();
413 stack.alignContent();
/third_party/ffmpeg/libavcodec/arm/
H A Dsbcdsp_armv6.S128 str r3, [sp, #-4]! @ save to stack
150 str r3, [sp, #-4]! @ save to stack
/third_party/ffmpeg/libavutil/arm/
H A Dasm.S82 ELF .section .note.GNU-stack,"",%progbits @ Mark stack as non-executable
/third_party/cmsis/CMSIS/Core/Include/a-profile/
H A Dcmsis_gcc_a.h796 \param [in] stack Stack Pointer value to set
798 __STATIC_FORCEINLINE void __set_SP(uint32_t stack) in __set_SP() argument
800 __ASM volatile("MOV sp, %0" : : "r" (stack) : "memory"); in __set_SP()
H A Dcmsis_clang_a.h773 \param [in] stack Stack Pointer value to set
775 __STATIC_FORCEINLINE void __set_SP(uint32_t stack) in __set_SP() argument
777 __ASM volatile("MOV sp, %0" : : "r" (stack) : "memory"); in __set_SP()
/third_party/lame/libmp3lame/i386/
H A Dnasm.h22 section .note.GNU-stack noalloc noexec nowrite progbits
44 section .note.GNU-stack progbits noalloc noexec nowrite align=1
/third_party/node/lib/internal/assert/
H A Dassertion_error.js350 // Prevent the error stack from being visible by duplicating the error
355 'stack' in actual && actual instanceof Error &&
356 'stack' in expected && expected instanceof Error) {
445 this['stack trace ' + i] = details[i].stack;
454 this.stack; // eslint-disable-line no-unused-expressions
/third_party/node/test/parallel/
H A Dtest-util-format.js451 assert.strictEqual(util.format(err), err.stack);
463 assert.strictEqual(util.format(customError), customError.stack);
464 // Doesn't capture stack trace
/third_party/node/deps/v8/src/profiler/
H A Dtick-sample.cc166 if (!GetStackSample(v8_isolate, &regs, record_c_entry_frame, stack, in Init()
169 // It is executing JS but failed to collect a stack trace. in Init()
252 // Check whether we interrupted setup/teardown of a stack frame in JS code. in GetStackSample()
260 // The frame is not setup, so it'd be hard to iterate the stack. Bailout. in GetStackSample()
348 // For arm64, the PC for the frame sometimes doesn't come from the stack, in GetStackSample()
361 PrintF(" - stack: (%u frames)\n", frames_count); in print()
363 PrintF(" %p\n", stack[i]); in print()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DContext9.h13 #include <stack>
259 std::stack<std::string> mMarkerStack;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A DContext11.h13 #include <stack>
277 std::stack<std::string> mMarkerStack;
/third_party/skia/src/gpu/
H A DGrResourceCache.h13 #include <stack>
556 std::stack<GrGpuResourceTag> grResourceTagCacheStack;
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcordz_info_test.cc248 // Cordz will record) because if the actual stack depth is over 64 in TEST()
254 // makes small modifications to its testing stack. 50 is sufficient to prove in TEST()
255 // that we got a decent stack. in TEST()
261 // In some environments we don't get stack traces. For example in Android in TEST()
262 // absl::GetStackTrace will return 0 indicating it didn't find any stack. The in TEST()
263 // resultant formatted stack will be "", but that still equals the stack in TEST()
265 // line number of the current stack isn't included in the HasSubstr check. in TEST()
324 std::string stack = FormatStack(info_parent->GetStack()); in TEST() local
326 EXPECT_THAT(stack, E in TEST()
[all...]
/third_party/selinux/libsepol/cil/src/
H A Dcil_build_ast.h129 int cil_gen_constrain_expr(struct cil_tree_node *current, enum cil_flavor flavor, struct cil_list **stack);
130 int cil_gen_expr(struct cil_tree_node *current, enum cil_flavor flavor, struct cil_list **stack);
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dcms.rs16 use crate::stack::StackRef;
167 /// Given a signing cert `signcert`, private key `pkey`, a certificate stack `certs`,
204 /// Given a certificate stack `certs`, data `data`, cipher `cipher` and flags `flags`,
284 use crate::stack::Stack;
308 let mut cert_stack = Stack::new().expect("failed to create stack"); in cms_encrypt_decrypt()
311 .expect("failed to add pub cert to stack"); in cms_encrypt_decrypt()
/third_party/glslang/glslang/MachineIndependent/
H A DlinkValidate.cpp1421 std::list<TCall*> stack; in checkCallGraphCycles() local
1422 newRoot->currentPath = true; // currentPath will be true iff it is on the stack in checkCallGraphCycles()
1423 stack.push_back(newRoot); in checkCallGraphCycles()
1424 while (! stack.empty()) { in checkCallGraphCycles()
1426 TCall* call = stack.back(); in checkCallGraphCycles()
1428 // Add to the stack just one callee. in checkCallGraphCycles()
1449 stack.push_back(&(*child)); in checkCallGraphCycles()
1456 stack.back()->currentPath = false; in checkCallGraphCycles()
1457 stack.back()->visited = true; in checkCallGraphCycles()
1458 stack in checkCallGraphCycles()
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dh264_chromamc.asm208 mov r6, rsp ; backup stack pointer
209 and rsp, ~(mmsize-1) ; align stack
279 mov rsp, r6 ; restore stack pointer
/third_party/node/lib/
H A Devents.js444 StringPrototypeSplit(err.stack, '\n'), 1);
446 StringPrototypeSplit(own.stack, '\n'), 1);
451 ' [... lines matching original stack trace ...]');
454 return err.stack + sep + ArrayPrototypeJoin(ownStack, '\n');
/third_party/node/src/crypto/
H A Dcrypto_util.cc319 Local<Value> stack; in SetFipsCrypto() local
320 if (!ToV8Value(env->context(), errors_).ToLocal(&stack) || in SetFipsCrypto()
321 exception->Set(env->context(), env->openssl_error_stack(), stack) in SetFipsCrypto()
/third_party/skia/tests/
H A DCanvasTest.cpp75 // We can't just test this with an SkCanvas on stack and in DEF_TEST()
361 // correct clip and matrix stack state.
378 // clip and matrix stack state on the playback canvas.
549 SkCanvasStack stack(w, h); in DEF_TEST()
550 stack.pushCanvas(std::move(c0), {0,0}); in DEF_TEST()
551 stack.pushCanvas(std::move(c1), {0,0}); in DEF_TEST()
/third_party/ffmpeg/libswresample/x86/
H A Dresample.asm77 ; on stack so that we have 'ctx' available as one extra register
117 ; push temp variables to stack
302 ; on stack so that we have 'ctx' available as one extra register
349 ; push temp variables to stack
/third_party/glslang/SPIRV/
H A DSpvBuilder.h63 #include <stack>
618 // The SPIR-V Builder will maintain the stack of post-switch merge blocks for nested switches.
623 // recursion stack can hold the memory for it.
893 std::stack<spv::Id> currentDebugScopeId;
937 // stack of switches
938 std::stack<Block*> switchMerges;
940 // Our loop stack.
941 std::stack<LoopBlocks> loops;
/third_party/googletest/googletest/src/
H A Dgtest-death-test.cc289 // death test child process, which operates on a very small stack. Use in DeathTestAbort()
1246 // Two utility routines that together determine the direction the stack
1257 // Make sure sanitizers do not tamper with the stack here.
1260 // compiler optimizes the stack frame out, which happens on PowerPC targets.
1270 // Make sure AddressSanitizer does not tamper with the stack here.
1343 void* const stack = mmap(nullptr, stack_size, PROT_READ | PROT_WRITE, in ExecDeathTestSpawnChild() local
1345 GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); in ExecDeathTestSpawnChild()
1347 // Maximum stack alignment in bytes: For a downward-growing stack, this in ExecDeathTestSpawnChild()
1348 // amount is subtracted from size of the stack spac in ExecDeathTestSpawnChild()
[all...]
/third_party/node/deps/googletest/src/
H A Dgtest-death-test.cc293 // death test child process, which operates on a very small stack. Use in DeathTestAbort()
1212 // Two utility routines that together determine the direction the stack
1223 // Make sure sanitizers do not tamper with the stack here.
1226 // compiler optimizes the stack frame out, which happens on PowerPC targets.
1236 // Make sure AddressSanitizer does not tamper with the stack here.
1309 void* const stack = mmap(nullptr, stack_size, PROT_READ | PROT_WRITE, in ExecDeathTestSpawnChild() local
1311 GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); in ExecDeathTestSpawnChild()
1313 // Maximum stack alignment in bytes: For a downward-growing stack, this in ExecDeathTestSpawnChild()
1314 // amount is subtracted from size of the stack spac in ExecDeathTestSpawnChild()
[all...]
/third_party/mesa3d/src/util/
H A Dregister_allocate.c40 * pushed on a stack and removed (with its edges) from the graph.
44 * stack, their edges restored, and assigned a color different from
45 * their neighbors. Because they were pushed on the stack only when
566 g->tmp.stack = reralloc(g, g->tmp.stack, unsigned int, alloc); in ra_realloc_interference_graph()
698 g->tmp.stack[g->tmp.stack_count] = n; in add_node_to_stack()
708 * trivially-colorable nodes into a stack of nodes to be colored,
711 * If we encounter a case where we can't push any nodes on the stack, then
712 * we optimistically choose a node and push it on the stack. We heuristically
763 * stack in ra_simplify()
[all...]

Completed in 26 milliseconds

1...<<21222324252627282930>>...93