/external/chromium_org/v8/src/mips/ |
regexp-macro-assembler-mips.cc | 35 #include "regexp-stack.h" 53 * - t4 : Points to tip of backtrack stack 58 * - sp : Points to tip of C stack. 63 * The stack will have the following structure: 69 * backtracking stack). 186 // Pop Code* offset from backtrack stack, add Code* and jump to location. 315 // Put regexp engine registers on stack. 608 // Tell the system that we have a stack frame. Because the type is MANUAL, 612 // Actually emit code to start a new stack frame. 615 // Start new stack frame [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaMethod.java | 35 import java.util.Stack; 757 // We push the parent first, then the child on the stack. 758 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local 767 stack.add(null); // Start with null parent. 768 stack.add(rootBlock); 770 while (stack.size() > 0) { 771 SsaBasicBlock cur = stack.pop(); 772 SsaBasicBlock parent = stack.pop() 797 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local [all...] |
/external/chromium_org/third_party/freetype/src/cff/ |
cffparse.c | 46 parser->top = parser->stack; 452 FT_Byte** data = parser->stack; 456 if ( parser->top >= parser->stack + 6 ) 518 FT_Byte** data = parser->stack; 524 if ( parser->top >= parser->stack + 4 ) 547 FT_Byte** data = parser->stack; 553 if ( parser->top >= parser->stack + 2 ) 568 FT_Byte** data = parser->stack; 574 if ( parser->top >= parser->stack + 3 ) 749 parser->top = parser->stack; [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
cparse.py | 265 stack = [] 266 # read up to identifier, pushing tokens onto stack 267 self.ident = self.parse_identifier(lexer,symbols,stack) 273 self.parse_declarator(lexer,symbols,stack) 276 def parse_identifier(self,lexer,symbols,stack): 282 stack.append( (lexer.tok, lexer.kind) ) 286 #stack.append( (ident.name, ident) ) 292 def parse_declarator(self,lexer,symbols,stack,level=0): 295 (self,stack) 312 while stack [all...] |
/external/clang/lib/AST/ |
DumpXML.cpp | 174 SmallVector<Node, 16> Stack; 184 /// Push a new node on the stack. 186 if (!Stack.empty()) { 187 assert(Stack.back().isDoneWithAttrs()); 188 if (Stack.back().State == NS_LazyChildren) { 189 Stack.back().State = NS_Children; 195 Stack.push_back(Node(name)); 201 assert(!Stack.empty() && !Stack.back().isDoneWithAttrs()); 207 assert(!Stack.empty() && !Stack.back().isDoneWithAttrs()) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaMethod.java | 36 import java.util.Stack; 758 // We push the parent first, then the child on the stack. 759 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local 768 stack.add(null); // Start with null parent. 769 stack.add(rootBlock); 771 while (stack.size() > 0) { 772 SsaBasicBlock cur = stack.pop(); 773 SsaBasicBlock parent = stack.pop() 798 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local [all...] |
/external/freetype/src/cff/ |
cffparse.c | 46 parser->top = parser->stack; 517 FT_Byte** data = parser->stack; 521 if ( parser->top >= parser->stack + 6 ) 587 FT_Byte** data = parser->stack; 593 if ( parser->top >= parser->stack + 4 ) 616 FT_Byte** data = parser->stack; 622 if ( parser->top >= parser->stack + 2 ) 640 FT_Byte** data = parser->stack; 646 if ( parser->top >= parser->stack + 3 ) 943 parser->top = parser->stack; [all...] |
/external/v8/src/ |
full-codegen.h | 125 // Link into codegen's nesting stack. 130 // Unlink from codegen's nesting stack. 143 // next outer statement in the nesting stack. We accumulate in 144 // *stack_depth the amount to drop the stack and in *context_length the 146 // stack from an exit to its target. 300 // is expected on the stack or the accumulator, depending on the platform. 338 // An operand used to read/write a stack-allocated (PARAMETER or LOCAL) 428 // Platform-specific code for checking the stack limit at the back edge of 434 // Record the OSR AST id corresponding to a stack check in the code. 436 // Emit a table of stack check ids and pcs into the code stream. Retur [all...] |
/bionic/libc/arch-arm/bionic/ |
setjmp.S | 47 * by restoring registers from the stack. 99 sub sp, sp, #4 /* align the stack */ 104 add sp, sp, #4 /* unalign the stack */
|
/dalvik/hit/src/com/android/hit/ |
Heap.java | 25 // List of individual stack frames 28 // List stack traces, which are lists of stack frames
|
/dalvik/vm/compiler/template/armv5te/ |
header.S | 41 Stack is "full descending". Only the arguments that don't fit in the first 4 42 registers are placed on the stack. "sp" points at the first stacked argument 81 * Given a frame pointer, find the stack save area.
|
/dalvik/vm/mterp/armv5te/ |
OP_EXECUTE_INLINE_RANGE.S | 11 * is on the stack. The function's return value is a flag that tells 26 add sp, sp, #8 @ pop stack 79 add sp, sp, #8 @ pop stack
|
/dalvik/vm/mterp/mips/ |
OP_EXECUTE_INLINE.S | 10 * is on the stack. The function's return value is a flag that tells 25 # Stack should have 16/20 available 93 # Stack should have 16/20 available
|
/dalvik/vm/mterp/x86/ |
entry.S | 32 * At this point we've allocated one slot on the stack 33 * via push and stack is 8-byte aligned. Allocate space 69 * Restore the stack pointer and PC from the save point established on entry.
|
/docs/source.android.com/src/ |
index.jd | 29 Android is an open-source software stack for a wide range of mobile devices and a corresponding open-source project led by 31 create custom variants of the Android software stack, port devices and accessories to the Android platform, 47 <p>Android is an open-source software stack for a wide array of mobile devices with different form factors.
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
ParseTreeBuilder.java | 34 import java.util.Stack; 44 Stack callStack = new Stack();
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
AVTPart.java | 82 * This function is used to fixup variables from QNames to stack frame 88 * in the stack frame (but variables above the globalsTop value will need 89 * to be offset to the current stack frame).
|
AVTPartSimple.java | 60 * This function is used to fixup variables from QNames to stack frame 66 * in the stack frame (but variables above the globalsTop value will need 67 * to be offset to the current stack frame).
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
UnaryOperation.java | 41 * This function is used to fixup variables from QNames to stack frame 47 * in the stack frame (but variables above the globalsTop value will need 48 * to be offset to the current stack frame).
|
/external/bison/lib/ |
timevar.h | 35 - On the timing stack, using timevar_push and timevar_pop. 36 Timing variables may be pushed onto the stack; elapsed time is 37 attributed to the topmost timing variable on the stack. When
|
/external/chromium/base/ |
openssl_util.h | 91 // Drains the OpenSSL ERR_get_error stack. On a debug build the error codes 96 // Place an instance of this class on the call stack to automatically clear 97 // the OpenSSL error stack on function exit.
|
/external/chromium/crypto/ |
openssl_util.h | 85 // Drains the OpenSSL ERR_get_error stack. On a debug build the error codes 90 // Place an instance of this class on the call stack to automatically clear 91 // the OpenSSL error stack on function exit.
|
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
screen_manager.h | 9 #include <stack> 116 // Current stack of screens (screen ids, all screens are assumed to have an 118 std::stack<std::string> screen_stack_;
|
/external/chromium_org/chrome/browser/chromeos/ |
proxy_config_service_impl.h | 27 // - provides network stack with latest effective proxy configuration for 41 // network stack. 72 // config is stored in |active_config_| and activated on network stack, and
|
/external/chromium_org/crypto/ |
openssl_util.h | 90 // Drains the OpenSSL ERR_get_error stack. On a debug build the error codes 96 // Place an instance of this class on the call stack to automatically clear 97 // the OpenSSL error stack on function exit.
|