/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
closure.h | 50 Weight final = fst->Final(s); local 51 if (final != Weight::Zero()) 52 fst->AddArc(s, Arc(0, 0, final, start));
|
concat.h | 58 fst1->SetFinal(s1, fst2.Final(s2)); 70 Weight final = fst1->Final(s1); local 71 if (final != Weight::Zero()) { 74 fst1->AddArc(s1, Arc(0, 0, final, start2 + numstates1));
|
test-properties.h | 189 if (nfinal > 0) { // final state not last 194 Weight final = fst.Final(s); local 196 if (final != Weight::Zero()) { // final state 197 if (final != Weight::One()) { 202 } else { // non-final state
|
const-fst.h | 58 Weight Final(StateId s) const { return states_[s].final; } 91 Weight final; // Final weight member in struct:fst::ConstFstImpl::State 96 State() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {} 141 states_[s].final = fst.Final(s); 243 virtual Weight Final(StateId s) const { return impl_->Final(s); }
|
shortest-path.h | 137 if (ifst.Final(s) != Weight::Zero()) { 138 Weight w = Times(sd, ifst.Final(s)); 156 ofst->SetFinal(s_p, ifst.Final(f_parent)); 256 // the distance to the final state in 'rfst' 'ofst' is built as the 286 StateId final = ofst->AddState(); local 287 ofst->SetFinal(final, Weight::One()); 288 while (pairs.size() <= final) 290 pairs[final] = Pair(rfst.Start(), Weight::One()); 291 heap.push_back(final); 321 Weight finalw = rfst.Final(p.first).Reverse() [all...] |
cache.h | 50 // final weight even if the state is non-final to mark it as 166 state->final = w; 205 // Is the final weight of state s cached? 228 Weight Final(StateId s) const { 230 return state->final; 312 static const uint32 kCacheFinal = 0x0001; // Final weight has been cached 353 CacheState() : final(Weight::Zero()), flags(0), ref_count(0) {} 361 Weight final; // Final weigh member in struct:fst::CacheState [all...] |
determinize.h | 157 Weight Final(StateId s) { 159 Weight final = ComputeFinal(s); local 160 SetFinal(s, final); 162 return CacheImpl<A>::Final(s); 253 Weight final = Weight::Zero(); local 258 final = Plus(final, Times(element.weight, 259 fst_->Final(element.state_id))); 261 return final; 496 virtual Weight ComputeFinal(StateId s) { return from_fst_->Final(s); [all...] |
vector-fst.h | 51 Weight Final(StateId s) const { return states_[s]->final; } 59 void SetFinal(StateId s, Weight w) { states_[s]->final = w; } 165 VectorState() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {} 167 Weight final; // Final weight member in struct:fst::VectorState 214 Weight ow = Final(s); 334 BaseImpl::SetFinal(s, fst.Final(s)); 362 state->final.Read(strm); 431 state->final.Write(strm) [all...] |
/external/openssl/crypto/evp/ |
m_sha1.c | 77 static int final(EVP_MD_CTX *ctx,unsigned char *md) function 88 final, 108 * Even though there're separate SHA224_[Update|Final], we call
|
/external/chromium/net/http/ |
md4.cc | 150 Uint8 final[128]; local 166 /* build final buffer */ 168 memcpy(final, input + (m << 6), n); 169 final[n] = 0x80; 170 memset(final + n + 1, 0, 120 - (n + 1)); 173 w2b(final + (n >= 56 ? 120 : 56), &inputLen, 4); 175 md4step(state, final); 177 md4step(state, final + 64);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ |
tokens.c | 338 int (*final)(CPPStruct *); member in struct:TokenInputSrc 344 int (*final)(CPPStruct *); 353 final = in->final; 355 if (final && !final(cpp)) return -1; 359 int ReadFromTokenStream(TokenStream *ts, int name, int (*final)(CPPStruct *)) 368 in->final = final;
|
/external/webkit/Tools/QtTestBrowser/ |
webview.cpp | 215 QFinalState* final = new QFinalState(m_machine); local 216 s3->addTransition(s3, SIGNAL(propertiesAssigned()), final);
|
/external/clang/test/SemaCXX/ |
cxx98-compat.cpp | 81 struct OverrideControl final : OverrideControlBase { // expected-warning {{'final' keyword is incompatible with C++98}} struct in inherits:OverrideControlBase 83 virtual void g() final; // expected-warning {{'final' keyword is incompatible with C++98}} member in struct:final
|
destructor.cpp | 185 struct F final: B {}; // expected-warning {{has virtual functions but non-virtual destructor}} struct in namespace:dnvd 194 struct VF final: VB {}; struct in namespace:dnvd
|
/external/llvm/lib/Support/ |
APInt.cpp | 695 #define final(a,b,c) \ macro 733 final(a,b,c); 751 final(a,b,c); 754 #undef final macro [all...] |
/external/srec/tools/grxmlcompile/ |
fst-io.h | 127 Weight final = fst_.Final(s); local 128 if (final != Weight::Zero() || !output) { 130 if (final != Weight::One()) { 131 *ostrm_ << "\t" << final; local
|
/external/zlib/examples/ |
gun.c | 49 file are maintained in the final uncompressed file, to the extent that the 214 unsigned final; /* last character written for previous code */ local 250 final = prev = (unsigned)last; /* low 8 bits of code */ 260 outbuf[0] = (unsigned char)final; /* write first decompressed byte */ 324 match[stack++] = (unsigned char)final; 336 final = code; 342 suffix[end] = (unsigned char)final; 364 /* loop for next code with final and prev as the last match, rem and
|
/external/skia/src/animator/ |
SkAnimateActive.cpp | 198 SkMSec final = fMaxTime; local 233 } while (time <= final);
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
fmt.c | 127 unsigned final:1; /* end of sentence */ member in struct:Word 268 (word_limit - 1)->period = (word_limit - 1)->final = true; 333 word_limit->final = (c == EOF 337 word_limit->space = word_limit->final ? 2 : 1; 492 if ((this - 1)->final) 499 else if (this > words + 1 && (this - 2)->final) 505 else if (this->final)
|
/external/chromium/net/disk_cache/ |
backend_unittest.cc | 851 Time final = Time::Now(); local 864 EXPECT_TRUE(final >= last_modified[count]); 1104 Time final = Time::Now(); local 1156 Time final = Time::Now(); local [all...] |
/external/ipsec-tools/src/racoon/ |
algorithm.h | 135 vchar_t *(*final) __P((caddr_t)); member in struct:hmac_algorithm 146 vchar_t *(*final) __P((caddr_t)); member in struct:hash_algorithm
|
/external/llvm/lib/Target/MBlaze/ |
MBlazeISelLowering.cpp | 472 MachineBasicBlock *final = start; local 521 final = F->CreateMachineBasicBlock(LLVM_BB); 523 F->insert(It, final); 525 start->addSuccessor(final); 526 final->addSuccessor(exit); 527 final->addSuccessor(start); 538 final->moveAfter(start); 539 exit->moveAfter(final); 545 BuildMI(final, dl, TII->get(MBlaze::SWX)) 550 BuildMI(final, dl, TII->get(MBlaze::ADDIC), CHK [all...] |
/external/webkit/Source/WebCore/platform/graphics/ |
ShadowBlur.cpp | 246 int final = size.height(); local 253 for (int j = 0; j < final; ++j, pixels += delta) { 304 final = size.width(); 589 destinations and use drawPattern to render the final shadow. The [all...] |
/external/e2fsprogs/e2fsck/ |
profile.c | 140 unsigned int final:1; /* Indicate don't search next file */ member in struct:profile_node 744 state->current_section->final = 1; 759 state->current_section->final = 1; 821 state->current_section->final = 1; 830 node->final = 1; 936 cb(p->final ? "*" : "", data); 953 cb(p->final ? "*" : "", data); 1396 if (p->final) [all...] |
/external/libxml2/ |
pattern.c | 1856 int ret = 0, err = 0, final = 0, tmp, i, m, match, stepNr, desc; local [all...] |