Home
last modified time | relevance | path

Searched refs:stack_id (Results 1 – 21 of 21) sorted by relevance

/external/openfst/src/include/fst/extensions/pdt/
Dpdt.h85 StackId Find(StackId stack_id, Label label) { in Find() argument
87 return stack_id; // Non-paren. in Find()
92 return stack_id; in Find()
96 StackId &child_id = child_map_[make_pair(stack_id, label)]; in Find()
99 nodes_.push_back(StackNode(stack_id, paren_id)); in Find()
104 const StackNode &node = nodes_[stack_id]; in Find()
113 StackId Pop(StackId stack_id) const { in Pop() argument
114 return nodes_[stack_id].parent_id; in Pop()
118 ssize_t Top(StackId stack_id) const { in Top() argument
119 return nodes_[stack_id].paren_id; in Top()
[all …]
Dexpand.h141 if (w != Weight::Zero() && tuple.stack_id == 0) in Final()
181 StackId stack_id = stack_->Find(tuple.stack_id, arc.ilabel); in ExpandState() local
182 if (stack_id == -1) { in ExpandState()
185 } else if ((stack_id != tuple.stack_id) && !keep_parentheses_) { in ExpandState()
190 StateTuple ntuple(arc.nextstate, stack_id); in ExpandState()
400 StackId si1 = state_table_.Tuple(s1).stack_id; in operator()
401 StackId si2 = state_table_.Tuple(s2).stack_id; in operator()
890 StackId stack_id = state_table_.Tuple(s).stack_id; in Expand() local
891 ProcDestStates(s, stack_id); in Expand()
897 StackId nextstack_id = state_table_.Tuple(arc.nextstate).stack_id; in Expand()
[all …]
Dcompose.h398 StackId stack_id = stack_.Find(f2.GetState(), label); in FilterParen() local
399 if (stack_id < 0) { in FilterParen()
402 return FilterState(f1, FilterState2(stack_id)); in FilterParen()
/external/compiler-rt/lib/msan/
Dmsan_origin.h89 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id); in getNextChainedOrigin() local
90 if (stack) *stack = StackDepotGet(stack_id); in getNextChainedOrigin()
104 u32 stack_id = StackDepotPut(*stack); in CreateHeapOrigin() local
105 CHECK(stack_id); in CreateHeapOrigin()
106 CHECK((stack_id & kHeapIdMask) == stack_id); in CreateHeapOrigin()
107 return Origin(stack_id); in CreateHeapOrigin()
/external/compiler-rt/lib/lsan/
Dlsan_common_linux.cc91 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) { in GetCallerPC() argument
92 CHECK(stack_id); in GetCallerPC()
93 StackTrace stack = map->Get(stack_id); in GetCallerPC()
114 u32 stack_id = m.stack_trace_id(); in ProcessPlatformSpecificAllocationsCb() local
116 if (stack_id > 0) in ProcessPlatformSpecificAllocationsCb()
117 caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map); in ProcessPlatformSpecificAllocationsCb()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_ignoreset.cc23 void IgnoreSet::Add(u32 stack_id) { in Add() argument
27 if (stacks_[i] == stack_id) in Add()
30 stacks_[size_++] = stack_id; in Add()
Dtsan_ignoreset.h26 void Add(u32 stack_id);
Dtsan_rtl_report.cc99 ReportStack *SymbolizeStackId(u32 stack_id) { in SymbolizeStackId() argument
100 if (stack_id == 0) in SymbolizeStackId()
102 StackTrace stack = StackDepotGet(stack_id); in SymbolizeStackId()
354 void ScopedReport::AddSleep(u32 stack_id) { in AddSleep() argument
355 rep_->sleep = SymbolizeStackId(stack_id); in AddSleep()
Dtsan_rtl.h528 void AddSleep(u32 stack_id);
608 ReportStack *SymbolizeStackId(u32 stack_id);
/external/lldb/include/lldb/Target/
DThread.h85 ThreadEventData (const lldb::ThreadSP thread_sp, const StackID &stack_id);
145 RegisterCheckpoint (const StackID &stack_id) : in RegisterCheckpoint() argument
146 m_stack_id (stack_id), in RegisterCheckpoint()
179 SetStackID (const StackID &stack_id) in SetStackID() argument
181 m_stack_id = stack_id; in SetStackID()
382 GetFrameWithStackID (const StackID &stack_id) in GetFrameWithStackID() argument
384 if (stack_id.IsValid()) in GetFrameWithStackID()
385 return GetStackFrameList()->GetFrameWithStackID (stack_id); in GetFrameWithStackID()
DStackFrameList.h46 GetFrameWithStackID (const StackID &stack_id);
/external/v8/src/third_party/vtune/
Djitprofiling.cc226 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = (threadStack->CurrentStack)--; in iJIT_NotifyEvent()
253 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = ++(threadStack->CurrentStack) + 1; in iJIT_NotifyEvent()
255 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id > threadStack->TopStack) in iJIT_NotifyEvent()
256 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = (unsigned int)-1; in iJIT_NotifyEvent()
Djitprofiling.h194 unsigned int stack_id; member
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c192 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent()
222 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent()
225 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id in iJIT_NotifyEvent()
227 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent()
Djitprofiling.h155 unsigned int stack_id; member
/external/compiler-rt/lib/asan/
Dasan_globals.cc52 u32 stack_id; member
138 return grs.stack_id; in FindRegistrationSite()
224 u32 stack_id = StackDepotPut(stack); in __asan_register_globals() local
229 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]}; in __asan_register_globals()
233 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]); in __asan_register_globals()
Dasan_thread.h40 stack_id(0), in AsanThreadContext()
45 u32 stack_id; variable
Dasan_thread.cc38 stack_id = StackDepotPut(*args->stack); in OnCreated()
Dasan_report.cc590 StackDepotGet(context->stack_id).Print(); in DescribeThread()
/external/lldb/source/Target/
DStackFrameList.cpp599 CompareStackID (const StackFrameSP &stack_sp, const StackID &stack_id) in CompareStackID() argument
601 return stack_sp->GetStackID() < stack_id; in CompareStackID()
605 StackFrameList::GetFrameWithStackID (const StackID &stack_id) in GetFrameWithStackID() argument
609 if (stack_id.IsValid()) in GetFrameWithStackID()
618 … collection::const_iterator pos = std::lower_bound (begin, end, stack_id, CompareStackID); in GetFrameWithStackID()
619 if (pos != end && (*pos)->GetStackID() == stack_id) in GetFrameWithStackID()
622 if (m_frames.back()->GetStackID() < stack_id) in GetFrameWithStackID()
628 if (frame_sp && frame_sp->GetStackID() == stack_id) in GetFrameWithStackID()
DThread.cpp160 Thread::ThreadEventData::ThreadEventData (const lldb::ThreadSP thread_sp, const StackID &stack_id) : in ThreadEventData() argument
162 m_stack_id (stack_id) in ThreadEventData()
207 StackID stack_id; in GetStackIDFromEvent() local
210 stack_id = event_data->GetStackID(); in GetStackIDFromEvent()
211 return stack_id; in GetStackIDFromEvent()