Searched defs:stack (Results 176 - 200 of 223) sorted by relevance

123456789

/external/libvorbis/lib/
H A Dpsy.c454 long stack=0; local
459 if(stack<2){
460 posstack[stack]=i;
461 ampstack[stack++]=seeds[i];
464 if(seeds[i]<ampstack[stack-1]){
465 posstack[stack]=i;
466 ampstack[stack++]=seeds[i];
469 if(i<posstack[stack-1]+linesper){
470 if(stack>1 && ampstack[stack
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h652 SmallVector<uintptr_t,20> stack; member in class:llvm::ImutAVLTreeGenericIterator
662 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
666 assert(!stack.empty());
667 return reinterpret_cast<TreeTy*>(stack.back() & ~Flags);
671 assert(!stack.empty());
672 return stack.back() & Flags;
676 bool atEnd() const { return stack.empty(); }
679 return stack.size() == 1 && getVisitState() == VisitedNone;
683 assert(!stack.empty());
684 stack
[all...]
/external/llvm/utils/unittest/googletest/
H A Dgtest-death-test.cc215 // death test child process, which operates on a very small stack. Use
929 // Two utility routines that together determine the direction the stack
963 void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, local
965 GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED);
967 static_cast<char*>(stack) + (stack_grows_down ? stack_size : 0);
971 GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPDialog.java29 package gov.nist.javax.sip.stack;
220 // the amount of time to keep this dialog around before the stack GC's it
444 SIPTransactionStack stack = dialog.sipStack;
445 if (stack.isLoggingEnabled()) {
446 stack.getStackLogger().logDebug("resend 200 response from " + dialog);
1033 * Set the stack address. Prevent us from routing messages to ourselves.
1035 * @param sipStack the address of the SIP stack.
1044 * Get the stack .
1046 * @return sipStack the SIP stack of the dialog.
1399 // If not the stack wil
[all...]
H A DSIPTransactionStack.java26 package gov.nist.javax.sip.stack;
90 * This is the sip stack. It is essentially a management interface. It manages the resources for
151 // overriden by stack
177 * ServerLog is used just for logging stack message tracecs.
182 * We support UDP on this stack.
208 * Flag that indicates that the stack is active.
213 * Name of the stack.
218 * IP address of stack -- this can be re-written by stun.
225 * INET address of stack (cached to avoid repeated lookup)
302 // Flag to indicate whether the stack wil
[all...]
/external/opencv/cv/src/
H A Dcvcalibinit.cpp544 CvSeq* stack = cvCreateSeq( 0, sizeof(*stack), sizeof(void*), temp_storage ); local
572 cvSeqPush(stack, &start);
580 while( stack->total )
583 cvSeqPop( stack, &q );
618 cvSeqPush( stack, &neighbor );
1142 CvSeq* stack = cvCreateSeq( 0, sizeof(*stack), sizeof(void*), temp_storage ); local
1156 cvSeqPush( stack, &q );
1161 while( stack
[all...]
/external/opencv/cxcore/include/
H A Dcxcore.h299 int stack[CV_MAX_DIM]; /* for internal use */ member in struct:CvNArrayIterator
1246 CvSeq* stack; /* the graph vertex stack */ member in struct:CvGraphScanner
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp256 /* Moves stack pointer to next block.
2174 stack[48]; local
2194 CV_SAVE_READER_POS( left, stack[0].lb );
2196 CV_SAVE_READER_POS( right, stack[0].ub );
2200 CV_RESTORE_READER_POS( left, stack[sp].lb );
2201 CV_RESTORE_READER_POS( right, stack[sp].ub );
2410 CV_SAVE_READER_POS( left0, stack[sp].lb );
2412 CV_SAVE_READER_POS( left0, stack[sp].ub );
2419 CV_SAVE_READER_POS( right0, stack[sp].ub );
2421 CV_SAVE_READER_POS( right0, stack[s
[all...]
/external/openfst/src/include/fst/
H A Dreplace.h500 const StackPrefix& stack = stackprefix_array_[tuple.prefix_id]; local
504 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth() == 0)
696 // if state is final, pop up stack
697 const StackPrefix& stack = stackprefix_array_[tuple.prefix_id]; local
698 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth()) {
703 PrefixId prefix_id = PopPrefix(stack);
704 const PrefixTuple& top = stack.Top();
791 // \brief Tuple of fst_id and destination state (entry in stack prefix)
800 // \brief Container for stack prefix.
832 // \brief Compare two stack prefi
[all...]
/external/skia/src/pdf/
H A DSkPDFDevice.cpp127 // intersect. If the clip stack does anything other than intersect,
219 // This function initializes iter to be an interator on the "stack" argument
221 // and asserts that "prefix" will be a prefix to "stack."
223 const SkClipStack& stack,
226 iter->reset(stack);
247 iter->reset(stack);
282 // graphic state stack, and the fact that we can know all the clips used
310 // If the clip stack does anything other than intersect or if it uses
1218 // The clip stack can come from an SkDraw where it is technically optional.
1224 // GraphicStackState::updateClip expects the clip stack t
222 skip_clip_stack_prefix(const SkClipStack& prefix, const SkClipStack& stack, SkClipStack::B2FIter* iter) argument
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.c2020 /* stack underflow, cdl block has an errorr */
2024 /* pop the value off the stack */
2047 /* stack overflow, return an error */
2051 /* push the value onto the stack */
2170 EAS_U32 stack[CDL_STACK_SIZE]; local
2189 if ((result = PopcdlStack(stack, &stackPtr, &x)) != EAS_SUCCESS)
2191 if ((result = PopcdlStack(stack, &stackPtr, &y)) != EAS_SUCCESS)
2246 if ((result = PopcdlStack(stack, &stackPtr, &x)) != EAS_SUCCESS)
2273 /* push the result on the stack */
2274 if ((result = PushcdlStack(stack,
[all...]
/external/tinyxml2/
H A Dtinyxml2.h1469 DynArray< const char*, 10 > stack; member in class:tinyxml2::XMLPrinter
/external/webkit/Source/WebCore/editing/
H A DTextIterator.cpp217 static void pushFullyClippedState(BitStack& stack, Node* node) argument
219 ASSERT(stack.size() == depthCrossingShadowBoundaries(node));
223 stack.push(fullyClipsContents(node) || (stack.top() && !ignoresContainerClip(node)));
226 static void setUpFullyClippedStack(BitStack& stack, Node* node) argument
236 pushFullyClippedState(stack, ancestry[size - i - 1]);
237 pushFullyClippedState(stack, node);
239 ASSERT(stack.size() == 1 + depthCrossingShadowBoundaries(node));
/external/webkit/Source/WebCore/inspector/
H A DInspectorInstrumentation.cpp640 void InspectorInstrumentation::consoleCountImpl(InspectorAgent* inspectorAgent, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack) argument
642 inspectorAgent->consoleAgent()->count(arguments, stack);
650 void InspectorInstrumentation::stopConsoleTimingImpl(InspectorAgent* inspectorAgent, const String& title, PassRefPtr<ScriptCallStack> stack) argument
652 inspectorAgent->consoleAgent()->stopTiming(title, stack);
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js205 var stack = [];
210 stack.push(ast);
221 stack.pop();
243 return stack[stack.length - 2]; // last one is current node
245 stack: function() {
246 return stack;
1042 var a = slice($stack), self = a.pop(), p = a.pop();
1378 var $stack = [];
1385 $stack
[all...]
/external/kernel-headers/original/asm-x86/
H A Dprocessor_32.h340 * .. and then another 0x100 bytes for emergency kernel stack
342 unsigned long stack[64]; member in struct:tss_struct
426 void show_trace(struct task_struct *task, struct pt_regs *regs, unsigned long *stack);
438 * The below -8 is to reserve 8 bytes on top of the ring0 stack.
441 * on the stack (interrupt gate does not save these registers
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c104 VG_(printf)("thread tid %d started: stack = %p\n",
135 /* Allocate a stack for this thread, if it doesn't already have one.
136 Returns the initial stack pointer value to use, or 0 if allocation
142 VgStack* stack; local
146 case a stack hasn't been allocated) or they are both non-zero,
155 /* If no stack is present, allocate one. */
158 stack = VG_(am_alloc_VgStack)( &initial_SP );
159 if (stack) {
160 tst->os_state.valgrind_stack_base = (Addr)stack;
165 VG_(debugLog)( 2, "syswrap-darwin", "stack fo
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf.c1569 DWARF2/GCC uses the stack address *before* the function call as a
1694 > I'm chasing a stack backtrace failure for an amd64 .so which was
1751 unwinds the stack it will see relocated data.
1843 # define SP_REG 15 // stack is always r15
1991 /* Size of the stack of register unwind rules. This is only
1992 exceedingly rarely used, so a stack of size 1 should actually work
2007 /* We need a stack of these in order to handle
2126 /* Guard against obviously stupid settings of the reg-rule stack
2648 stack[sp] = (_arg); \
2656 _lval = stack[s
2668 Int stack[N_EXPR_STACK]; /* indices into ctx->exprs */ local
[all...]
/external/valgrind/main/helgrind/
H A Dhg_main.c1536 The stack snapshot is taken immediately after the parent has
1673 try taking stack snapshots of it. */
2505 /* For each semaphore, we maintain a stack of SOs. When a 'post'
2509 SO), and the SO is pushed on the semaphore's stack.
2512 semaphore, we pop a SO off the semaphore's stack (which should be
2516 It may not be necessary to use a stack - perhaps a bag of SOs would
2570 /* xa is the stack for this semaphore. */
2576 return NULL; /* odd, the stack is empty */
2582 /* hmm, that's odd. No stack for this semaphore. */
2598 /* Empty out the semaphore's SO stack
3592 XArray* stack; /* of Lock* */ local
[all...]
/external/kernel-headers/original/linux/
H A Dsched.h200 * task), SP is the stack pointer of the first frame that should be shown in the back
962 * to a stack based synchronous wait) if its doing sync IO.
1147 unsigned long stack[THREAD_SIZE/sizeof(long)]; member in union:thread_union
1153 /* Reliable end of stack detection:
1154 * Some APM bios versions misalign the stack
1252 /* True if we are on the alternate signal stack. */
/external/v8/src/
H A Dparser.cc49 // PositionStack is used for on-stack allocation of token positions for
59 Element(PositionStack* stack, int value) { argument
60 previous_ = stack->top();
62 stack->set_top(this);
419 // Parser's target_stack_ (the stack of potential 'break' and
462 // FunctionState and BlockState together implement the parser's scope stack.
464 // FunctionState constructors push on the scope stack and the destructors
652 // Make sure the target stack is empty.
733 // Make sure the target stack is empty.
736 // If there was a stack overflo
3417 ParseNewPrefix(PositionStack* stack, bool* ok) argument
3459 ParseMemberWithNewPrefixesExpression(PositionStack* stack, bool* ok) argument
[all...]
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp4317 // Simlpe races with different objects (stack, heap globals; scalars, structs).
5047 // test105: Checks how stack grows. {{{1
5211 // test110: TP. Simple races with stack, global and heap objects. {{{1
5267 ANNOTATE_EXPECT_RACE(STACK, "real race on stack object");
5297 printf("test110: positive (race on a stack object)\n");
5317 // test111: TN. Unit test for a bug related to stack handling. {{{1
5806 // A. I need different stack traces for different accesses.
6135 // test131 does the same for stack.
6168 // Same as test130, but for stack.
6170 void RealWorker() { // Touch stack
6348 int stack; local
[all...]
/external/valgrind/unittest/
H A Dracecheck_unittest.cc4179 // Simlpe races with different objects (stack, heap globals; scalars, structs).
4857 // test105: Checks how stack grows. {{{1
4994 // test111: TN. Unit test for a bug related to stack handling. {{{1
5660 // test131 does the same for stack.
5694 // Same as PerThreadTest, but for stack.
5696 void RealWorker() { // Touch stack.
5701 void Worker() { // Spawn few threads that touch stack.
5825 // test137 TP. Races on stack variables. {{{1
5831 int stack; local
5834 int *racey = &stack;
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar ... final int STATE_SITE private boolean DESCRIPTION_SITE_ALREADY_SEEN java.util.Stack objectStack private javax.xml.parsers.SAXParser parser ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 915 milliseconds

123456789