HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 326 - 350 of 2132) sorted by null

<<11121314151617181920>>

  /external/tensorflow/tensorflow/python/autograph/lang/
special_functions_test.py 85 sl = l.stack()
90 self.assertEqual(special_functions.stack(1, strict=False), 1)
92 special_functions.stack([1, 2, 3], strict=False), [1, 2, 3])
93 # TODO(mdan): This should probably forward to tf.stack.
96 special_functions.stack(
101 special_functions.stack([1, 2, 3])
108 special_functions.stack(l, element_dtype=dtypes.float32)))
  /external/volley/src/test/java/com/android/volley/toolbox/
BaseHttpStackTest.java 38 BaseHttpStack stack = local
49 org.apache.http.HttpResponse resp = stack.performRequest(REQUEST, ADDITIONAL_HEADERS);
57 BaseHttpStack stack = local
69 org.apache.http.HttpResponse resp = stack.performRequest(REQUEST, ADDITIONAL_HEADERS);
78 BaseHttpStack stack = local
93 org.apache.http.HttpResponse resp = stack.performRequest(REQUEST, ADDITIONAL_HEADERS);
  /bionic/libc/arch-mips64/bionic/
__bionic_clone.S 46 PTR_SUBU $sp, FRAMESZ # allocate stack frame
50 # set up child stack
58 PTR_L $t0,FRAME_GP($sp) # copy gp to child stack
87 * For O32 etc the child stack must have space for a0..a3 to be stored
88 * For N64 etc, the child stack can be restored to the original value
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/X64/
SwitchStack.S 24 # (rdi) EntryPoint - Entry point with new stack.
27 # (rcx) NewStack - The pointer to new stack.
39 movq %rcx, %rsp // update stack pointer
46 # Reserve space for register parameters (rcx, rdx, r8 & r9) on the stack,
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
InternalSwitchStack.S 19 # Implementation of a stack switch on IA-32.
39 movl 20(%ebp), %esp # switch stack
46 pushl $0 # keeps gdb from unwinding stack
DivU64x32.c 44 push eax ; save quotient on stack
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
SwitchStack.S 28 # (rcx) EntryPoint - Entry point with new stack.
31 # (r9) NewStack - The pointer to new stack.
47 # Reserve space for register parameters (rcx, rdx, r8 & r9) on the stack,
51 pushq $0 // stop gdb stack unwind
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
ParseTreeBuilder.cs 47 Stack<ParseTree> callStack = new Stack<ParseTree>();
61 ParseTree[] stack = callStack.ToArray();
62 return stack[stack.Length - 1];
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_shadow_test.cc 51 int stack; local
56 CHECK(IsAppMem((uptr)&stack));
60 CHECK(IsShadowMem(MemToShadow((uptr)&stack)));
  /external/dynamic_depth/internal/xmpmeta/xml/
search.cc 3 #include <stack>
46 std::stack<xmlNodePtr> node_stack;
60 std::stack<xmlNodePtr> stack_to_reverse;
  /external/google-breakpad/src/processor/
