| /external/openssl/crypto/perlasm/ |
| x86masm.pl | 103 $::stack=4; 109 $::stack=0;
|
| /external/speex/libspeex/ |
| cb_search_arm4.h | 39 static void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)
|
| filters_sse.h | 134 void filter_mem16(const float *x, const float *_num, const float *_den, float *y, int N, int ord, float *_mem, char *stack) 233 void iir_mem16(const float *x, const float *_den, float *y, int N, int ord, float *_mem, char *stack) 330 void fir_mem16(const float *x, const float *_num, float *y, int N, int ord, float *_mem, char *stack)
|
| /external/v8/test/mjsunit/regress/ |
| regress-2249423.js | 29 // Regression test for stack corruption issue.
|
| regress-3230771.js | 28 // Regression test for missing stack-overflow check in
|
| /external/valgrind/main/coregrind/ |
| m_cpuid.S | 153 /* Let the linker know we don't need an executable stack */ 154 .section .note.GNU-stack,"",@progbits
|
| /external/valgrind/main/memcheck/tests/ |
| fprw.stderr.exp | 34 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
| origin2-not-quite.stderr.exp | 26 Uninitialised value was created by a stack allocation
|
| /external/webkit/Source/JavaScriptCore/runtime/ |
| JSGlobalData.h | 181 const MarkedArgumentBuffer* emptyList; // Lists are supposed to be allocated on the stack to have their elements properly marked, which is not the case here - but this list has nothing to mark. 199 const StackBounds& stack() function in class:JSC::JSGlobalData 203 : wtfThreadData().stack();
|
| /frameworks/base/libs/rs/ |
| spec.l | 1 %option stack
|
| /external/libffi/src/s390/ |
| sysv.S | 55 ahi %r15,-96-48 # Allocate stack 127 lr %r1,%r15 # Set up stack frame 257 aghi %r15,-160-80 # Allocate stack 331 lgr %r1,%r15 # Set up stack frame 433 .section .note.GNU-stack,"",@progbits
|
| /external/libvpx/vp8/encoder/ppc/ |
| variance_subpixel_altivec.asm | 200 stwu r1,-32(r1) ;# create space on the stack 270 addi r1, r1, 32 ;# recover stack 291 stwu r1,-32(r1) ;# create space on the stack 381 addi r1, r1, 32 ;# recover stack 401 stwu r1,-32(r1) ;# create space on the stack 538 addi r1, r1, 32 ;# recover stack 618 stwu r1, -32(r1) ;# create space on the stack 689 addi r1, r1, 32 ;# recover stack 711 stwu r1, -32(r1) ;# create space on the stack 814 addi r1, r1, 32 ;# recover stack [all...] |
| /external/llvm/include/llvm/CodeGen/PBQP/ |
| HeuristicSolver.h | 107 std::vector<Graph::NodeItr> stack; member in class:PBQP::HeuristicSolverImpl 190 /// \brief Add to the end of the stack. 191 /// @param nItr Node iterator to add to the reduction stack. 194 stack.push_back(nItr); 222 /// Node will be automatically pushed to the solver stack. 227 // Nothing to do. Just push the node onto the reduction stack. 236 /// Node will be automatically pushed to the solver stack. 285 /// Node will be automatically pushed to the solver stack. 551 while (!stack.empty()) { 552 computeSolution(stack.back()) [all...] |
| /external/nist-sip/java/gov/nist/javax/sip/stack/ |
| UDPMessageChannel.java | 30 package gov.nist.javax.sip.stack; 66 * stack (later removed). Lamine Brahimi suggested a single threaded behavior 74 * fixed a performance issue where the stack was doing DNS lookups (potentially 76 * the stack from exitting when an exception is encountered. 84 * is handed off via a SIP stack request for further processing. This stack 100 * SIP Stack structure for this channel. 163 * Constructor - takes a datagram packet and a stack structure Extracts the 165 * pointer to the passed stack structure. 167 * @param stack [all...] |
| /external/openssl/crypto/ |
| sparccpuid.S | 21 ! Keep in mind that this does not excuse us from wiping the stack! 23 ! resides on the stack, toward lower addresses]. To facilitate for 24 ! stack wiping I return pointer to the top of stack of the *caller*. 126 add %fp,BIAS,%i0 ! return pointer to caller?s top of stack
|
| /dalvik/vm/compiler/template/out/ |
| CompilerTemplateAsm-armv5te.S | 48 Stack is "full descending". Only the arguments that don't fit in the first 4 49 registers are placed on the stack. "sp" points at the first stacked argument 88 * Given a frame pointer, find the stack save area. 163 * Unwind a frame from the Dalvik stack for compiled OP_RETURN_XXX. 236 SAVEAREA_FROM_FP(r1, rFP) @ r1<- stack save area 238 SAVEAREA_FROM_FP(r10, r1) @ r10<- stack save area 241 bxlo lr @ return to raise stack overflow excep. 303 SAVEAREA_FROM_FP(r1, rFP) @ r1<- stack save area 305 SAVEAREA_FROM_FP(r10, r1) @ r10<- stack save area 309 bxlo r12 @ return to raise stack overflow excep [all...] |
| /external/v8/tools/ |
| profile.js | 87 * during stack strace processing, specifies a position of the frame 224 * Records a tick event. Stack must contain a sequence of 227 * @param {Array<number>} stack Stack sample. 229 Profile.prototype.recordTick = function(stack) { 230 var processedStack = this.resolveAndFilterFuncs_(stack); 241 * @param {Array<number>} stack Stack sample. 243 Profile.prototype.resolveAndFilterFuncs_ = function(stack) { 245 for (var i = 0; i < stack.length; ++i) [all...] |
| /external/chromium/chrome/browser/sync/ |
| profile_sync_service_bookmark_unittest.cc | 9 #include <stack> 463 std::stack<int64> stack; local 464 stack.push(bookmark_bar_id()); 465 while (!stack.empty()) { 466 int64 id = stack.top(); 467 stack.pop(); 474 stack.push(gnode.GetFirstChildId()); 475 stack.push(gnode.GetSuccessorId()); [all...] |
| /external/antlr/src/org/antlr/runtime/ |
| BaseRecognizer.java | 212 * more information such as the stack frame with 379 * follow that rule reference on the stack; this amounts to 406 * that rule is pushed on a stack. Here are the various "local" 417 * and, hence, the follow context stack is: 528 // what is exact? it seems to only add sets from above on stack 695 /** Push a rule's follow set using our own hardcoded stack */ 720 * stack trace. This routine is shared with all recognizers, hence, 729 StackTraceElement[] stack = e.getStackTrace(); local 731 for (i=stack.length-1; i>=0; i--) { 732 StackTraceElement t = stack[i] [all...] |
| /external/chromium/chrome/browser/sync/glue/ |
| bookmark_model_associator.cc | 7 #include <stack> 356 std::stack<int64> dfs_stack; 370 // Only folder nodes are pushed on to the stack. 496 std::stack<int64> dfs_stack; 531 // Add all children of the current node to the stack.
|
| /external/freetype/src/base/ |
| ftbbox.c | 225 FT_Pos stack[32*3 + 1], *arc; 228 arc = stack; 283 } while ( arc >= stack );
|
| /external/libffi/src/pa/ |
| hpux32.S | 65 /* Setup the stack for calling prep_args... 66 We want the stack to look like this: 68 [ Previous stack ] <- %r3 72 [ Stack space for actual call, passed as ] <- %arg0 75 [ Stack for calling prep_args ] <- %sp 83 addl %arg2, %r4, %arg0 ; arg stack 87 %arg0(stack) -- set up above 251 copy %r4, %sp ; pop arg stack 253 ldwm -64(%sp), %r3 ; .. and pop stack 282 /* Put arguments onto the stack and call ffi_closure_inner. * [all...] |
| /external/libvpx/vp8/common/ppc/ |
| filter_bilinear_altivec.asm | 173 stwu r1,-32(r1) ;# create space on the stack 240 addi r1, r1, 32 ;# recover stack 258 stwu r1,-32(r1) ;# create space on the stack 326 addi r1, r1, 32 ;# recover stack 344 stwu r1,-32(r1) ;# create space on the stack 434 addi r1, r1, 32 ;# recover stack
|
| /external/llvm/lib/Analysis/ |
| PathNumbering.cpp | 42 #include <stack> 237 std::stack<BallLarusNode*> dfsStack; 417 void BallLarusDag::buildEdge(BLBlockNodeMap& inDag, std::stack<BallLarusNode*>&
|
| /external/webkit/Source/JavaScriptCore/heap/ |
| MachineStackMarker.cpp | 209 Thread* thread = new Thread(pthread_self(), getCurrentPlatformThread(), m_heap->globalData()->stack().origin()); 258 // setjmp forces volatile registers onto the stack 275 void* stackEnd = m_heap->globalData()->stack().origin(); 428 #error Need a way to get the stack pointer for another thread on this platform
|