HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 226 - 250 of 965) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/hit/src/com/android/hit/
ArrayInstance.java 28 public ArrayInstance(long id, StackTrace stack, int type, int numEntries,
31 mStack = stack;
  /dalvik/vm/alloc/
HeapSource.cpp 467 * Create a stack big enough for the worst possible case, where the
469 * TODO: be better about memory usage; use a smaller stack with
472 static bool allocMarkStack(GcMarkStack *stack, size_t maximumSize)
474 const char *name = "dalvik-mark-stack";
477 assert(stack != NULL);
478 stack->length = maximumSize * sizeof(Object*) /
480 addr = dvmAllocRegion(stack->length, PROT_READ | PROT_WRITE, name);
484 stack->base = (const Object **)addr;
485 stack->limit = (const Object **)((char *)addr + stack->length)
    [all...]
CardTable.cpp 292 * Returns true if the given object has been pushed on the mark stack
297 GcMarkStack *stack = &gDvm.gcHeap->markContext.stack; local
298 for (const Object **ptr = stack->base; ptr < stack->top; ++ptr) {
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INVOKE_METHOD_NATIVE.S 6 SAVEAREA_FROM_FP(r1, rFP) @ r1<- stack save area
8 SAVEAREA_FROM_FP(r10, r1) @ r10<- stack save area
10 bxlo lr @ return to raise stack overflow excep.
34 SAVEAREA_FROM_FP(r10, r1) @ r10<- new stack save area
  /external/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 24 ; stack short *dequant_ptr
25 ; stack short *scan_mask
26 ; stack short *round_ptr
27 ; stack short *quant_ptr
  /external/opencv/cv/src/
cvapprox.cpp 531 CvSeq* stack = 0; local
545 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage );
559 cvSeqPush( stack, &slice );
599 /* 2. initialize the stack */
610 cvSeqPush( stack, &right_slice );
611 cvSeqPush( stack, &slice );
618 while( stack->total != 0 )
620 cvSeqPop( stack, &slice );
668 cvSeqPush( stack, &right_slice );
669 cvSeqPush( stack, &slice )
735 CvSeq* stack = 0; local
    [all...]
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 109 // Collect the stack map frames.
126 // Convert the stack values to types.
140 // Compress the stack map frames if the target is not Java Micro Edition.
198 // Remove any stack map (table) attribute from the code attribute.
212 // Put the frames into a stack map attribute.
221 // Put the frames into a stack map table attribute.
225 // Fill out the name of the stack map attribute.
229 // Add the new stack map (table) attribute to the code attribute.
328 * stack. If necessary, class constants are added to the constant pool
335 TracedStack stack)
500 VerificationType[] stack = fullFrame.stack; local
    [all...]
  /external/speex/libspeex/
nb_celp.h 77 char *stack; /**< Pseudo-stack allocation for temporary memory */ member in struct:EncState
137 char *stack; /**< Pseudo-stack allocation for temporary memory */ member in struct:DecState
vq.c 76 void vq_nbest(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack)
110 void vq_nbest_sign(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack)
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
dfs-visit.h 22 #include <stack>
62 // An Fst state's DFS stack state
89 stack<DfsState<Arc> *> state_stack; // DFS execution stack
  /external/valgrind/main/memcheck/tests/
wrap8.stderr.exp 2 PPC64 function redirection stack overflow
  /frameworks/compile/slang/
slang_rs_object_ref_count.h 21 #include <stack>
76 std::stack<Scope*> mScopeStack;
  /frameworks/ex/variablespeed/jni/
variablespeed.h 33 #include <stack>
104 std::stack<int16*> freeBuffers_;
  /external/freetype/src/cff/
cffgload.c 894 FT_Fixed* stack; local
905 /* compute random seed from stack address of parameter */
915 decoder->top = decoder->stack;
918 stack = decoder->top;
955 /* this is an operand, push it on the stack */
989 if ( decoder->top - stack >= CFF_MAX_OPERANDS )
1006 /* from the bottom of the stack. However, this seems not to be */
1011 FT_Int num_args = (FT_Int)( args - decoder->stack );
    [all...]
  /dalvik/dx/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);
