| /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/aarch64-linux-android/lib/ldscripts/ |
| armelfb.xsw | 228 .stack 0x80000 : 231 *(.stack) 235 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| armelfb.xw | 239 .stack 0x80000 : 242 *(.stack) 246 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/arm-eabi/lib/ldscripts/ |
| armelf.x | 239 .stack 0x80000 : 242 *(.stack) 246 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| armelf.xbn | 238 .stack 0x80000 : 241 *(.stack) 245 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| armelf.xc | 241 .stack 0x80000 : 244 *(.stack) 248 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| armelf.xn | 238 .stack 0x80000 : 241 *(.stack) 245 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| armelf.xs | 227 .stack 0x80000 : 230 *(.stack) 234 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| armelf.xsc | 227 .stack 0x80000 : 230 *(.stack) 234 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| armelf.xsw | 226 .stack 0x80000 : 229 *(.stack) 233 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| armelf.xw | 241 .stack 0x80000 : 244 *(.stack) 248 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
|
| /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/ |
| arm-no-rel-plt.ld | 221 .stack 0x80000 : 224 *(.stack) 228 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
|
| /external/javassist/src/main/javassist/bytecode/ |
| StackMap.java | 138 * Visits each entry of the stack map frames. 148 pos = stack(pos + 2, offset, numStack); 161 * Invoked when <code>stack</code> of <code>stack_map_frame</code> 164 public int stack(int pos, int offset, int num) { method in class:StackMap.Walker 174 * false if it is for <code>stack</code>. 273 * Updates this stack map table when a new local variable is inserted 404 * It is called to update the stack map when 422 public int stack(int pos, int offset, int num) { method in class:StackMap.NewRemover 470 * Prints this stack map.
|
| /external/libavc/common/arm/ |
| ih264_inter_pred_chroma_a9q.s | 115 stmfd sp!, {r4-r12, r14} @store register values to stack 116 vstmdb sp!, {d8-d15} @push neon registers to stack 251 ldmfd sp!, {r4-r12, pc} @ Restoring registers from stack
|
| /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
| MethodNode.java | 125 * The maximum stack size of this method.
236 final Object[] stack)
240 : getLabelNodes(local), nStack, stack == null
242 : getLabelNodes(stack)));
|
| /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
| bwe_test_logging.h | 123 #include <stack> 303 std::stack<State> stack; member in struct:webrtc::testing::bwe::Logging::ThreadState
|
| /frameworks/base/services/core/java/com/android/server/wm/ |
| WindowManagerService.java | 2934 RuntimeException stack = new RuntimeException(); local 3517 final TaskStack stack = mStackIdToStack.get(stackId); local 3910 final TaskStack stack = mStackIdToStack.get(stackId); local 3921 final TaskStack stack = stacks.get(stackNdx); local 3944 final TaskStack stack = mStackIdToStack.valueAt(stackNdx); local 4875 final TaskStack stack = wtoken.mTask.mStack; local 4947 final TaskStack stack = mStackIdToStack.valueAt(stackNdx); local 5076 final TaskStack stack = task.mStack; local 5108 final TaskStack stack = task.mStack; local 5121 final TaskStack stack = mStackIdToStack.get(stackId); local 5151 TaskStack stack = mStackIdToStack.get(stackId); local 5201 TaskStack stack = mStackIdToStack.get(stackId); local 5261 TaskStack stack = mStackIdToStack.get(stackId); local 5278 TaskStack stack = mStackIdToStack.get(stackId); local 5292 final TaskStack stack = mStackIdToStack.get(stackId); local 5304 final TaskStack stack = mStackIdToStack.get(stackId); local 5330 final TaskStack stack = mStackIdToStack.get(stackId); local 5346 final TaskStack stack = mStackIdToStack.get(stackId); local 5366 TaskStack stack = mStackIdToStack.get(stackId); local 5887 final TaskStack stack = mStackIdToStack.get(DOCKED_STACK_ID); local 7921 final TaskStack stack = stacks.get(i); local 7934 final TaskStack stack = stacks.get(i); local 8628 final TaskStack stack = mStackIdToStack.valueAt(stackNdx); local 11300 final TaskStack stack = mStackIdToStack.get(PINNED_STACK_ID); local [all...] |
| /art/tools/dmtracedump/ |
| createtesttrace.cc | 77 typedef struct stack { struct 80 } stack; typedef in typeref:struct:stack 102 * determines the call stack. Each called method must be indented by one 146 stack* callStack = new stack[numThreads]; 185 // Allocate space for the thread stack, if necessary 243 // Exiting method must be currently on top of stack (unless stack is 247 printf(" Exiting %s (past bottom of stack)\n", 262 } else { // exiting method doesn't match stack's top metho [all...] |
| /device/moto/shamu/camera/QCamera/HAL/core/ |
| Android.mk | 92 $(LOCAL_PATH)/../../stack/mm-camera-interface/inc \ 93 $(LOCAL_PATH)/../../stack/mm-jpeg-interface/inc \
|
| /external/boringssl/src/crypto/asn1/ |
| tasn_prn.c | 361 STACK_OF(ASN1_VALUE) *stack; 380 stack = (STACK_OF(ASN1_VALUE) *)*fld; 381 for(i = 0; i < sk_ASN1_VALUE_num(stack); i++) 386 skitem = sk_ASN1_VALUE_value(stack, i);
|
| /external/boringssl/src/tool/ |
| pkcs12.cc | 37 #include <openssl/stack.h>
|
| /external/chromium-trace/catapult/tracing/tracing/mre/ |
| gtest_progress_reporter.py | 24 print >> self._output_stream, failure.stack
|
| /external/compiler-rt/lib/asan/ |
| asan_thread.h | 57 u32 parent_tid, StackTrace *stack, bool detached); 105 // True is this thread is currently unwinding stack (i.e. collecting a stack
|
| /external/compiler-rt/lib/sanitizer_common/ |
| sanitizer_symbolizer_libcdep.cc | 323 bool LLVMSymbolizer::SymbolizePC(uptr addr, SymbolizedStack *stack) { 324 if (const char *buf = SendCommand(/*is_data*/ false, stack->info.module, 325 stack->info.module_offset)) { 326 ParseSymbolizePCOutput(buf, stack);
|
| /external/freetype/src/cff/ |
| cffgload.h | 165 FT_Fixed stack[CFF_MAX_OPERANDS + 1]; member in struct:CFF_Decoder_
|
| /external/google-breakpad/src/processor/ |
| synth_minidump_unittest.cc | 167 Memory stack(dump, 0xaad55a93cc3c0efcULL); 168 stack.Append("stack contents"); 169 stack.Finish(0xe08cdbd1); 171 dump, 0x3d7ec360, stack, context, 184 0xfc, 0x0e, 0x3c, 0xcc, 0x93, 0x5a, 0xd5, 0xaa, // stack address 185 0x0e, 0x00, 0x00, 0x00, // stack size 186 0xd1, 0xdb, 0x8c, 0xe0, // stack MDRVA
|