| /external/fonttools/Lib/fontTools/misc/ |
| psLib.py | 157 self.stack = [] 308 self.stack.append(object) 311 stack = self.stack 312 if not stack: 313 raise PSError('stack underflow') 314 object = stack[-1] 318 del stack[-1] 333 del self.stack
|
| /external/google-breakpad/src/common/dwarf/ |
| dwarf2diehandler.h | 159 #include <stack> 326 // The type of a handler stack entry. This includes some fields 327 // which don't really need to be on the stack --- they could just be 331 // The offset of the DIE for this handler stack entry. 342 // Stack of DIE attribute handlers. At StartDIE(D), the top of the 343 // stack is the handler of D's parent, whom we may ask for a handler 344 // for D itself. At EndDIE(D), the top of the stack is D's handler. 347 // - Before we've seen the compilation unit's root DIE, the stack is 349 // perhaps push root_handler_ on the stack to look at the root's 353 // the stack for the root of the tree being ignored, rather tha [all...] |
| /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/ |
| DuplicateFrameEliminator.java | 35 final Object[] local, final int nStack, final Object[] stack) { 38 mv.visitFrame(type, nLocal, local, nStack, stack);
|
| ProbeInserter.java | 38 /** Maximum stack usage of the code to access the probe array. */ 75 // Stack[0]: [Z 79 // Stack[1]: I 80 // Stack[0]: [Z 84 // Stack[2]: I 85 // Stack[1]: I 86 // Stack[0]: [Z 116 // Max stack size of the probe code is 3 which can add to the 117 // original stack size depending on the probe locations. The accessor 118 // stack size is an absolute maximum, as the accessor code is inserte [all...] |
| /external/libavc/common/arm/ |
| ih264_intra_pred_luma_4x4_a9q.s | 107 stmfd sp!, {r4-r12, r14} @store register values to stack 120 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 182 stmfd sp!, {r4-r12, r14} @store register values to stack 200 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 264 stmfd sp!, {r4-r12, r14} @store register values to stack 342 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 400 stmfd sp!, {r4-r12, r14} @store register values to stack 422 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 482 stmfd sp!, {r4-r12, r14} @store register values to stack 504 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack [all...] |
| /external/libffi/src/aarch64/ |
| ffi.c | 29 /* Stack alignment requirement in bytes */ 413 size_t nsaa; /* Next stack offset. */ 479 /* Allocate an aligned slot on the stack and return a pointer to it. */ 481 allocate_to_stack (struct arg_state *state, void *stack, size_t alignment, 497 allocation = stack + state->nsaa; 559 unsigned char *stack, 569 memcpy (allocate_to_stack (state, stack, ty->alignment, ty->size), 587 none are available, allocate a stack slot and return a pointer 592 unsigned char *stack, 601 /* This is the only case for which the allocated stack siz [all...] |
| /external/libffi/src/bfin/ |
| ffi.c | 140 * This function prepares the parameters (copies them from the ecif to the stack) 144 void ffi_prep_args(unsigned char *stack, extended_cif *ecif) 150 argp = stack;
|
| /external/libffi/src/m88k/ |
| obsd.S | 67 | Allocate room for the image of r2-r9, and the stack space for 73 | Fill register and stack image 98 | Restore stack now that we don't need the args anymore 136 | Make room on the stack for saved register arguments and return 145 or %r5, %r30, 0 | calling stack 186 | Make room on the stack for saved register arguments 194 or %r5, %r30, 0 | calling stack
|
| /external/llvm/test/tools/llvm-objdump/Inputs/ |
| win64-unwind.exe.coff-x86_64.asm | 39 // Function with big stack allocation.
|
| /external/llvm/test/tools/llvm-readobj/ARM/ |
| attribute-10.s | 23 @CHECK-OBJ-NEXT: Description: 8-byte stack alignment, 1024-byte data alignment
|
| attribute-11.s | 23 @CHECK-OBJ-NEXT: Description: 8-byte stack alignment, 2048-byte data alignment
|
| attribute-12.s | 23 @CHECK-OBJ-NEXT: Description: 8-byte stack alignment, 4096-byte data alignment
|
| attribute-9.s | 23 @CHECK-OBJ-NEXT: Description: 8-byte stack alignment, 512-byte data alignment
|
| /external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
| nv50_ir_graph.cpp | 26 #include <stack> 171 std::stack<const Node *> stack; local 175 stack.push(node); 177 while (!stack.empty()) { 178 pos = stack.top(); 179 stack.pop(); 190 stack.push(ei.getNode()); 286 Stack bb, cross;
|
| /external/parameter-framework/upstream/parameter/ |
| Subsystem.h | 40 #include <stack> 242 // Mapping Context stack 243 std::stack<CMappingContext> _contextStack;
|
| /external/pcre/dist2/src/ |
| pcre2_jit_misc.c | 120 * Allocate a JIT stack * 147 jit_stack->stack = sljit_allocate_stack(startsize, maxsize, &jit_stack->memctl); 155 * Assign a JIT stack to a pattern * 177 * Free a JIT stack * 188 sljit_free_stack((struct sljit_stack *)(jit_stack->stack), &jit_stack->memctl);
|
| /external/proguard/src/proguard/preverify/ |
| CodePreverifier.java | 114 // Collect the stack map frames. 135 // Convert the stack values to types. 149 // Compress the stack map frames if the target is not Java Micro Edition. 207 // Remove any stack map (table) attribute from the code attribute. 221 // Put the frames into a stack map attribute. 230 // Put the frames into a stack map table attribute. 234 // Fill out the name of the stack map attribute. 238 // Add the new stack map (table) attribute to the code attribute. 340 * stack. If necessary, class constants are added to the constant pool 347 TracedStack stack) 512 VerificationType[] stack = fullFrame.stack; local [all...] |
| /external/protobuf/src/google/protobuf/util/internal/ |
| json_stream_parser.h | 34 #include <stack> 55 // - Changed from recursion to an explicit stack to allow resumption 126 // Runs the parser based on stack_ and p_, until the stack is empty or p_ runs 128 // the stack and return. 206 // The stack of parsing we still need to do. When the stack runs empty we will 208 std::stack<ParseType> stack_;
|
| /external/python/cpython2/Lib/idlelib/ |
| RemoteDebugger.py | 101 stack, i = self.idb.get_stack(frame, tb) 102 ##print >>sys.__stderr__, "get_stack() ->", stack 103 stack = [(wrap_frame(frame2), k) for frame2, k in stack] 104 ##print >>sys.__stderr__, "get_stack() ->", stack 105 return stack, i 306 stack, i = self.call("get_stack", frame._fid, tbid) 307 stack = [(FrameProxy(self.conn, fid), k) for fid, k in stack] 308 return stack, [all...] |
| /external/python/cpython2/Modules/_ctypes/libffi/src/aarch64/ |
| ffi.c | 29 /* Stack alignment requirement in bytes */ 410 size_t nsaa; /* Next stack offset. */ 476 /* Allocate an aligned slot on the stack and return a pointer to it. */ 478 allocate_to_stack (struct arg_state *state, void *stack, size_t alignment, 494 allocation = stack + state->nsaa; 556 unsigned char *stack, 566 memcpy (allocate_to_stack (state, stack, ty->alignment, ty->size), 584 none are available, allocate a stack slot and return a pointer 589 unsigned char *stack, 598 /* This is the only case for which the allocated stack siz [all...] |
| /external/python/cpython2/Modules/_ctypes/libffi/src/bfin/ |
| ffi.c | 140 * This function prepares the parameters (copies them from the ecif to the stack) 144 void ffi_prep_args(unsigned char *stack, extended_cif *ecif) 150 argp = stack;
|
| /external/python/cpython2/Modules/_ctypes/libffi/src/m88k/ |
| obsd.S | 67 | Allocate room for the image of r2-r9, and the stack space for 73 | Fill register and stack image 98 | Restore stack now that we don't need the args anymore 136 | Make room on the stack for saved register arguments and return 145 or %r5, %r30, 0 | calling stack 186 | Make room on the stack for saved register arguments 194 or %r5, %r30, 0 | calling stack
|
| /external/python/cpython3/Lib/idlelib/ |
| debugger_r.py | 100 stack, i = self.idb.get_stack(frame, tb) 101 stack = [(wrap_frame(frame2), k) for frame2, k in stack] 102 return stack, i 315 stack, i = self.call("get_stack", frame._fid, tbid) 316 stack = [(FrameProxy(self.conn, fid), k) for fid, k in stack] 317 return stack, i
|
| /external/selinux/libsemanage/src/ |
| conf-scan.l | 32 %option stack prefix="semanage_"
|
| /external/skia/modules/canvaskit/htmlcanvas/ |
| util.js | 21 // would occasionally throw "Maximum call stack size exceeded"
|