Home
last modified time | relevance | path

Searched refs:stack (Results 851 - 875 of 3151) sorted by relevance

1...<<31323334353637383940>>...127

/third_party/python/Tools/demo/
H A Dsortvisu.py418 stack = [(0, size)]
419 while stack:
420 first, last = stack[-1]
421 del stack[-1]
469 if n1 > 1: stack.append((first, right))
470 if n2 > 1: stack.append((left, last))
/third_party/python/Lib/test/
H A Dtest_bdb.py128 self.stack, self.index = super().get_stack(f, t)
129 self.frame = self.stack[self.index][0]
130 return self.stack, self.index
151 """Move up in the frame stack."""
155 self.frame = self.stack[self.index][0]
158 """Move down in the frame stack."""
159 if self.index + 1 == len(self.stack):
162 self.frame = self.stack[self.index][0]
252 # Call get_stack() to enable walking the stack with set_up() and
/third_party/skia/src/core/
H A DSkClipStack.cpp513 // the deepest save/restore stack we expect to see.
795 SkClipStack::Iter::Iter(const SkClipStack& stack, IterStart startLoc) in Iter() argument
796 : fStack(&stack) { in Iter()
797 this->reset(stack, startLoc); in Iter()
846 void SkClipStack::Iter::reset(const SkClipStack& stack, IterStart startLoc) { in reset() argument
847 fStack = &stack; in reset()
848 fIter.reset(stack.fDeque, static_cast<SkDeque::Iter::IterStart>(startLoc)); in reset()
886 // First check if the entire stack is known to be a rect by the top element. in isRRect()
/third_party/vulkan-loader/loader/
H A Dunknown_ext_chain_masm.asm23 ; creating a stack frame, because the actual parameters of the call are not known. Since the first parameter is known to be a
52 sub rsp, 56 ; Create the stack frame
57 mov qword ptr [rsp + 32], rax ; Move the func name onto the stack (fifth arg)
60 add rsp, 56 ; Clean up the stack frame
80 mov [esp + 4], ecx ; Overwrite the wrapped VkPhysicalDevice with the unwrapped one (on the stack)
82 jmp dword ptr [eax + (PHYS_DEV_OFFSET_INST_DISPATCH + (PTR_SIZE * num))] ; Jump to the next function in the chain, preserving the args on the stack
/device/soc/rockchip/common/sdk_linux/kernel/bpf/
H A Dverifier.c39 * instruction by instruction and updates register/stack state.
51 * insn is less then 4K, but there are too many branches that change stack/regs.
73 * that it wants to construct a pointer to some element within stack.
75 * (and -20 constant is saved for further stack bounds checking).
76 * Meaning that this reg is a pointer to stack plus known immediate constant.
104 * 2nd argument should be a pointer to stack, which will be used inside
116 * the stack of eBPF program.
129 * Now verifier checks that [R2, R2 + map's key_size) are within stack limits
163 /* verifier_state + insn_idx are pushed to stack when branch is encountered */
173 /* length of verifier log at the time this state was pushed on stack */
3200 u16 stack = env->subprog_info[func->subprogno].stack_depth; update_stack_depth() local
[all...]
/base/hiviewdfx/hiview/utility/common_utils/include/
H A Dtbox.h20 #include <stack>
/kernel/linux/linux-5.10/arch/powerpc/platforms/powermac/
H A DMakefile3 CFLAGS_bootx_init.o += -fno-stack-protector
/kernel/linux/linux-5.10/arch/um/drivers/
H A Dchan_user.h44 struct tty_port *port, unsigned long stack);
/kernel/linux/linux-5.10/arch/um/kernel/skas/
H A Dprocess.c54 return current->mm->context.id.stack; in current_stub_stack()
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dsc/
H A DMakefile26 # GCC < 7.1 cannot compile code using `double` and -mpreferred-stack-boundary=3
27 # (8B stack alignment).
28 dsc_ccflags += -mpreferred-stack-boundary=4
/kernel/linux/linux-5.10/tools/testing/selftests/vDSO/
H A DMakefile14 CFLAGS_vdso_standalone_test_x86 := -nostdlib -fno-asynchronous-unwind-tables -fno-stack-protector
/kernel/linux/linux-5.10/tools/testing/selftests/x86/
H A Dsysret_ss_attrs.c36 extern unsigned long call32_from_64(void *stack, void (*function)(void));
81 * end the system call with a valid stack segment. This in main()
/kernel/linux/linux-6.6/arch/powerpc/platforms/powermac/
H A DMakefile3 CFLAGS_bootx_init.o += -fno-stack-protector
/kernel/linux/linux-6.6/arch/s390/kernel/
H A Dhead64.S23 # Setup stack
/kernel/linux/linux-6.6/arch/um/drivers/
H A Dchan_user.h44 struct tty_port *port, unsigned long stack);
/kernel/linux/linux-6.6/arch/um/kernel/skas/
H A Dprocess.c54 return current->mm->context.id.stack; in current_stub_stack()
/kernel/linux/linux-6.6/tools/testing/selftests/x86/
H A Dsysret_ss_attrs.c36 extern unsigned long call32_from_64(void *stack, void (*function)(void));
81 * end the system call with a valid stack segment. This in main()
/third_party/libunwind/libunwind/src/s390x/
H A Dsetcontext.S75 // We do not need executable stack.
76 .section .note.GNU-stack,"",@progbits
H A Dgetcontext.S73 // We do not need executable stack.
74 .section .note.GNU-stack,"",@progbits
/third_party/libunwind/libunwind/tests/
H A Dia64-test-readonly-asm.S53 /* We do not need executable stack. */
54 .section .note.GNU-stack,"",@progbits
/third_party/musl/src/thread/microblaze/
H A Dclone.s5 # r5, r6, r7, r8, r9, r10, stack
/third_party/musl/src/thread/mips/
H A Dclone.s6 # Save function pointer and argument pointer on new thread stack
/third_party/mesa3d/src/util/
H A Dregister_allocate_internal.h108 * interfering nodes not in the stack.
121 * into the stack.
143 unsigned int *stack; member
146 /** Bit-set indicating, for each register, if it's in the stack */
166 * stack.
/third_party/ltp/include/lapi/
H A Dclone.h25 uint64_t __attribute__((aligned(8))) stack; member
/third_party/node/deps/v8/src/base/
H A Dlogging.cc114 // FailureMessage is a stack allocated object which has a special marker field
116 // message from the stack.
146 // Format the error message into a stack object for later retrieveal by the
161 // Print the message object's address to force stack allocation.

Completed in 16 milliseconds

1...<<31323334353637383940>>...127