/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...] |
compose.h | 398 StackId stack_id = stack_.Find(f2.GetState(), label); 399 if (stack_id < 0) { 402 return FilterState(f1, FilterState2(stack_id));
|
/external/compiler-rt/lib/lsan/ |
lsan_common_linux.cc | 93 static uptr GetCallerPC(u32 stack_id) { 94 CHECK(stack_id); 96 const uptr *trace = StackDepotGet(stack_id, &size);
|
/external/compiler-rt/lib/msan/ |
msan_allocator.cc | 59 u32 stack_id = StackDepotPut(stack->trace, stack->size); local 60 CHECK(stack_id); 61 CHECK_EQ((stack_id >> 31), 0); // Higher bit is occupied by stack origins. 62 __msan_set_origin(res, size, stack_id);
|
msan_interceptors.cc | 797 u32 stack_id = StackDepotPut(stack.trace, stack.size); local 798 CHECK(stack_id); 799 CHECK_EQ((stack_id >> 31), 0); // Higher bit is occupied by stack origins. 800 __msan_set_origin(data, size, stack_id); [all...] |
/external/chromium_org/v8/src/third_party/vtune/ |
jitprofiling.cc | 142 ** Note: when reporting iJVM_EVENT_TYPE_ENTER_NIDS, there is no need to fill in the stack_id 226 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = (threadStack->CurrentStack)--; 253 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = ++(threadStack->CurrentStack) + 1; 255 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id > threadStack->TopStack) 256 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = (unsigned int)-1;
|
jitprofiling.h | 194 unsigned int stack_id; member in struct:_iJIT_Method_NIDS
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
jitprofiling.c | 105 * in the stack_id field in the iJIT_Method_NIDS structure, as VTune fills it. 191 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = 221 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = 224 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id 226 ((piJIT_Method_NIDS) EventSpecificData)->stack_id =
|
jitprofiling.h | 155 unsigned int stack_id; member in struct:_iJIT_Method_NIDS
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_rtl_report.cc | 369 void ScopedReport::AddSleep(u32 stack_id) { 371 const uptr *stack = StackDepotGet(stack_id, &ssz);
|
tsan_rtl.h | 568 void AddSleep(u32 stack_id);
|