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

1 23 4 5 6 7 8 91011>>

  /external/stlport/stlport/
stack 42 # include_next <stack>
44 # include _STLP_NATIVE_HEADER(stack)
  /libcore/json/src/main/java/org/json/
JSONStringer.java 111 * Unlike the original implementation, this stack isn't limited to 20
114 private final List<Scope> stack = new ArrayList<Scope>(); field in class:JSONStringer
175 if (stack.isEmpty() && out.length() > 0) {
179 stack.add(empty);
194 stack.remove(stack.size() - 1);
203 * Returns the value on the top of the stack.
206 if (stack.isEmpty()) {
209 return stack.get(stack.size() - 1)
    [all...]
  /ndk/sources/android/stlport/stlport/
stack 42 # include_next <stack>
44 # include _STLP_NATIVE_HEADER(stack)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/
smp.h 31 void *stack; member in struct:secondary_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/
smp.h 31 void *stack; member in struct:secondary_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/
smp.h 31 void *stack; member in struct:secondary_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/
smp.h 31 void *stack; member in struct:secondary_data
  /sdk/traceview/src/com/android/traceview/
ThreadData.java 35 // This is a hash of all the methods that are currently on the stack.
88 // Check the stack for a matching method to determine if this call
134 ArrayList<Call> stack = mStack; local
135 if (stack.size() == 0)
137 Call top = stack.get(stack.size() - 1);
138 stack.remove(stack.size() - 1);
156 ArrayList<Call> stack = mStack; local
157 if (stack.size() == 0
    [all...]
  /external/srec/srec/include/
astar.h 115 int astar_stack_prepare(AstarStack* stack, int request_nbest_len, psrec rec);
116 int astar_stack_prepare_from_active_search(AstarStack* stack, int request_nbest_len, psrec rec);
117 void astar_stack_clear(AstarStack* stack);
118 int astar_stack_flag_word_tokens_used(AstarStack* stack, psrec rec);
122 void free_partial_path(AstarStack* stack, partial_path* parp);
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 27 * of a set of locals and a value stack, and it can be told to act on
35 /** {@code non-null;} the stack */
36 private final ExecutionStack stack; field in class:Frame
38 /** {@code null-ok;} stack of labels of subroutines that this block is nested in */
45 * @param stack {@code non-null;} the execution stack to use
47 private Frame(LocalsArray locals, ExecutionStack stack) {
48 this(locals, stack, IntList.EMPTY);
55 * @param stack {@code non-null;} the execution stack to us
    [all...]
Simulator.java 123 * Constructs an "illegal top-of-stack" exception, for the stack
127 return new SimException("stack mismatch: illegal " +
128 "top-of-stack for opcode");
318 * one extra stack slot to find the array.
336 ExecutionStack stack = frame.getStack(); local
339 if (stack.peekType(0).isCategory2()) {
343 } else if (stack.peekType(1).isCategory1()) {
368 ExecutionStack stack = frame.getStack(); local
370 if (! (stack.peekType(0).isCategory1() &
380 ExecutionStack stack = frame.getStack(); local
400 ExecutionStack stack = frame.getStack(); local
421 ExecutionStack stack = frame.getStack(); local
453 ExecutionStack stack = frame.getStack(); local
    [all...]
  /external/openssl/crypto/perlasm/
x86asm.pl 23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
44 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); }
45 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); }
46 sub ::blindpop { &pop($_[0]); $stack+=4; }
47 sub ::wparam { &DWP($stack+4*$_[0],"esp"); }
122 $stack=4;
136 $stack=0;
146 $stack+=16; # readjust esp as if we didn't pop anything
  /bionic/libc/arch-arm/bionic/
_exit_with_stack_teardown.S 42 swi #0 @ the stack is destroyed by this call
48 swi # __NR_munmap @ the stack is destroyed by this call
  /dalvik/vm/mterp/x86/
binflop.S 9 $load (rFP,%eax,4) # vCC to fp stack
binflop2addr.S 10 $load (rFP,%ecx,4) # vAA to fp stack
  /libcore/luni/src/main/java/java/lang/
Throwable.java 31 * message in most cases), and for saving a stack trace (that is, a record of
32 * the call stack at a particular point in time) which can be printed later.
38 * information. When printing the stack trace, the trace of the cause is
59 * An intermediate representation of the stack trace. This field may
65 * A fully-expanded representation of the stack trace.
70 * Constructs a new {@code Throwable} that includes the current stack trace.
78 * Constructs a new {@code Throwable} with the current stack trace and the
90 * Constructs a new {@code Throwable} with the current stack trace, the
105 * Constructs a new {@code Throwable} with the current stack trace and the
118 * Records the stack trace from the point where this method has been calle
264 StackTraceElement[] stack = getInternalStackTrace(); local
302 StackTraceElement[] stack = getInternalStackTrace(); local
    [all...]
  /dalvik/vm/alloc/
MarkSweep.h 22 /* Downward-growing stack for better cache read behavior.
29 /* Current top of the stack (inclusive)
42 GcMarkStack stack; member in struct:__anon687
  /external/kernel-headers/original/asm-arm/
processor.h 60 unsigned long *stack = (unsigned long *)sp; \
71 regs->ARM_r2 = stack[2]; /* r2 (envp) */ \
72 regs->ARM_r1 = stack[1]; /* r1 (argv) */ \
73 regs->ARM_r0 = stack[0]; /* r0 (argc) */ \
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HandshakeCompletedListenerImpl.java 19 package gov.nist.javax.sip.stack;
  /cts/tools/dasm/src/java_cup/
parser.java 303 java.util.Stack stack,
308 return action_obj.CUP$do_action(act_num, parser, stack, top);
430 java.util.Stack CUP$stack,
452 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
460 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
468 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val;
478 if (symbols.get((/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val) != null)
481 lexer.emit_error( "Symbol \"" + (/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val
    [all...]
  /external/grub/stage2/
tparm.c 85 * The parameter mechanism uses a stack and special %
87 * of the parameters onto the stack and then print it in some
123 * the stack works in the usual way, with
138 static stack_frame stack[STACKSIZE]; variable
193 stack[stack_ptr].num_type = TRUE;
194 stack[stack_ptr].data.num = x;
205 if (stack[stack_ptr].num_type)
206 result = stack[stack_ptr].data.num;
215 stack[stack_ptr].num_type = FALSE;
216 stack[stack_ptr].data.str = x
    [all...]
  /dalvik/vm/mterp/x86-atom/
OP_FLOAT_TO_INT.S 34 flds (rFP, rINST, 4) # push vB to floating point stack
55 fstps (rFP, %edx, 4) # pop floating point stack
60 fstps (rFP, %edx, 4) # pop floating point stack
65 fstps (rFP, %edx, 4) # pop floating point stack
66 fstps (rFP, %edx, 4) # pop floating point stack
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 34 * and it updates the stack for the invocation of a class member,
50 private Stack stack; field in class:BasicInvocationUnit
138 public void invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack)
176 this.stack = stack;
178 this.stack = null;
189 setFieldValue(clazz, fieldrefConstant, stack.pop());
195 setFieldClassValue(clazz, fieldrefConstant, stack.apop())
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 49 * SamplingProfiler}. It samples the current thread's stack to a depth
50 * of 12 stack frame elements over two different measurement periods
95 * Map of stack traces to a mutable sample count.
114 * each stack.
128 * @param depth The maximum stack depth to retain for each sample
129 * similar to the hprof option of the same name. Any stack deeper
285 * For each thread to be sampled, a stack is collected and used to
287 * maximum depth. There is no way to tell if a stack has been truncated.
319 StackTraceElement[] stack = thread.getStackTrace(); local
320 if (stack.length > depth)
438 private StackTraceElement[] stack; field in class:SamplingProfiler.Trace
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 77 private final java.util.Stack callingInstructionBlockStack;
78 private final java.util.Stack instructionBlockStack = new java.util.Stack();
151 java.util.Stack callingInstructionBlockStack)
207 System.out.println(" Max stack = "+codeAttribute.u2maxStack);
210 // Reuse the existing variables and stack objects, ensuring the right size.
212 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
215 initializeVariables(clazz, method, codeAttribute, variables, stack);
225 stack,
242 System.out.println(" Stack: "+stacksBefore[offset])
1031 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
    [all...]

Completed in 833 milliseconds

1 23 4 5 6 7 8 91011>>