292 return stack; // return the stack unfiltered
  /dalvik/vm/arch/arm/
CallEABI.S 19 * argument list has to be pushed onto the native stack according to
70 Stack is "full descending". Only the arguments that don't fit in the first 4
71 registers are placed on the stack. "sp" points at the first stacked argument
105 * L - number of double-words of storage required on stack (0-30 words)
106 * F - pad flag -- if set, write a pad word to the stack
109 * onto the stack. Anything requiring more than that -- which should happen
117 * will not be able to unwind the stack past this method. The only way
119 * The stack unwinder in debuggerd *does* pay attention to fp if we set it
134 * stack looks like:
181 * Make room on the stack for the arguments and copy them over
    [all...]
  /external/junit/src/junit/runner/
BaseTestRunner.java 282 * Returns a filtered stack trace
294 * Filters stack frames from internal JUnit classes
296 public static String getFilteredTrace(String stack) {
298 return stack;
302 StringReader sr= new StringReader(stack);
312 return stack; // return the stack unfiltered
  /external/libffi/src/cris/
ffi.c 70 ffi_prep_args (char *stack, extended_cif * ecif)
78 argp = stack;
109 (unsigned int) (UINT32 *) (stack + uiLocOnStack);
110 memcpy ((stack + uiLocOnStack), *p_argv, (*p_arg)->size);
333 looking at the those passed on the stack. Step over the
  /external/libvpx/vp8/common/arm/armv6/
sixtappredict8x4_v6.asm 20 ; stack unsigned char *dst_ptr,
21 ; stack int dst_pitch
23 ;note: In first pass, store the result in transpose(8linesx9columns) on stack. Temporary stack size is 184.
24 ;Line width is 20 that is 9 short data plus 2 to make it 4bytes aligned. In second pass, load data from stack,
28 str r3, [sp, #-184]! ;reserve space on stack for temporary storage, store yoffset
118 ldr r0, [sp, #216] ; load dst address from stack 180+36
119 ldr r1, [sp, #220] ; load dst stride from stack 180+40
  /external/libvpx/vp8/encoder/ppc/
rdopt_altivec.asm 22 stwu r1,-32(r1) ;# create space on the stack
48 addi r1, r1, 32 ;# recover stack
  /external/openssl/crypto/txt_db/
txt_db.h 66 #include <openssl/stack.h>
  /external/openssl/include/openssl/
txt_db.h 66 #include <openssl/stack.h>
  /external/skia/src/core/
SkClipStack.cpp 196 SkClipStack::B2FIter::B2FIter(const SkClipStack& stack) {
197 this->reset(stack);
224 void SkClipStack::B2FIter::reset(const SkClipStack& stack) {
225 fIter.reset(stack.fDeque);
  /external/v8/src/
regexp-stack.h 36 // Maintains a per-v8thread stack area that can be used by irregexp
37 // implementation for its backtracking stack.
38 // Since there is only one stack area, the Irregexp implementation is not
43 // Create and delete an instance to control the life-time of a growing stack.
45 // Initializes the stack memory area if necessary.
47 ~RegExpStackScope(); // Releases the stack if it has grown.
49 RegExpStack* stack() const { return regexp_stack_; } function in class:v8::internal::RegExpStackScope
60 // Number of allocated locations on the stack below the limit.
61 // No sequence of pushes must be longer that this without doing a stack-limit
65 // Gives the top of the memory used as stack
    [all...]
  /external/valgrind/main/coregrind/
m_stacks.c 3 /*--- Stack management. m_stacks.c ---*/
41 The stack
43 The stack's segment seems to be dynamically extended downwards by
44 the kernel as the stack pointer moves down. Initially, a 1-page
45 (4k) stack is allocated. When SP moves below that for the first
48 upwards to the current valid stack. It then extends the stack
53 That means that Valgrind can't spot when the stack segment is being
55 update stack permissions around SP, so we need to spot all writes
58 The deal is: when SP is assigned a lower value, the stack is bein
263 Stack* stack = find_stack_by_addr(SP); local
    [all...]

Completed in 1860 milliseconds

1 2 3 4 5 6 7 8 91011>>