/external/valgrind/main/coregrind/m_syswrap/ |
syscall-ppc32-linux.S | 78 /* make a stack frame */ 128 /* pop off stack frame */ 158 /* Let the linker know we don't need an executable stack */ 159 .section .note.GNU-stack,"",@progbits
|
syscall-ppc64-linux.S | 86 /* make a stack frame */ 136 /* pop off stack frame */ 165 /* Let the linker know we don't need an executable stack */ 166 .section .note.GNU-stack,"",@progbits
|
/external/valgrind/main/massif/tests/ |
deep-B.stderr.exp | 47 Massif: stack allocs: 0 48 Massif: stack frees: 0
|
realloc.stderr.exp | 37 Massif: stack allocs: 0 38 Massif: stack frees: 0
|
/external/valgrind/main/memcheck/tests/x86/ |
pushfpopf_s.S | 18 # save possibly undef flags on stack
|
/external/webkit/Tools/gdb/ |
webkit.py | 311 stack = [] 313 stack.append([val, 318 while len(stack) > 0: 319 pair = stack.pop()
|
/frameworks/base/services/java/com/android/server/am/ |
ActivityRecord.java | 49 * An entry in the history stack, representing an activity. 53 final ActivityStack stack; // owner field in class:ActivityRecord 118 private boolean inHistory; // are we in the history stack? 209 stack = _stack; 531 final long totalTime = stack.mInitialStartTime != 0 532 ? (curTime - stack.mInitialStartTime) : thisTime; 550 stack.reportActivityLaunchedLocked(false, this, thisTime, totalTime); 555 stack.mInitialStartTime = 0; 558 stack.reportActivityVisibleLocked(this); 567 stack.processStoppingActivitiesLocked(false) [all...] |
/frameworks/base/test-runner/src/junit/runner/ |
BaseTestRunner.java | 262 * Returns a filtered stack trace 274 * Filters stack frames from internal JUnit classes 276 public static String getFilteredTrace(String stack) { 278 return stack; 282 StringReader sr= new StringReader(stack); 295 return stack; // return the stack unfiltered
|
/ndk/build/tools/ |
dev-cleanup.sh | 46 rm -f $DIR/ndk-stack*
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
symtab.h | 49 struct obstack stack; member in struct:ht
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
symtab.h | 49 struct obstack stack; member in struct:ht
|
/prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/ |
symtab.h | 49 struct obstack stack; member in struct:ht
|
/dalvik/hit/src/com/android/hit/ |
HprofParser.java | 412 StackTrace stack = mState.getStackTrace(thread.mStackTrace); local 414 threadSerialNumber, stack); 438 StackTrace stack = mState.getStackTrace(stackSerialNumber); local 497 ClassObj theClass = new ClassObj(id, stack, mClassNames.get(id)); 518 StackTrace stack = mState.getStackTrace(stackId); local 521 ClassInstance instance = new ClassInstance(id, stack, classId); 533 StackTrace stack = mState.getStackTrace(stackId); local 542 ArrayInstance array = new ArrayInstance(id, stack, Types.OBJECT, 555 StackTrace stack = mState.getStackTrace(stackId); local 564 ArrayInstance array = new ArrayInstance(id, stack, type, numElements [all...] |
/external/libffi/src/mips/ |
ffi.c | 51 FFI_ASSERT(argp <= &stack[bytes]); \ 52 if (argp == &stack[bytes]) \ 54 argp = stack; \ 62 /* ffi_prep_args is called by the assembly routine once stack space 65 static void ffi_prep_args(char *stack, 77 on the stack. We reorder stuff on the stack here to 80 argp = &stack[bytes - (8 * sizeof(ffi_arg))]; 82 argp = stack; 84 argp = stack; [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
ValidateLimitations.cpp | 12 bool IsLoopIndex(const TIntermSymbol* symbol, const TLoopStack& stack) { 13 for (TLoopStack::const_iterator i = stack.begin(); i != stack.end(); ++i) { 31 ValidateConstIndexExpr(const TLoopStack& stack) 32 : mValid(true), mLoopStack(stack) {}
|
/external/webkit/Source/WebCore/inspector/front-end/ |
TextEditorModel.js | 290 _doUndo: function(stack, callback) 293 for (var i = stack.length - 1; i >= 0; --i) { 294 var command = stack[i]; 295 stack.length = i; 300 if (i > 0 && stack[i - 1].explicit)
|
/external/valgrind/main/coregrind/m_debuginfo/ |
d3basics.c | 479 FAIL("evaluate_Dwarf3_Expr: stack overflow(1)"); \ 481 stack[sp] = (_arg); \ 488 FAIL("evaluate_Dwarf3_Expr: stack underflow(1)"); \ 489 _lval = stack[sp]; \ 496 Addr stack[N_EXPR_STACK]; /* stack of addresses, as per D3 spec */ local 546 /* end of expr - return expr on the top of stack. */ 548 /* stack empty. Bad. */ 549 FAIL("evaluate_Dwarf3_Expr: stack empty at end of expr"); 592 FAIL("evaluate_Dwarf3_Expr: DW_OP_{implicit,stack}_value [all...] |
/external/bison/data/ |
glr.c | 28 # Stack parameters. 606 if the built-in stack extension method is used). 616 /* Minimum number of free items on the stack allowed after an 619 stack is expanded, thus insuring that all necessary pointers get 746 /** Preceding state in this stack */ 788 /** Type of the items in the GLR stack. The yyisState field 886 * and top stack item YYVSP. YYLVALP points to place to put semantic 1110 * stack #K of *STACKP. */ 1135 /** Initialize SET to a singleton set containing an empty stack. */ 1161 /** Initialize STACK to a single empty stack, with total maximu [all...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Delaunay.cpp | 372 int stack[DM]; local 409 // Now to recurse on shorter partition, store longer partition on stack 413 break; // empty stack && both partitions < QQ so break 415 sj = stack[--m]; 416 si = stack[--m]; 423 stack[m++] = si; 424 stack[m++] = sL; 432 break; // empty stack && both partitions < QQ so break 434 sj = stack[--m]; 435 si = stack[--m] [all...] |
/external/libvpx/vpx_ports/ |
x86_abi_support.asm | 122 ; This macro aligns the stack to the given alignment (in bytes). The stack 123 ; is left such that the previous value of the stack pointer is the first 124 ; argument on the stack (ie, the inverse of this macro is 'pop rsp.') 293 ; Tell GNU ld that we don't require an executable stack. 295 section .note.GNU-stack noalloc noexec nowrite progbits 298 section .note.GNU-stack noalloc noexec nowrite progbits
|
/external/speex/libspeex/ |
ltp.c | 79 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) 142 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) 173 void open_loop_nbest_pitch(spx_word16_t *sw, int start, int end, int len, int *pitch, spx_word16_t *gain, int N, char *stack) 245 pitch_xcorr(sw, sw-end, corr, len, end-start+1, stack); 360 char *stack, 419 iir_mem16(e, ak, e, nsf, p, mm, stack); 422 filter_mem16(e, awk1, awk2, e, nsf, p, mm, stack); 542 char *stack, 609 open_loop_nbest_pitch(sw, start, end, nsf, nbest, NULL, N, stack); 622 bits, stack, exc2, r, new_target, &cdbk_index, plc_tuning, *cumul_gain, scaledown) [all...] |
/external/valgrind/main/none/tests/ |
cmdline2.stdout.exp | 29 --num-callers=<number> show <number> callers in stack traces [12] 32 --show-below-main=no|yes continue stack traces below main() [no] 39 --max-stackframe=<number> assume stack switch for SP changes larger 41 --main-stacksize=<number> set size of main thread's stack (in bytes) 54 --smc-check=none|stack|all checks for self-modifying code: none, 55 only for code found in stacks, or all [stack] 56 --read-var-info=yes|no read debug info on stack and global variables
|
/build/core/ |
armelf.xsc | 194 into a random section. If _stack is not absolutely with .stack section, 199 .stack 0x80000 : 202 *(.stack) 206 /DISCARD/ : { *(.note.GNU-stack) }
|
/external/libvpx/vp8/common/arm/neon/ |
bilinearpredict4x4_neon.asm | 23 ; stack(lr) int dst_pitch 29 ldr r4, [sp, #8] ;load parameters from stack 30 ldr lr, [sp, #12] ;load parameters from stack
|
/external/v8/test/mjsunit/ |
error-constructors.js | 37 ReferenceError.prototype.__defineSetter__('stack', fail); 44 assertTrue(e0.hasOwnProperty('stack')); 45 assertTrue(e1.hasOwnProperty('stack'));
|