/frameworks/base/libs/binder/ |
IMemory.cpp | 249 CallStack stack; local 250 stack.update(); 251 stack.dump("callstack");
|
/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/ |
FusionDictionary.java | 189 ArrayList<CharGroup> stack = node.mData; local 191 for (int i = 0; i < stack.size(); ++i) { 192 int currentValue = stack.get(i).mChars[0]; 194 throw new RuntimeException("Invalid stack");
|
/dalvik/vm/arch/x86-atom/ |
Call386ABI.S | 129 lea 8(%esp), %edi # %edi<- stack location for arguments
|
/development/tools/mkstubs/src/com/android/mkstubs/stubber/ |
MethodStubber.java | 101 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) {
|
/external/chromium/chrome/browser/printing/cloud_print/ |
cloud_print_proxy_service.cc | 7 #include <stack>
|
/external/freetype/src/truetype/ |
ttinterp.h | 124 FT_Long top; /* top of exec. stack */ 126 FT_UInt stackSize; /* size of exec. stack */ 127 FT_Long* stack; /* current exec. stack */ member in struct:TT_ExecContextRec_ 170 FT_Int callTop, /* top of call stack during execution */ 171 callSize; /* size of call stack */ 172 TT_CallStack callStack; /* call stack */
|
/external/libvpx/vp8/common/arm/neon/ |
loopfiltersimplehorizontaledge_neon.asm | 25 ; stack(r4) const signed char *thresh, 26 ; //stack(r5) int count --unused
|
recon16x16mb_neon.asm | 23 ; stack unsigned char *udst_ptr, 24 ; stack unsigned char *vdst_ptr
|
/external/libvpx/vp8/common/ppc/ |
idctllm_altivec.asm | 135 stwu r1,-416(r1) ;# create space on the stack 165 addi r1, r1, 416 ;# recover stack
|
/external/libvpx/vp8/encoder/arm/neon/ |
vp8_mse16x16_neon.asm | 26 ; stack unsigned int *sse 66 ldr r12, [sp] ;load *sse from stack
|
/external/libvpx/vp8/encoder/ppc/ |
sad_altivec.asm | 32 stwu r1, -32(r1) ;# create space on the stack 40 addi r1, r1, 32 ;# recover stack
|
/external/nist-sip/java/gov/nist/javax/sip/ |
ListeningPointImpl.java | 45 import gov.nist.javax.sip.stack.*; 77 * Our stack 85 * Construct a key to refer to this structure from the SIP stack 126 * @param sipStack Our sip stack
|
SipStackImpl.java | 38 import gov.nist.javax.sip.stack.DefaultMessageLogFactory; 39 import gov.nist.javax.sip.stack.DefaultRouter; 40 import gov.nist.javax.sip.stack.MessageProcessor; 41 import gov.nist.javax.sip.stack.SIPTransactionStack; 74 * The JAIN-SIP stack is initialized by a set of properties (see the JAIN SIP 77 * meaningful properties for the NIST SIP stack (specify these in the property 96 * file (e.g. log4j.properties). The logger name for the stack is specified 98 * logger name for the stack is the same as the stack name. For example, <code> 101 * </code> allows you to now control logging in the stack entirely using log4 [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
MessageProcessor.java | 26 package gov.nist.javax.sip.stack; 41 * This is the Stack abstraction for the active object that waits for messages 98 * Our stack (that created us). 273 * Get the SIP Stack. 275 * @return the sip stack.
|
TCPMessageProcessor.java | 29 package gov.nist.javax.sip.stack; 164 * Returns the stack. 166 * @return my sip stack.
|
UDPMessageProcessor.java | 29 package gov.nist.javax.sip.stack; 54 * stack that were incorporated into this code. Niklas Uhrberg suggested that 95 * pointer to the stack. 298 * Returns the stack. 300 * @return my sip stack.
|
/external/openssl/crypto/x509/ |
x509_ext.c | 60 #include <openssl/stack.h>
|
/external/v8/src/ |
apinatives.js | 63 // We need a reference to kApiFunctionCache in the stack frame 64 // if we need to bail out from a stack overflow.
|
/external/v8/test/mjsunit/compiler/ |
short-circuit.js | 42 // A value on top of the stack in value/test context. 46 // A value on top of the stack in a test/value context.
|
/external/v8/test/mjsunit/regress/ |
regress-231.js | 29 // A stack growth during a look-ahead could restore a pointer to the old stack.
|
/external/valgrind/main/coregrind/m_dispatch/ |
dispatch-arm-linux.S | 267 /* Let the linker know we don't need an executable stack */ 268 .section .note.GNU-stack,"",%progbits
|
dispatch-x86-linux.S | 308 /* Let the linker know we don't need an executable stack */ 309 .section .note.GNU-stack,"",@progbits
|
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-ppc64-aix5.c | 107 VG_(printf)("thread tid %d started: stack = %p\n", 191 reusing the stack while we're doing these last cleanups. 193 reallocation. We need to make sure we don't touch the stack 210 /* after this point we can't safely use the stack. */ 246 /* Call f(arg1), but first switch stacks, using 'stack' as the new 247 stack. f itself needs to never return. */ 250 void call_on_new_stack_0_1_NORETURN ( Addr stack, 257 block[1] = stack; /* r1 */ 278 /* Allocate a stack for the main thread, and run it all the way to the 291 /* If we can't even allocate the first thread's stack, we're hosed 524 UWord* stack = (UWord*)ML_(allocstack)(dst_tid); local [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Exceptions/ |
errstack-001.js | 38 * SUMMARY: Testing that Error.stack distinguishes between: 43 * The stack frame for A) should begin with '@' 44 * The stack frame for B) should begin with '()' 49 * Note: our function getStackFrames(err) orders the array of stack frames 54 * NOTE: At present Rhino does not have an Error.stack property. It is an 60 var summary = 'Testing Error.stack'; 238 * Split the string |err.stack| along its '\n' delimiter. 239 * As of 2002-02-28 |err.stack| ends with the delimiter, so 247 var arr = err.stack.split('\n');
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
PoolAlloc.h | 207 tAllocStack stack; // stack of where to allocate from, to partition pool member in class:TPoolAllocator
|