| /external/compiler-rt/lib/msan/ |
| msan_report.cc | 48 " in the stack frame of function '%s%s%s'%s\n", 66 StackTrace stack; local 67 o = o.getNextChainedOrigin(&stack); 70 stack.Print(); 77 StackTrace stack = o.getStackTraceForHeapOrigin(); local 78 switch (stack.tag) { 95 stack.Print(); 99 void ReportUMR(StackTrace *stack, u32 origin) { 108 stack->Print(); 112 ReportErrorSummary("use-of-uninitialized-value", stack); [all...] |
| msan.h | 132 // High memory: heap, modules and main thread stack 154 // Main thread stack and DSOs at 0x7f0000000000 (sometimes 0x7e0000000000). 231 void *MsanCalloc(StackTrace *stack, uptr nmemb, uptr size); 232 void *MsanReallocate(StackTrace *stack, void *oldp, uptr size, 234 void MsanDeallocate(StackTrace *stack, void *ptr); 252 void GetStackTrace(BufferedStackTrace *stack, uptr max_s, uptr pc, uptr bp, 255 void ReportUMR(StackTrace *stack, u32 origin); 256 void ReportExpectedUMRNotFound(StackTrace *stack); 267 // Returns a "chained" origin id, pointing to the given stack trace followed by 269 u32 ChainOrigin(u32 id, StackTrace *stack); [all...] |
| /external/compiler-rt/lib/asan/ |
| asan_malloc_win.cc | 45 return asan_free(ptr, &stack, FROM_MALLOC); 66 return asan_malloc(size, &stack); 82 return asan_calloc(nmemb, size, &stack); 103 return asan_realloc(ptr, size, &stack); 167 void *p = asan_malloc(dwBytes, &stack); 181 asan_free(lpMem, &stack, FROM_MALLOC); 192 return asan_realloc(lpMem, dwBytes, &stack);
|
| asan_allocator.cc | 323 void *Allocate(uptr size, uptr alignment, BufferedStackTrace *stack, 328 CHECK(stack); 422 m->alloc_context_id = StackDepotPut(*stack); 463 BufferedStackTrace *stack) { 469 ReportInvalidFree(ptr, old_chunk_state, stack); 479 void QuarantineChunk(AsanChunk *m, void *ptr, BufferedStackTrace *stack, 487 m->free_context_id = StackDepotPut(*stack); 511 void Deallocate(void *ptr, uptr delete_size, BufferedStackTrace *stack, 522 if (!AtomicallySetQuarantineFlagIfAllocated(m, ptr, stack)) return; 526 ReportAllocTypeMismatch((uptr)ptr, stack, (AllocType)m->alloc_type [all...] |
| /external/compiler-rt/lib/sanitizer_common/ |
| sanitizer_symbolizer_mac.cc | 31 bool DlAddrSymbolizer::SymbolizePC(uptr addr, SymbolizedStack *stack) { 36 stack->info.function = demangled ? internal_strdup(demangled) : nullptr; 135 bool AtosSymbolizer::SymbolizePC(uptr addr, SymbolizedStack *stack) { 143 if (!ParseCommandOutput(buf, addr, &stack->info.function, &stack->info.module, 144 &stack->info.file, &line, nullptr)) { 148 stack->info.line = (int)line;
|
| /external/compiler-rt/lib/tsan/dd/ |
| dd_rtl.cc | 23 BufferedStackTrace stack; local 25 stack.Unwind(1000, 0, 0, 0, 0, 0, false); 27 if (stack.size <= skip) 29 return StackDepotPut(StackTrace(stack.trace + skip, stack.size - skip)); 33 StackTrace stack = StackDepotGet(stk); local 35 stack.Print();
|
| /external/google-breakpad/src/processor/ |
| stackwalker.cc | 106 CallStack* stack, 109 BPLOG_IF(ERROR, !stack) << "Stackwalker::Walk requires |stack|"; 110 assert(stack); 111 stack->Clear(); 141 BPLOG(INFO) << "Stack walk is interrupted."; 170 // Add the frame to the call stack. Relinquish the ownership claim 171 // over the frame, because the stack now owns it. 172 stack->frames_.push_back(frame.release()); 173 if (stack->frames_.size() > max_frames_) [all...] |
| /external/python/cpython3/Tools/clinic/ |
| cpp.py | 28 self.stack = [] 50 return " && ".join(condition for token, condition in self.stack) 62 if self.stack: 74 if not self.stack: 76 return self.stack.pop() 170 self.stack.append(("if", condition)) 178 self.stack.append(('else', negate(previous_condition)))
|
| /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/Arm/ |
| ExceptionSupport.ARMv6.S | 3 # Use ARMv6 instruction to operate on a single stack
19 This is the stack constructed by the exception handler (low address to high address)
96 srsdb #0x13! @ Store return state on SVC stack
97 cpsid f,#0x13 @ Switch to SVC for common stack
108 srsdb #0x13! @ Store return state on SVC stack
120 srsdb #0x13! @ Store return state on SVC stack
121 cpsid f,#0x13 @ Switch to SVC for common stack
132 srsdb #0x13! @ Store return state on SVC stack
133 cpsid f,#0x13 @ Switch to SVC for common stack
143 srsdb #0x13! @ Store return state on SVC stack
[all...] |
| /cts/libs/json/src/com/android/json/stream/ |
| JsonReader.java | 191 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonReader 507 stack.clear(); 508 stack.add(JsonScope.CLOSED); 535 return stack.get(stack.size() - 1); 539 return stack.remove(stack.size() - 1); 543 stack.add(newTop); 547 * Replace the value on the top of the stack with the given value. 550 stack.set(stack.size() - 1, newTop) [all...] |
| /external/autotest/frontend/client/src/autotest/tko/ |
| TestLabelManager.java | 42 private StackPanel stack = new StackPanel(); field in class:TestLabelManager 54 stack.showStack(STACK_CREATE); 56 stack.showStack(STACK_SELECT); 67 stack.add(selectPanel); 73 stack.add(createPanel); 80 dialogPanel.add(stack); 105 stack.showStack(STACK_CREATE); 108 stack.showStack(STACK_SELECT); 127 stack.showStack(STACK_SELECT); 160 if (stack.getSelectedIndex() == STACK_CREATE) [all...] |
| /external/compiler-rt/lib/lsan/ |
| lsan_interceptors.cc | 56 return Allocate(stack, size, 1, kAlwaysClearMemory); 80 return Allocate(stack, size, 1, true); 86 return Reallocate(stack, q, size, 1); 92 return Allocate(stack, size, alignment, kAlwaysClearMemory); 98 return Allocate(stack, size, alignment, kAlwaysClearMemory); 104 *memptr = Allocate(stack, size, alignment, kAlwaysClearMemory); 112 void *res = Allocate(stack, size, alignment, kAlwaysClearMemory); 122 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory); 153 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory); 161 return Allocate(stack, size, 1, kAlwaysClearMemory) [all...] |
| /external/tensorflow/tensorflow/core/grappler/utils/ |
| scc.cc | 17 #include <stack> 50 // StrongConnect "call stack" storage. 57 void StrongConnect(SCCNodeData* v, std::stack<SCCNodeData*>* stack, int* index, 61 // The "call stack" state is composed of a SCCNodeData's caller and 65 stack->push(v); 67 // No one put v on a StrongConnect call stack, reset caller values. 82 stack->push(w); 93 top = stack->top(); 94 stack->pop() 129 std::stack<SCCNodeData*> stack; local [all...] |
| /external/u-boot/arch/arm/lib/ |
| vectors.S | 140 /* IRQ stack memory (calculated at run-time) + 8 bytes */ 150 @ IRQ stack frame. 183 @ carve out a frame on current user stack 189 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack 193 mov r0, sp @ save current stack into r0 (param register) 199 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good. 218 ldr r13, IRQ_STACK_START_IN @ setup our mode stack 220 str lr, [r13] @ save caller lr in position 0 of saved stack 222 str lr, [r13, #4] @ save spsr in position 1 of saved stack 230 .macro get_irq_stack @ setup IRQ stack [all...] |
| /external/v8/src/compiler/ |
| jump-threading.cc | 22 ZoneStack<RpoNumber>& stack; member in struct:v8::internal::compiler::__anon48316::JumpThreadingState 27 stack.push(num); 32 RpoNumber from = stack.top(); 40 stack.push(to); 52 if (pop) stack.pop(); 75 ZoneStack<RpoNumber> stack(local_zone); 76 JumpThreadingState state = {false, result, stack}; 79 // Iterate over the blocks forward, pushing the blocks onto the stack. 84 // Process the stack, which implements DFS through empty blocks. 85 while (!state.stack.empty()) [all...] |
| /external/v8/tools/profview/ |
| profile-utils.js | 115 // We store list of ticks and positions within the ticks stack by 133 function findNextFrame(file, stack, stackPos, step, filter) { 136 while (stackPos >= 0 && stackPos < stack.length) { 137 codeId = stack[stackPos]; 151 let stack = file.ticks[stackIndex].s; 153 let codeId = stack[stackPos]; 162 console.assert(stackPos >= 0 && stackPos < stack.length); 188 let stack = file.ticks[stackIndex].s; 191 let stackPos = findNextFrame(file, stack, depth + step, step, filter); 218 let stack = file.ticks[tickIndex].s [all...] |
| /external/libpng/contrib/tools/ |
| pngcp.c | 264 #define SL 8 /* stack limit in display, below */ 449 unsigned int csp; /* next stack entry to use */ 463 struct stack struct in struct:display 474 } stack[SL]; /* Stack of entries being tested */ member in struct:display 758 offset = dp->stack[sp-1].opt_string_end; 781 dp->stack[sp].opt_string_end = set_opt_string_(dp, sp, dp->stack[sp].opt, 782 options[dp->stack[sp].opt].values[dp->stack[sp].entry].name) [all...] |
| /bionic/libc/arch-arm/bionic/ |
| __bionic_clone.S | 34 # save registers to parent stack 45 # Push 'fn' and 'arg' onto the child stack. 66 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| multifile.py | 45 self.stack = []
81 self.level = len(self.stack)
95 for i, sep in enumerate(reversed(self.stack)):
136 self.stack.append(sep)
142 if self.stack == []:
149 self.stack.pop()
|
| /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/ |
| SwitchStack.asm | 29 ; (rcx) EntryPoint - Entry point with new stack.
32 ; (r9) NewStack - The pointer to new stack.
44 ; Reserve space for register parameters (rcx, rdx, r8 & r9) on the stack,
|
| /external/compiler-rt/lib/tsan/rtl/ |
| tsan_suppressions.cc | 113 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp) { 115 if (!suppression_ctx->SuppressionCount() || stack == 0 || 116 !stack->suppressable) 121 for (const SymbolizedStack *frame = stack->frames; frame; 127 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr) 128 return IsSuppressed(kSuppressionRaceTop, stack->frames->info, sp);
|
| /external/deqp-deps/glslang/glslang/MachineIndependent/ |
| PoolAlloc.cpp | 180 stack.push_back(state); 197 if (stack.size() < 1) 200 tHeader* page = stack.back().page; 201 currentPageOffset = stack.back().offset; 220 stack.pop_back(); 229 while (stack.size() > 0)
|
| /external/grpc-grpc/src/core/lib/channel/ |
| channel_stack.h | 34 for that stack. */ 100 See grpc_call_next_op on how to call the next element in the stack */ 105 See grpc_channel_next_op on how to call the next element in the stack */ 125 The bottom filter of a stack will be passed a non-NULL pointer to 138 is_first, is_last designate this elements position in the stack, and are 172 /* A channel stack tracks a set of related filters for one channel, and 177 /* Memory required for a call stack (computed at channel stack 182 /* A call stack tracks a set of related filters for one call, and guarantees 185 /* shared refcount for this channel stack [all...] |
| /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ |
| FrameSnapshotTest.java | 87 final Object[] stack = arr(Opcodes.INTEGER, Opcodes.LONG, local 89 expectedVisitor.visitFrame(Opcodes.F_FULL, 3, vars, 4, stack); 100 final Object[] stack = arr(Opcodes.INTEGER, Opcodes.LONG); local 101 expectedVisitor.visitFrame(Opcodes.F_FULL, 1, arr("Foo"), 2, stack); 109 * operand stack should be null if the input array is null. 118 final Object[] stack = arr(Opcodes.NULL); local 119 expectedVisitor.visitFrame(Opcodes.F_FULL, 1, arr("Foo"), 1, stack);
|
| /external/python/cpython2/Lib/ |
| multifile.py | 45 self.stack = [] 81 self.level = len(self.stack) 95 for i, sep in enumerate(reversed(self.stack)): 136 self.stack.append(sep) 142 if self.stack == []: 149 self.stack.pop()
|