HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 1276 - 1300 of 2692) sorted by null

<<51525354555657585960>>

  /external/compiler-rt/lib/msan/
msan_interceptors.cc 130 *memptr = MsanReallocate(&stack, 0, size, alignment, false);
779 return MsanReallocate(&stack, 0, nmemb * size, sizeof(u64), true);
784 return MsanReallocate(&stack, ptr, size, sizeof(u64), false);
789 return MsanReallocate(&stack, 0, size, sizeof(u64), false);
797 u32 stack_id = StackDepotPut(stack.trace, stack.size);
799 CHECK_EQ((stack_id >> 31), 0); // Higher bit is occupied by stack origins.
978 extern "C" int pthread_attr_getstack(void *attr, uptr *stack, uptr *stacksize);
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-search.cc 649 Vector<Cell> stack; local
650 stack.push_back(cell);
653 Cell &cur = stack[stack_pos - 1];
669 if (stack_pos == stack.size()) {
673 stack.push_back(cell);
675 stack[stack_pos - 1].set_node(stack[stack_pos - 1].node() + 1);
  /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...]
  /frameworks/base/services/java/com/android/server/wm/
WindowState.java 465 TaskStack stack = mAppToken != null ? getStack() : null; local
466 if (stack != null && stack.hasSibling()) {
467 mContainingFrame.set(getStackBounds(stack));
730 private Rect getStackBounds(TaskStack stack) {
731 if (stack != null) {
732 return stack.mStackBox.mBounds;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp 26 #include <stack>
340 std::stack<BasicBlock *> stack; local
346 stack.push(pb);
348 while (!stack.empty()) {
349 pb = stack.top();
351 stack.pop();
686 std::stack<uint32_t> stack; member in class:nv50_ir::GCRA
1149 stack.push(node->getValue()->id)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp 26 #include <stack>
340 std::stack<BasicBlock *> stack; local
346 stack.push(pb);
348 while (!stack.empty()) {
349 pb = stack.top();
351 stack.pop();
686 std::stack<uint32_t> stack; member in class:nv50_ir::GCRA
1149 stack.push(node->getValue()->id)
    [all...]
  /dalvik/vm/mterp/armv5te/
footer.S 25 ldr sp, [rSELF,#offThread_jitResumeNSP] @ cut back native stack
107 ldr sp, [rSELF,#offThread_jitResumeNSP] @ cut back native stack
483 SAVEAREA_FROM_FP(r10, rFP) @ r10<- stack save area
513 SAVEAREA_FROM_FP(r10, rFP) @ r10<- stack save area
549 @ find space for the new stack frame, check for overflow
550 SAVEAREA_FROM_FP(r1, rFP) @ r1<- stack save area
559 blo .LstackOverflow @ yes, this frame will overflow stack
563 SAVEAREA_FROM_FP(ip, rFP) @ ip<- stack save area
646 /* insert fake function header to help gdb find the stack frame */
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 11 #include <stack>
619 std::stack<int64> stack; local
620 stack.push(bookmark_bar_id());
621 while (!stack.empty()) {
622 int64 id = stack.top();
623 stack.pop();
630 stack.push(gnode.GetSuccessorId());
632 stack.push(gnode.GetFirstChildId());
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
mandreel.js     [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_resize_browsertest.cc 533 StackedPanelCollection* stack = panel_manager->CreateStack(); local
535 Panel* panel1 = CreateStackedPanel("1", panel1_initial_bounds, stack);
537 Panel* panel2 = CreateStackedPanel("2", panel2_initial_bounds, stack);
539 Panel* panel3 = CreateStackedPanel("3", panel3_initial_bounds, stack);
542 ASSERT_EQ(3, stack->num_panels());
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_data_source.py 43 # Use an explicit stack instead of recursion.
44 stack = [schema]
46 while stack:
47 node = stack.pop()
49 stack.extend(node)
53 stack.extend(v for k, v in node.iteritems() if k not in ignore)
  /external/chromium_org/third_party/freetype/src/truetype/
ttinterp.c 126 /* The instruction argument stack. */
413 /* free stack */
414 FT_FREE( exec->stack );
417 /* free call stack */
475 exec->stack = NULL;
609 /* XXX: We reserve a little more elements on the stack to deal safely */
615 (void*)&exec->stack,
    [all...]
  /external/chromium_org/third_party/ply/
yacc.py 152 # Format stack entries when the parser is running in debug mode
192 def __init__(self,s,stack=None):
194 self.stack = stack
199 else: return self.stack[n].value
284 lookaheadstack = [ ] # Stack of lookahead symbols
316 statestack = [ ] # Stack of parsing states
318 symstack = [ ] # Stack of grammar symbols
321 pslice.stack = symstack # Put in the production
351 debug.debug('Stack : %s'
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 242 * more information such as the stack frame with
406 * follow that rule reference on the stack; this amounts to
433 * that rule is pushed on a stack. Here are the various "local"
444 * and, hence, the follow context stack is:
557 // what is exact? it seems to only add sets from above on stack
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 265 * more information such as the stack frame with
476 * follow that rule reference on the stack; this amounts to
503 * that rule is pushed on a stack. Here are the various "local"
514 * and, hence, the follow context stack is:
629 // what is exact? it seems to only add sets from above on stack
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_model_associator.cc 7 #include <stack>
444 std::stack<int64> dfs_stack;
476 // Only folder nodes are pushed on to the stack.
578 std::stack<const BookmarkNode*> dfs_stack;
  /external/chromium_org/third_party/x86inc/
x86inc.asm 118 ; into registers at the start, and make no other use of the stack. Luckily that
122 ; %1 = number of arguments. loads them from stack if needed.
132 ; TODO Some functions can use some args directly from the stack. If they're the
146 ; rNm is the original location of arg N (a register or on the stack), dword
544 ; This is needed for ELF, otherwise the GNU linker assumes the stack is
547 SECTION .note.GNU-stack noalloc noexec nowrite progbits
  /external/chromium_org/tools/valgrind/
memcheck_analyze.py 30 # we don't want to see in stack traces while pretty printing
32 # Just stop printing the stack/suppression frames when the current one
130 # Valgrind errors contain one <what><stack> pair, plus an optional
131 # <auxwhat><stack> pair, plus an optional <origin><what><stack></origin>,
142 # <stack>
146 # </stack>
148 # <stack>
152 # </stack>
155 # <stack>
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 209 ** stack - (input) pointer to the top of the stack (highest memory location)
210 ** stacksize - (input) size of the stack allocated for the task
219 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
227 GKI_TRACE_5 ("GKI_create_task func=0x%x id=%d name=%s stack=0x%x stackSize=%d", task_entry, task_id, taskname, stack, stacksize);
298 stack,
601 ** NOTE This function is NOT called by the Widcomm stack and
855 ** NOTE This function is NOT called by the Widcomm stack and
878 ** NOTE The Widcomm upper stack and profiles may run as a single task
    [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c 206 ** stack - (input) pointer to the top of the stack (highest memory location)
207 ** stacksize - (input) size of the stack allocated for the task
216 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
224 GKI_TRACE_5 ("GKI_create_task func=0x%x id=%d name=%s stack=0x%x stackSize=%d", task_entry, task_id, taskname, stack, stacksize);
295 stack,
579 ** NOTE This function is NOT called by the Widcomm stack and
833 ** NOTE This function is NOT called by the Widcomm stack and
856 ** NOTE The Widcomm upper stack and profiles may run as a single task
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
sixtappredict8x8_neon.asm 33 ; stack(r4) unsigned char *dst_ptr,
34 ; stack(r5) int dst_pitch
41 ldr r4, [sp, #12] ;load parameters from stack
42 ldr r5, [sp, #16] ;load parameters from stack
55 sub sp, sp, #64 ;reserve space on stack for temporary storage
246 vld1.u8 {q9}, [lr]! ;load intermediate data from stack
  /external/opencv/cv/src/
cvcalibinit.cpp 544 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
    [all...]
  /external/v8/test/cctest/
test-cpu-profiler.cc 50 sample->stack[0] = frame2;
54 sample->stack[1] = frame3;
248 sample->stack[i] = ToAddress(0x1200);
  /frameworks/native/opengl/libagl/
context.h 450 matrixf_t *stack; member in struct:android::gl::matrix_stack_t
464 matrixf_t& top() { return stack[depth]; }
465 const matrixf_t& top() const { return stack[depth]; }
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 424 ArrayList<PtNode> stack = ptNodeArray.mData; local
426 for (int i = 0; i < stack.size(); ++i) {
427 int currentValue = stack.get(i).mChars[0];
429 throw new RuntimeException("Invalid stack");
    [all...]

Completed in 1889 milliseconds

<<51525354555657585960>>