| /external/webkit/Source/WebCore/inspector/ |
| InspectorInstrumentation.cpp | 640 void InspectorInstrumentation::consoleCountImpl(InspectorAgent* inspectorAgent, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack) 642 inspectorAgent->consoleAgent()->count(arguments, stack); 650 void InspectorInstrumentation::stopConsoleTimingImpl(InspectorAgent* inspectorAgent, const String& title, PassRefPtr<ScriptCallStack> stack) 652 inspectorAgent->consoleAgent()->stopTiming(title, stack); [all...] |
| /external/webkit/Tools/android/flex-2.5.4a/MISC/ |
| alloca.c | 5 which is used to allocate space off the run-time stack so 16 that are found to be deeper in the stack than the current 53 /* If your stack is a linked list of frames, you have to 86 /* Define STACK_DIRECTION if you know the direction of stack 111 auto char dummy; /* To get stack address. */ 123 stack_dir = 1; /* Stack grew upward. */ 125 stack_dir = -1; /* Stack grew downward. */ 133 (b) keep track of stack depth. 148 char *deep; /* For stack depth measure. */ 157 was supposed to be taken from the current stack frame of th 414 long size, pseg, this_segment, stack; local [all...] |
| /frameworks/base/tools/aapt/ |
| XMLNode.h | 148 Vector<sp<XMLNode> > stack; member in struct:XMLNode::ParseState
|
| /frameworks/native/opengl/libs/EGL/ |
| egl.cpp | 67 * 2. libs/EGL/trace.cpp: Logs a stack trace for GL errors after each function call. 225 CallStack stack(LOG_TAG);
|
| /ndk/build/tools/ |
| build-host-prebuilts.sh | 253 # First, ndk-stack 255 # Don't build ndk-stack in 64-bit because unlike other host toolchains 256 # ndk-stack doesn't have separate directories for 32-bit and 64-bit. 258 echo "Building $SYSNAME ndk-stack" 259 run $BUILDTOOLS/build-ndk-stack.sh $TOOLCHAIN_FLAGS 260 fail_panic "ndk-stack build failure!"
|
| /ndk/sources/host-tools/make-3.81/ |
| alloca.c | 5 which is used to allocate space off the run-time stack so 16 that are found to be deeper in the stack than the current 60 /* If your stack is a linked list of frames, you have to 95 /* Define STACK_DIRECTION if you know the direction of stack 120 auto char dummy; /* To get stack address. */ 132 stack_dir = 1; /* Stack grew upward. */ 134 stack_dir = -1; /* Stack grew downward. */ 142 (b) keep track of stack depth. 157 char *deep; /* For stack depth measure. */ 166 was supposed to be taken from the current stack frame of th 433 long size, pseg, this_segment, stack; local [all...] |
| /ndk/sources/host-tools/sed-4.2.1/lib/ |
| alloca.c | 7 which is used to allocate space off the run-time stack so 18 that are found to be deeper in the stack than the current 67 /* If your stack is a linked list of frames, you have to 77 /* Define STACK_DIRECTION if you know the direction of stack 102 auto char dummy; /* To get stack address. */ 114 stack_dir = 1; /* Stack grew upward. */ 116 stack_dir = -1; /* Stack grew downward. */ 124 (b) keep track of stack depth. 139 char *deep; /* For stack depth measure. */ 148 was supposed to be taken from the current stack frame of th 421 long size, pseg, this_segment, stack; local [all...] |
| /packages/apps/Calculator/ |
| arity-2.1.2.jar | |
| /packages/apps/Mms/src/com/android/mms/data/ |
| Contact.java | 139 StackTraceElement[] stack = current.getStackTrace(); local 148 int stop = stack.length > 7 ? 7 : stack.length; 150 String methodName = stack[i].getMethodName(); [all...] |
| /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/ |
| processor_32.h | 186 unsigned long stack[64]; member in struct:tss_struct
|
| /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
| processor_32.h | 186 unsigned long stack[64]; member in struct:tss_struct
|
| /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
| processor_32.h | 186 unsigned long stack[64]; member in struct:tss_struct
|
| /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
| processor_32.h | 186 unsigned long stack[64]; member in struct:tss_struct
|
| /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/ |
| processor_32.h | 186 unsigned long stack[64]; member in struct:tss_struct
|
| /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/ |
| processor_32.h | 205 unsigned long stack[64]; member in struct:tss_struct
|
| /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/ |
| processor_32.h | 205 unsigned long stack[64]; member in struct:tss_struct
|
| /bionic/libc/ |
| Android.mk | 670 # libbionic_ssp.a - stack protector code 673 # The stack protector code needs to be compiled 674 # with -fno-stack-protector, since it modifies the 675 # stack canary. 680 LOCAL_CFLAGS := $(libc_common_cflags) -fno-stack-protector -Werror
|
| /external/libvpx/libvpx/vp8/common/arm/neon/ |
| sixtappredict8x4_neon.asm | 34 ; stack(r5) int dst_pitch 40 ldr r4, [sp, #12] ;load parameters from stack 41 ldr r5, [sp, #16] ;load parameters from stack 54 sub sp, sp, #32 ;reserve space on stack for temporary storage 231 vqrshrun.s16 d29, q11, #7 ;load intermediate data from stack
|
| /external/freetype/src/truetype/ |
| ttinterp.c | 126 /* The instruction argument stack. */ 413 /* free stack */ 414 FT_FREE( exec->stack ); 417 /* free call stack */ 475 exec->stack = NULL; 609 /* XXX: We reserve a little more elements on the stack to deal safely */ 615 (void*)&exec->stack, [all...] |
| /external/openfst/src/include/fst/extensions/pdt/ |
| expand.h | 42 PdtStack<typename Arc::StateId, typename Arc::Label> *stack; member in struct:fst::ExpandFstOptions 50 : CacheOptions(opts), keep_parentheses(kp), stack(s), state_table(st) {} 90 stack_(opts.stack ? opts.stack: new PdtStack<StateId, Label>(parens)), 93 own_stack_(opts.stack == 0), own_state_table_(opts.state_table == 0), 186 // Stack push/pop 326 // shortest-stack first queue discipline and relies on the 342 typedef PdtStack<StackId, Label> Stack; 388 // 1. states corresponding to shortest stack first, 390 // 3. among states with the same stack, shortest-first order is used [all...] |
| /prebuilts/tools/common/asm-tools/ |
| asm-debug-all-4.0.jar | |
| /external/openssl/crypto/bn/asm/ |
| pa-risc2.s | 49 ; Stack pointer ; r30 (sp) 64 ; is passed on the stack at a delta of -56 from the top of stack 148 LDO 128(%sp),%sp ; bump stack 298 ; w on stack at -56(sp) 318 LDO 128(%sp),%sp ; bump stack 472 LDO 128(%sp),%sp ; bump stack [all...] |
| pa-risc2W.s | 43 ; Stack pointer ; r30 (sp) 137 STD w,56(%sp) ; store w on stack 140 LDO 128(%sp),%sp ; bump stack 305 STD w,56(%sp) ; w on stack 308 LDO 128(%sp),%sp ; bump stack 461 LDO 128(%sp),%sp ; bump stack 797 STD %r3,-280(%r30) ; "d" to stack [all...] |
| /external/valgrind/main/coregrind/m_syswrap/ |
| syswrap-arm-linux.c | 67 /* Call f(arg1), but first switch stacks, using 'stack' as the new 68 stack, and use 'retaddr' as f's return-to address. Also, clear all 71 void ML_(call_on_new_stack_0_1) ( Addr stack, 75 // r0 = stack 83 " mov sp,r0\n\t" /* Stack pointer */ 109 void* stack, 120 /*Setup child stack */ 125 /* r1 (arg2) is already our child's stack */ 159 1. allocate a ThreadId+ThreadState+stack for the the thread 164 but using the scheduler entrypoint for IP, and a separate stack 179 UWord *stack; local [all...] |
| syswrap-mips32-linux.c | 78 /* Call f(arg1), but first switch stacks, using 'stack' as the new 79 stack, and use 'retaddr' as f's return-to address. Also, clear all 83 void ML_ (call_on_new_stack_0_1) (Addr stack, Addr retaddr, 85 // a0 = stack 93 " move $29, $4\n\t" // stack to %sp 129 pid_t* child_tid in stack 16 130 pid_t* parent_tid in stack 20 131 void* tls_ptr in stack 24 139 pid_t* child_tid in stack 16 151 void *stack, //a1 4 3 247 UWord * stack; local [all...] |