Searched defs:stack (Results 76 - 100 of 419) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/evaluation/
H A DProcessor.java31 * local variable frame and stack.
39 private final Stack stack; field in class:Processor
51 * @param stack the local stack.
56 Stack stack,
62 this.stack = stack;
82 stack.push(valueFactory.createReferenceValueNull());
94 stack.push(valueFactory.createIntegerValue(simpleInstruction.constant));
99 stack
55 Processor(Variables variables, Stack stack, ValueFactory valueFactory, BranchUnit branchUnit, InvocationUnit invocationUnit) argument
[all...]
/external/qemu/android/base/files/
H A DPathUtils.cpp135 StringVector stack; local
145 // stack that is not '..', then remove it, otherwise push
147 if (!stack.empty() && stack[stack.size() -1U] != "..") {
148 stack.resize(stack.size() - 1U);
150 stack.push_back(*it);
154 // If not a '..', just push on the stack.
155 stack
[all...]
/external/skia/tools/
H A DCrashHandler.cpp48 void* stack[kMax]; local
49 const int count = backtrace(stack, kMax);
52 backtrace_symbols_fd(stack, count, 2/*stderr*/);
108 // We need to run SymInitialize before doing any of the stack walking below.
/external/speex/libspeex/
H A Dcb_search_sse.h54 static void compute_weighted_codebook(const signed char *shape_cb, const spx_sig_t *_r, float *resp, __m128 *resp2, __m128 *E, int shape_cb_size, int subvect_size, char *stack) argument
H A Dfilters_sse.h134 void filter_mem16(const float *x, const float *_num, const float *_den, float *y, int N, int ord, float *_mem, char *stack) argument
233 void iir_mem16(const float *x, const float *_den, float *y, int N, int ord, float *_mem, char *stack) argument
330 void fir_mem16(const float *x, const float *_num, float *y, int N, int ord, float *_mem, char *stack) argument
H A Dltp_sse.h57 void pitch_xcorr(const float *_x, const float *_y, float *corr, int len, int nb_pitch, char *stack) argument
H A Dvq_arm4.h36 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) argument
/external/stlport/stlport/stl/
H A D_stack.h47 class stack class in inherits:__stlport_class
50 : public __stlport_class<stack<_Tp> >
52 : public __stlport_class<stack<_Tp, _Sequence> >
58 typedef stack<_Tp> _Self;
60 typedef stack<_Tp, _Sequence> _Self;
74 stack() : c() {} function in class:stack
75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack
78 stack(__move_source<_Self> src) function in class:stack
106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x,
107 const stack< _STLP_STACK_ARG
[all...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DUDPMessageChannel.java30 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
163 * Constructor - takes a datagram packet and a stack structure Extracts the
165 * pointer to the passed stack structure.
167 * @param stack
172 protected UDPMessageChannel(SIPTransactionStack stack, argument
199 UDPMessageChannel(SIPTransactionStack stack, UDPMessageProcessor messageProcessor, DatagramPacket packet) argument
[all...]
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffparse.h44 FT_Byte* stack[CFF_MAX_STACK_DEPTH + 1]; member in struct:CFF_ParserRec_
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dindirect_vertex_array_priv.h306 struct array_stack_state *stack; member in struct:array_state_vector
/external/chromium_org/third_party/skia/src/gpu/
H A DGrReducedClip.cpp17 void reduced_stack_walker(const SkClipStack& stack,
31 void ReduceClipStack(const SkClipStack& stack, argument
43 *resultGenID = stack.getTopmostGenID();
45 if (stack.isWideOpen()) {
51 // We initially look at whether the bounds alone is sufficient. We also use the stack bounds to
57 stack.getBounds(&stackBounds, &stackBoundsType, &iior);
91 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart);
136 // helper that actually walks the stack.
137 reduced_stack_walker(stack, scalarBounds, result, resultGenID, initialState, requiresAA);
144 void reduced_stack_walker(const SkClipStack& stack, argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DClipCacheTest.cpp71 // create a clip stack that will (trivially) reduce to a single rect that
73 SkClipStack stack; local
74 stack.clipDevRect(clipRect, SkRegion::kReplace_Op, false);
79 stack.getConservativeBounds(0, 0, kXSize, kYSize,
89 clipData.fClipStack = &stack;
102 // verify that the top state of the stack matches the passed in state
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofiledata.h50 // Each sample contains a stack trace and a count. Memory usage is
51 // reduced by combining profile samples that have the same stack trace
103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile
126 // entries from 'stack'. (depth must be > 0.) At most
127 // kMaxStackDepth stack entries will be recorded, starting with
128 // stack[0].
132 void Add(int depth, const void* const* stack);
156 Slot stack[kMaxStackDepth]; // Stack contents member in struct:ProfileData::Entry
H A Dprofiler.cc34 // Profile current program by sampling stack-trace every so often
269 void* stack[ProfileData::kMaxStackDepth]; local
273 stack[0] = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
275 // We skip the top two stack trace entries (this function and one
281 int depth = GetStackTraceWithContext(stack + 1, arraysize(stack) - 1,
283 depth++; // To account for pc value in stack[0];
285 instance->collector_.Add(depth, stack);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofiledata.h50 // Each sample contains a stack trace and a count. Memory usage is
51 // reduced by combining profile samples that have the same stack trace
103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile
126 // entries from 'stack'. (depth must be > 0.) At most
127 // kMaxStackDepth stack entries will be recorded, starting with
128 // stack[0].
132 void Add(int depth, const void* const* stack);
156 Slot stack[kMaxStackDepth]; // Stack contents member in struct:ProfileData::Entry
H A Dprofiler.cc34 // Profile current program by sampling stack-trace every so often
267 void* stack[ProfileData::kMaxStackDepth]; local
271 stack[0] = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
273 // We skip the top two stack trace entries (this function and one
279 int depth = GetStackTraceWithContext(stack + 1, arraysize(stack) - 1,
281 depth++; // To account for pc value in stack[0];
283 instance->collector_.Add(depth, stack);
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.cc86 const State& state = it->second.stack.top();
101 const State& state = it->second.stack.top();
137 std::stack<State>* stack = &thread_state->stack; local
138 if (stack->empty()) {
141 new_state.MergePrevious(stack->top());
143 stack->push(new_state);
150 std::stack<State>* stack local
[all...]
H A Dbwe_test_logging.h98 #include <stack>
205 std::stack<State> stack; member in struct:webrtc::testing::bwe::Logging::ThreadState
/external/chromium_org/v8/src/
H A Dsampler.h21 // (if used for profiling) the program counter and stack pointer for
44 Address tos; // Top stack value (*sp).
49 Address stack[kMaxFramesCount]; // Call stack. member in struct:v8::internal::TickSample
69 // Performs stack sampling.
94 // Used in tests to make sure that stack sampling is performed.
121 // Counts stack samples taken in JS VM state.
/external/compiler-rt/lib/asan/
H A Dasan_linux.cc232 void ReadContextStack(void *context, uptr *stack, uptr *ssize) { argument
234 *stack = (uptr)ucp->uc_stack.ss_sp;
238 void ReadContextStack(void *context, uptr *stack, uptr *ssize) { argument
/external/compiler-rt/lib/asan/tests/
H A Dasan_noinst_test.cc143 StackTrace stack; local
144 stack.trace[0] = 0x890;
145 stack.size = 1;
148 void *p = __asan::asan_malloc(size, &stack);
149 __asan::asan_free(p, &stack, __asan::FROM_MALLOC);
153 void *p1 = __asan::asan_malloc(size, &stack);
154 __asan::asan_free(p1, &stack, __asan::FROM_MALLOC);
164 StackTrace stack; local
165 stack.trace[0] = 0x890;
166 stack
191 StackTrace stack; local
244 StackTrace stack; local
[all...]
/external/freetype/src/cff/
H A Dcffparse.h44 FT_Byte* stack[CFF_MAX_STACK_DEPTH + 1]; member in struct:CFF_ParserRec_
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONWriter.java79 * The object/array stack.
81 private JSONObject stack[]; field in class:JSONWriter
84 * The stack top index. A value of 0 indicates that the stack is empty.
99 this.stack = new JSONObject[maxdepth];
210 stack[top - 1].putOnce(s, Boolean.TRUE);
257 char m = this.stack[this.top - 1] == null ? 'a' : 'k';
262 this.mode = this.top == 0 ? 'd' : this.stack[this.top - 1] == null ? 'a' : 'k';
274 this.stack[this.top] = jo;
/external/javassist/src/main/javassist/bytecode/analysis/
H A DFrame.java19 * Represents the stack frame and local variable table at a particular point in time.
25 private Type[] stack; field in class:Frame
31 * Create a new frame with the specified local variable table size, and max stack size
34 * @param stack the maximum stack size
36 public Frame(int locals, int stack) { argument
38 this.stack = new Type[stack];
63 * Returns the type on the stack at the specified index.
65 * @param index the position on the stack
[all...]

Completed in 6587 milliseconds

1234567891011>>