HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 351 - 375 of 636) sorted by null

<<11121314151617181920>>

  /external/nist-sip/java/gov/nist/javax/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.
heap-profiler.cc 678 Vector<Address> stack(NewArray<Address>(framesCount), framesCount);
681 stack[i++] = it.frame()->pc();
683 stack[i] = NULL;
686 static_cast<void*>(stack.start()),
log.cc 169 sample->stack[i++] = callback;
175 sample->stack[i++] = it.frame()->pc();
1072 Address* stack) {
1077 while (*stack != NULL) {
1078 msg.Append(",0x%" V8PRIxPTR, *stack++);
    [all...]
  /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.
regress-233.js 29 // A stack overflow detected by a global regexp match wasn't handled correctly.
38 // Stack overflow caught.
regress-603.js 29 // not mess up the stack.
regress-69.js 29 // balanced stack. It should not trigger the break point when --debug_code
regress-937896.js 30 // to try to unlink the inner try-handler that wasn't on the stack.
  /external/webkit/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/WebCore/platform/graphics/
GraphicsContext.cpp 91 m_common->stack.append(m_common->state);
101 if (m_common->stack.isEmpty()) {
102 LOG_ERROR("ERROR void GraphicsContext::restore() stack is empty");
105 m_common->state = m_common->stack.last();
106 m_common->stack.removeLast();
  /packages/apps/Mms/src/com/android/mms/data/
Contact.java 107 StackTraceElement[] stack = current.getStackTrace(); local
116 int stop = stack.length > 7 ? 7 : stack.length;
118 String methodName = stack[i].getMethodName();
  /external/chromium/base/
file_util.h 21 #include <stack>
499 // A stack that keeps track of which subdirectories we still need to
501 std::stack<FilePath> pending_paths_;
  /external/libffi/src/sh64/
ffi.c 56 /* ffi_prep_args is called by the assembly routine once stack space
60 void ffi_prep_args(char *stack, extended_cif *ecif)
69 argp = stack;
341 * parameters to be passed into the stack frame and setting
373 /* Grab the addresses of the arguments from the stack frame. */
  /external/libffi/src/sparc/
v8.S 31 #define STACKFRAME 96 /* Minimum stack framesize for SPARC */
45 sub %sp, %i2, %sp ! alloca() space in stack for frame to set up
271 .section .note.GNU-stack,"",@progbits
  /external/v8/test/mjsunit/
deep-recursion.js 30 * cause stack overflows.
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 152 /* Pops the stack, depending on the return type.
249 // Pop the last word from the stack since invoke will generate its own return.
283 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) {
285 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack);
  /external/libvpx/vp8/common/arm/neon/
bilinearpredict8x8_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
  /frameworks/base/libs/surfaceflinger_client/
Surface.cpp 910 CallStack stack; local
911 stack.update();
912 stack.dump("");
918 CallStack stack; local
919 stack.update();
920 stack.dump("");
    [all...]
  /external/libvpx/vp8/common/ppc/
filter_altivec.asm 203 stwu r1,-32(r1) ;# create space on the stack
365 addi r1, r1, 32 ;# recover stack
394 stwu r1,-32(r1) ;# create space on the stack
543 addi r1, r1, 32 ;# recover stack
566 stwu r1,-32(r1) ;# create space on the stack
751 addi r1, r1, 32 ;# recover stack
775 stwu r1,-416(r1) ;# create space on the stack
823 ;# use the stack as temporary storage
919 ;# always write to the stack when doing a horizontal copy
939 ;# always read from the stack when doing a vertical filte
    [all...]
  /external/v8/tools/
tickprocessor.js 154 this.createAddressParser('stack'),
341 TickProcessor.prototype.processTick = function(pc, sp, func, vmState, stack) {
361 this.profile_.recordTick(this.processStack(pc, func, stack));
389 TickProcessor.prototype.processJSProducer = function(constructor, stack) {
391 if (stack.length == 0) return;
392 var first = stack.shift();
394 this.profile_.resolveAndFilterFuncs_(this.processStack(first, 0, stack));
  /external/nist-sip/java/gov/nist/javax/sip/
DialogFilter.java 43 import gov.nist.javax.sip.stack.MessageChannel;
44 import gov.nist.javax.sip.stack.SIPClientTransaction;
45 import gov.nist.javax.sip.stack.SIPDialog;
46 import gov.nist.javax.sip.stack.SIPServerTransaction;
47 import gov.nist.javax.sip.stack.SIPTransaction;
48 import gov.nist.javax.sip.stack.ServerRequestInterface;
49 import gov.nist.javax.sip.stack.ServerResponseInterface;
77 * An adapter class from the JAIN implementation objects to the NIST-SIP stack. The primary
82 * implement a JAIN-SIP interface). This is part of the glue that ties together the NIST-SIP stack
83 * and event model with the JAIN-SIP stack. This is strictly an implementation class
    [all...]
  /external/freetype/src/truetype/
ttinterp.c 123 /* The instruction argument stack. */
410 /* free stack */
411 FT_FREE( exec->stack );
414 /* free call stack */
472 exec->stack = NULL;
601 /* XXX: We reserve a little more elements on the stack to deal safely */
607 (void*)&exec->stack,
    [all...]

Completed in 1390 milliseconds

<<11121314151617181920>>