stackwalker_ppc.cc 55 // supplied stack are invalid. Mark memory_ = NULL, which will cause
84 StackFrame* StackwalkerPPC::GetCallerFrame(const CallStack* stack,
86 if (!memory_ || !stack) {
87 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
91 // The instruction pointers for previous frames are saved on the stack.
93 // its return address in the calling procedure's stack frame at 8(%r1),
94 // and to allocate its own stack frame by decrementing %r1 (the stack
96 // no hardware stack, there is no distinction between the stack pointer an
    [all...]
stackwalker_amd64.h 32 // Provides stack frames given amd64 register context and a memory region
33 // corresponding to a amd64 stack.
57 // included in the stack. The other arguments are passed directly through
66 // A STACK CFI-driven frame walker for the AMD64
69 // Implementation of Stackwalker, using amd64 context (stack pointer in %rsp,
70 // stack base in %rbp) and stack conventions (saved stack pointer at 0(%rbp))
72 virtual StackFrame* GetCallerFrame(const CallStack* stack,
75 // Use cfi_frame_info (derived from STACK CFI records) to construc
    [all...]
stackwalker_arm.h 34 // Provides stack frames given arm register context and a memory region
35 // corresponding to an arm stack.
55 // included in the stack. The other arguments are passed directly through
70 // Implementation of Stackwalker, using arm context and stack conventions.
72 virtual StackFrame* GetCallerFrame(const CallStack* stack,
75 // Use cfi_frame_info (derived from STACK CFI records) to construct
85 // Scan the stack for plausible return addresses. The caller takes ownership
89 // Stores the CPU context corresponding to the youngest stack frame, to
97 // Validity mask for youngest stack frame. This is always
stackwalker_arm64.h 34 // Provides stack frames given arm64 register context and a memory region
35 // corresponding to an arm64 stack.
55 // included in the stack. The other arguments are passed directly through
71 // Implementation of Stackwalker, using arm64 context and stack conventions.
73 virtual StackFrame* GetCallerFrame(const CallStack* stack,
76 // Use cfi_frame_info (derived from STACK CFI records) to construct
86 // Scan the stack for plausible return addresses. The caller takes ownership
90 // Stores the CPU context corresponding to the youngest stack frame, to
94 // Validity mask for youngest stack frame. This is always
  /external/libchrome/base/sampling_heap_profiler/
sampling_heap_profiler.h 9 #include <stack>
39 std::vector<void*> stack; member in class:base::SamplingHeapProfiler::Sample
105 std::stack<std::unique_ptr<LockFreeAddressHashSet>> sampled_addresses_stack_;
  /external/libunwind/doc/
unw_step.tex 8 \begin{Name}{3}{unw\_step}{David Mosberger-Tang}{Programming Library}{unw\_step}unw\_step -- advance to next stack frame
20 the next older, less deeply nested stack frame.
25 if the updated cursor refers to a valid stack frame, or 0 if the
26 previous stack frame was the last frame in the chain. On error, the
44 (``program-counter'') of the next stack frame is invalid (e.g., not
46 \item[\Const{UNW\_EBADFRAME}] The next stack frame is invalid.
  /external/pdfium/core/fxcrt/xml/
cfx_xmlsyntaxparser.h 10 #include <stack>
116 std::stack<FX_XMLNODE> m_XMLNodeStack;
126 std::stack<wchar_t> m_SkipStack;
  /external/python/cpython3/Lib/asyncio/
format_helpers.py 72 stack = traceback.StackSummary.extract(traceback.walk_stack(f),
75 stack.reverse()
76 return stack
  /external/tensorflow/tensorflow/python/framework/
registry.py 64 # stack trace is [this_function, Register(), user_function,...]
66 stack = tf_stack.extract_stack()
67 stack_index = min(2, len(stack)-1)
69 user_function = stack[stack_index]
  /external/u-boot/arch/x86/lib/fsp/
fsp_common.c 97 /* Save the stack address to CMOS */
100 debug("Save stack address to CMOS: err=%d\n", ret);
111 int stack = CONFIG_FSP_TEMP_RAM_ADDR; local
144 stack = cmos_read32(CMOS_FSP_STACK_ADDR);
153 fsp_init(stack, boot_mode, nvs);
  /external/google-styleguide/cpplint/
cpplint_unittest.py     [all...]
  /development/vndk/tools/sourcedr/ninja/
list_source_file.py 52 stack = [start]
53 while stack:
54 cur = stack.pop()
78 stack.append(dep)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
DivU64x32.c 29 push eax ; save quotient on stack
  /external/boringssl/src/include/openssl/
ex_data.h 114 #include <openssl/stack.h>
  /external/compiler-rt/lib/asan/
asan_new_delete.cc 58 return asan_memalign(0, size, &stack, type);
105 asan_free(ptr, &stack, type);
127 asan_sized_free(ptr, size, &stack, FROM_NEW);
132 asan_sized_free(ptr, size, &stack, FROM_NEW_BR);

Completed in 2077 milliseconds

<<11121314151617181920>>