HomeSort by relevance Sort by last modified time
    Searched defs:stack_id (Results 1 - 11 of 11) sorted by null

  /external/compiler-rt/lib/lsan/
lsan_common_linux.cc 95 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) {
96 CHECK(stack_id);
98 const uptr *trace = map->Get(stack_id, &size);
119 u32 stack_id = m.stack_trace_id(); local
121 if (stack_id > 0)
122 caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map);
  /external/compiler-rt/lib/asan/
asan_globals.cc 51 u32 stack_id; member in struct:__asan::GlobalRegistrationSite
98 return grs.stack_id;
181 u32 stack_id = StackDepotPut(stack.trace, stack.size); local
186 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]};
190 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]);
asan_thread.h 40 stack_id(0),
45 u32 stack_id; member in class:__asan::AsanThreadContext
  /external/openfst/src/include/fst/extensions/pdt/
pdt.h 49 // 'child_map_' accessed by stack_id and label. The paren_id is
85 StackId Find(StackId stack_id, Label label) {
87 return stack_id; // Non-paren.
92 return stack_id;
96 StackId &child_id = child_map_[make_pair(stack_id, label)];
99 nodes_.push_back(StackNode(stack_id, paren_id));
104 const StackNode &node = nodes_[stack_id];
113 StackId Pop(StackId stack_id) const {
114 return nodes_[stack_id].parent_id;
117 // Returns the paren ID at the top of the stack for 'stack_id'
159 StackId stack_id; member in struct:fst::PdtStateTuple
    [all...]
expand.h 141 if (w != Weight::Zero() && tuple.stack_id == 0)
181 StackId stack_id = stack_->Find(tuple.stack_id, arc.ilabel); local
182 if (stack_id == -1) {
185 } else if ((stack_id != tuple.stack_id) && !keep_parentheses_) {
190 StateTuple ntuple(arc.nextstate, stack_id);
400 StackId si1 = state_table_.Tuple(s1).stack_id;
401 StackId si2 = state_table_.Tuple(s2).stack_id;
890 StackId stack_id = state_table_.Tuple(s).stack_id local
    [all...]
  /external/chromium_org/v8/src/third_party/vtune/
jitprofiling.h 194 unsigned int stack_id; member in struct:_iJIT_Method_NIDS
  /external/compiler-rt/lib/msan/
msan_allocator.cc 105 u32 stack_id = StackDepotPut(stack->trace, stack->size); local
106 CHECK(stack_id);
108 ChainedOriginDepotPut(stack_id, Origin::kHeapRoot, &id);
128 u32 stack_id = StackDepotPut(stack->trace, stack->size); local
129 CHECK(stack_id);
131 ChainedOriginDepotPut(stack_id, Origin::kHeapRoot, &id);
msan_report.cc 71 u32 stack_id = ChainedOriginDepotGet(o.id(), &prev_id); local
76 const char *so = GetStackOriginDescr(stack_id, &pc);
81 const uptr *trace = StackDepotGet(stack_id, &size);
89 const uptr *trace = StackDepotGet(stack_id, &size);
msan_interceptors.cc 846 u32 stack_id = StackDepotPut(stack.trace, stack.size); local
848 ChainedOriginDepotPut(stack_id, Origin::kHeapRoot, &id);
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.h 155 unsigned int stack_id; member in struct:_iJIT_Method_NIDS
  /external/lldb/source/Target/
Thread.cpp 160 Thread::ThreadEventData::ThreadEventData (const lldb::ThreadSP thread_sp, const StackID &stack_id) :
162 m_stack_id (stack_id)
207 StackID stack_id; local
210 stack_id = event_data->GetStackID();
211 return stack_id;
    [all...]

Completed in 3605 milliseconds