HomeSort by relevance Sort by last modified time
    Searched defs:final (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
reverse.h 58 Weight final = ifst.Final(is); local
59 if (final != Weight::Zero()) {
60 RevArc oarc(0, 0, final.Reverse(), os);
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...]
  /external/webkit/Tools/DumpRenderTree/win/
MD5.cpp 56 static finalPtr final() function
74 final()(context);
  /external/chromium/chrome/browser/history/
visit_database_unittest.cc 152 VisitRow final; local
153 GetRowForVisit(original.visit_id, &final);
154 EXPECT_TRUE(IsVisitInfoEqual(modification, final));
  /external/clang/test/Parser/
cxx0x-ambig.cpp 5 // final 'context sensitive' mess.
6 namespace final { namespace
11 // These declare variables named final..
12 extern struct S final;
13 extern struct S final [[]];
14 extern struct S final, foo;
15 struct S final = S(); member in namespace:final::N
21 struct S final { // expected-note {{here}} struct in namespace:final::N
25 struct T final : S {}; // expected-error {{base 'S' is marked 'final'}} struct in namespace:final::N
    [all...]
cxx0x-attributes.cpp 20 virtual void f() const volatile && noexcept [[]] final = 0; member in struct:MemberFnOrder
  /external/openfst/src/include/fst/
closure.h 57 Weight final = fst->Final(s); local
58 if (final != Weight::Zero())
59 fst->AddArc(s, Arc(0, 0, final, start));
concat.h 80 fst1->SetFinal(s1, fst2.Final(s2));
93 Weight final = fst1->Final(s1); local
94 if (final != Weight::Zero()) {
97 fst1->AddArc(s1, Arc(0, 0, final, start2 + numstates1));
145 Weight final = fst1.Final(s1); local
146 fst2->ReserveArcs(s2, fst1.NumArcs(s1) + (final != Weight::Zero() ? 1 : 0));
147 if (final != Weight::Zero())
148 fst2->AddArc(s2, Arc(0, 0, final, start2))
    [all...]
test-properties.h 191 if (nfinal > 0) { // final state not last
196 Weight final = fst.Final(s); local
198 if (final != Weight::Zero()) { // final state
199 if (final != Weight::One()) {
204 } else { // non-final state
const-fst.h 78 Weight Final(StateId s) const { return states_[s].final; }
113 Weight final; // Final weight member in struct:fst::ConstFstImpl::State
118 State() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {}
182 states_[s].final = fst.Final(s);
371 state.final = fst.Final(siter.Value());
  /external/openssh/
md5crypt.c 55 unsigned char final[16]; local
96 MD5_Final(final, &ctx1);
99 MD5_Update(&ctx, final, pl > 16 ? 16 : pl);
102 memset(final, '\0', sizeof final);
107 MD5_Update(&ctx, final + j, 1);
114 MD5_Final(final, &ctx);
126 MD5_Update(&ctx1, final, 16);
135 MD5_Update(&ctx1, final, 16);
139 MD5_Final(final, &ctx1)
    [all...]
  /external/openssl/crypto/evp/
m_sha1.c 80 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
91 final,
111 * Even though there're separate SHA224_[Update|Final], we call
  /external/valgrind/main/none/tests/s390x/
cksm.c 65 uint32_t final; local
82 final = 0; // suppress gcc warning
87 final = buff[n] & 0xFF000000;
91 final = buff[n] & 0xFFFF0000;
95 final = buff[n] & 0xFFFFFF00;
101 v64 += final;
104 sum = sum + final + 1;
106 sum = sum + final;
  /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/clang/test/FixIt/
fixit-cxx0x.cpp 36 f2 final, typedef in struct:SemiCommaTypo::MemberDeclarator
  /external/openfst/src/include/fst/script/
print-impl.h 126 Weight final = fst_.Final(s); local
127 if (final != Weight::Zero() || !output) {
129 if (show_weight_one_ || final != Weight::One()) {
130 *ostrm_ << FLAGS_fst_field_separator[0] << final; local
draw-impl.h 169 Weight final = fst_.Final(s); local
170 if (final != Weight::Zero()) {
171 if (show_weight_one_ || (final != Weight::One())) {
173 Print(final);
  /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/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

Completed in 886 milliseconds

12 3 4