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

<<11121314151617181920>>

  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
cpsetup-bad.s 12 # ASM: :[[@LINE-1]]:23: error: expected save register or stack offset
  /external/v8/src/base/
logging.cc 124 // FailureMessage is a stack allocated object which has a special marker field
126 // message from the stack.
150 // Format the error message into a stack object for later retrieveal by the
165 // Print the message object's address to force stack allocation.
  /external/autotest/client/cros/crash/
user_crash_test.py 117 line_number, stack):
118 """Search for frame entries in the given stack dump text.
124 frame_index: number of the stack frame (0 is innermost frame)
126 function_name: name of the function in the stack
129 stack: text string of stack frame entries on separate lines.
144 return re.search(regexp, stack) is not None
147 def _verify_stack(self, stack, basename, from_crash_reporter):
149 logging.debug('minidump_stackwalk output:\n%s', stack)
154 match = re.search(r'Crash reason:\s+([^\s]*)', stack)
    [all...]
  /external/mesa3d/src/glx/
indirect_vertex_array.c 118 free(arrays->stack);
119 arrays->stack = NULL;
294 arrays->stack = malloc(sizeof(struct array_stack_state)
298 if (arrays->stack == NULL) {
1958 struct array_stack_state *stack = local
1984 struct array_stack_state *stack; local
    [all...]
  /art/runtime/arch/mips64/
jni_entrypoints_mips64.S 52 ld $a0, 0($sp) # restore registers from stack
71 daddiu $sp, $sp, 80 # restore the stack
  /art/runtime/verifier/
reg_type_test.cc 38 ArenaStack stack(Runtime::Current()->GetArenaPool());
39 ScopedArenaAllocator allocator(&stack);
62 ArenaStack stack(Runtime::Current()->GetArenaPool());
63 ScopedArenaAllocator allocator(&stack);
88 ArenaStack stack(Runtime::Current()->GetArenaPool());
89 ScopedArenaAllocator allocator(&stack);
363 ArenaStack stack(Runtime::Current()->GetArenaPool());
364 ScopedArenaAllocator allocator(&stack);
380 ArenaStack stack(Runtime::Current()->GetArenaPool());
381 ScopedArenaAllocator allocator(&stack);
    [all...]
  /art/test/911-get-stack-trace/src/art/
PrintThread.java 26 public static void print(String[][] stack) {
28 for (String[] stackElement : stack) {
41 // We have to ignore some threads when printing all stack traces. These are threads that may or
49 // We have to skip the stack of some threads when printing all stack traces. These are threads
50 // that may have a different call stack (e.g., when run as an app), or may be in a
  /bionic/libc/arch-mips/bionic/
__bionic_clone.S 39 # set up child stack
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
GccBase.lds 72 *(.note.GNU-stack)
  /device/linaro/bootloader/edk2/IntelFspPkg/Library/BaseFspSwitchStackLib/Ia32/
Stack.s 14 # Switch the stack from temporary memory to permenent memory.
62 # Load new stack
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/
PeiCoreEntry.asm 36 ; Obtain the stack information
57 ; Set stack top pointer
76 ; Push processor count to stack first, then BIST status (AP then BSP)
125 ; Pass stack size into the PEI Core
  /external/cldr/tools/java/org/unicode/cldr/util/
StackTracker.java 17 * A StackTracker tracks which stack frame various objects were created from.
19 * print out the stack frame of all adds() not balanced by remove().
44 String stack = currentStack(); local
45 stacks.put(o, stack);
58 * internal - convert a stack to string
74 * Get this tracker as a string. Prints any leaked objects, and the stack frame of where they were constructed.
101 * Convenience function, gets the current stack trace.
103 * @return current stack trace
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_internal.h 48 // The |stack| parameter is inout. It is pre-filled with the address,
50 // other stack frames.
51 virtual bool SymbolizePC(uptr addr, SymbolizedStack *stack) {
122 bool SymbolizePC(uptr addr, SymbolizedStack *stack) override;
sanitizer_symbolizer_posix_libcdep.cc 282 bool SymbolizePC(uptr addr, SymbolizedStack *stack) override {
284 SendCommand(stack->info.module, stack->info.module_offset)) {
285 ParseSymbolizePCOutput(buf, stack);
350 bool SymbolizePC(uptr addr, SymbolizedStack *stack) override {
352 stack->info.module, stack->info.module_offset, buffer_, kBufferSize);
353 if (result) ParseSymbolizePCOutput(buffer_, stack);
  /external/elfutils/tests/
run-deleted.sh 24 # stack will see the valgrind process backtrace.
35 # .../elfutils/src/stack: dwfl_thread_getframes tid 26376 at 0x4006c8 in .../elfutils/tests/deleted: no matching address range
36 testrun ${abs_top_builddir}/src/stack -p $pid 1>bt 2>bt.err || true
  /external/emma/core/java12/com/vladium/logging/
Logger.java 269 * Logs 'msg' from an unnamed calling method followed by the 'throwable' stack
283 * Logs 'msg' from a given calling method followed by the 'throwable' stack
310 * Returns the current top of the thread-local logger stack or the static
311 * Logger instance scoped to Logger.class if the stack is empty.
317 final LinkedList stack = (LinkedList) THREAD_LOCAL_STACK.get (); local
319 // [assertion: stack != null]
321 if (stack.isEmpty ())
327 return (Logger) stack.getLast ();
340 final LinkedList stack = (LinkedList) THREAD_LOCAL_STACK.get (); local
341 stack.addLast (ctx)
355 final LinkedList stack = (LinkedList) THREAD_LOCAL_STACK.get (); local
    [all...]
  /external/freetype/src/lzw/
ftzopen.c 117 /* grow the character stack */
130 if ( state->stack == state->stack_0 )
132 state->stack = NULL;
136 /* requirement of the character stack larger than 1<<LZW_MAX_BITS */
145 if ( FT_RENEW_ARRAY( state->stack, old_size, new_size ) )
220 state->stack = state->stack_0;
235 if ( state->stack != state->stack_0 )
236 FT_FREE( state->stack );
251 state->stack[state->stack_top++] = (FT_Byte)(c); \
380 buffer[result] = state->stack[state->stack_top]
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper_unittest.cc 113 const void* stack; local
115 EXPECT_TRUE(dumper.GetStackInfo(&stack, &stack_len, info.stack_pointer));
  /external/google-breakpad/src/google_breakpad/processor/
stackwalker.h 80 bool Walk(CallStack* stack,
84 // Returns a new concrete subclass suitable for the CPU that a stack was
106 // memory identifies a MemoryRegion that provides the stack memory
107 // for the stack to walk. modules, if non-NULL, is a CodeModules
108 // object that is used to look up which code module each stack frame is
111 // supplier to symbolize stack frame and look up caller frame information
120 // the stack walker resorts to stack scanning.
129 // The default number of words to search through on the stack
139 // allow the scanner to look farther down the stack
    [all...]
  /external/lua/src/
ldo.h 3 ** Stack and Call structure of Lua
17 ** Macro to check stack size and grow stack if needed. Parameters
19 ** stack across reallocations, doing the work only when needed.
20 ** 'condmovestack' is used in heavy tests to force a stack reallocation
32 #define savestack(L,p) ((char *)(p) - (char *)L->stack)
33 #define restorestack(L,n) ((TValue *)((char *)L->stack + (n)))
  /external/u-boot/arch/arm/lib/
elf_arm_efi.lds 60 *(.note.GNU-stack)
  /external/u-boot/arch/x86/lib/
elf_x86_64_efi.lds 76 *(.note.GNU-stack)
  /external/u-boot/scripts/
checkstack.pl 3 # Check the stack usage of functions
28 # $& (whole re) matches the complete objdump line with the stack growth
29 # $1 (first bracket) matches the size of the stack growth
31 # $dre is similar, but for dynamic stack redutions:
32 # $& (whole re) matches the complete objdump line with the stack growth
33 # $1 (first bracket) matches the dynamic amount of the stack growth
36 my (@stack, $re, $dre, $x, $xs, $funcre);
150 push @stack, "$intro$size\n";
166 push @stack, "$intro$size\n";
171 print sort { ($b =~ /:\t*(\d+)$/)[0] <=> ($a =~ /:\t*(\d+)$/)[0] } @stack;
    [all...]
  /external/v8/src/
async-hooks-wrapper.h 8 #include <stack>
90 std::stack<AsyncContext> asyncContexts;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
Thunk16.asm 71 ; The order of saved registers on the stack matches the order they appears
144 SavedSp DD ? ; restore stack
173 mov ss, esi ; set up 16-bit stack segment
174 mov sp, bx ; set up 16-bit stack pointer
236 push rbx ; Save ds segment register on the stack
238 push rbx ; Save es segment register on the stack
240 push rbx ; Save ss segment register on the stack
248 imul eax, r8d, 16 ; eax <- r8d(stack segment) * 16
249 mov ebx, edi ; ebx <- stack for 16-bit code
251 add edi, eax ; edi <- linear address of 16-bit stack
    [all...]

Completed in 1977 milliseconds

<<11121314151617181920>>