Searched
refs:stack (Results
751 -
775 of
3945) sorted by null
<<31323334353637383940>>
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/ |
log.py | 38 # This mirrors the call stack of the profiled code as the log 182 stack = [st.totuple(1)] 184 while stack: 185 tree = stack.pop() 194 stack.extend(list(tree[1:]))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pickletools.py | 39 The PM has two data areas, "the stack" and "the memo". 41 Many opcodes push Python objects onto the stack; e.g., INT pushes a Python 42 integer object on the stack, whose value is gotten from a decimal string 44 opcodes take Python objects off the stack. The result of unpickling is 45 whatever object is left on the stack when the final STOP opcode is executed. 50 names. Some opcodes pop a stack object into the memo at a given index, 51 and others push a memo object at a given index onto the stack again. 111 a number of opcodes that operate on many stack elements at once (like APPENDS 153 # off the stack -- ArgumentDescriptor applies only to arguments embedded in 692 # Object descriptors. The stack used by the pickle machine holds objects [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
RecentsProvider.java | 79 public static final String STACK = "stack"; 93 public static final String STACK = "stack"; 133 RecentColumns.STACK + " BLOB DEFAULT NULL," + 149 ResumeColumns.STACK + " BLOB DEFAULT NULL," + 308 final DocumentStack stack = new DocumentStack(); local 315 cursor.getColumnIndex(RecentColumns.STACK)); 316 DurableUtils.readFromArray(rawStack, stack); 318 if (stack.root != null && predicate.apply(stack.root.authority)) [all...] |
/system/core/libutils/ |
RefBase.cpp | 49 // folder where stack traces are saved when DEBUG_REFS is enabled 116 refs->stack.log(LOG_TAG); 130 refs->stack.log(LOG_TAG); 137 CallStack stack(LOG_TAG); 203 snprintf(name, 100, DEBUG_REFS_CALLSTACK_PATH "/%p.stack", this); 208 ALOGD("STACK TRACE for %p saved in %s", this, name); 210 else ALOGE("FAILED TO PRINT STACK TRACE for %p in %s: %s", this, 221 CallStack stack; member in struct:android::RefBase::weakref_impl::ref_entry 238 ref->stack.update(2); 273 CallStack stack(LOG_TAG) [all...] |
/dalvik/hit/src/com/android/hit/ |
HprofParser.java | 412 StackTrace stack = mState.getStackTrace(thread.mStackTrace); local 414 threadSerialNumber, stack); 438 StackTrace stack = mState.getStackTrace(stackSerialNumber); local 497 ClassObj theClass = new ClassObj(id, stack, mClassNames.get(id)); 518 StackTrace stack = mState.getStackTrace(stackId); local 521 ClassInstance instance = new ClassInstance(id, stack, classId); 533 StackTrace stack = mState.getStackTrace(stackId); local 542 ArrayInstance array = new ArrayInstance(id, stack, Types.OBJECT, 555 StackTrace stack = mState.getStackTrace(stackId); local 564 ArrayInstance array = new ArrayInstance(id, stack, type, numElements [all...] |
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
codegen_unittest.cc | 274 std::vector<Instruction*> stack; local 288 stack.push_back(insn->jf_ptr); 293 if (stack.empty()) { 296 insn = stack.back(); 297 stack.pop_back(); 389 std::vector<BasicBlock*> stack; local 420 stack.push_back(all_blocks[insn->jf_ptr]); 425 if (stack.empty()) { 428 bb = stack.back(); 429 stack.pop_back() [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 299 Stack *stack; member in class:nv50_ir::RenamePass 406 stack = new Stack[func->allLValues.getSize()]; 411 if (stack) 412 delete[] stack; 418 if (!stack[val->id].getSize()) 420 return reinterpret_cast<LValue *>(stack[val->id].peek().u.p); 437 if (!stack) 461 stack[lval->id].push(ssa) [all...] |
/external/chromium_org/v8/src/ |
profile-generator.cc | 311 List<Position> stack(10); 312 stack.Add(Position(root_)); 313 while (stack.length() > 0) { 314 Position& current = stack.last(); 317 stack.Add(Position(current.current_child())); 320 if (stack.length() > 1) { 321 Position& parent = stack[stack.length() - 2]; 325 // Remove child from the stack. 326 stack.RemoveLast() [all...] |