HomeSort by relevance Sort by last modified time
    Searched defs:final (Results 1 - 25 of 42) sorted by null

1 2

  /external/openssl/crypto/evp/
m_dss.c 76 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
87 final,
m_dss1.c 79 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
90 final,
m_ecdsa.c 125 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
136 final,
m_md2.c 79 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
90 final,
m_md4.c 79 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
90 final,
m_md5.c 79 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
90 final,
m_mdc2.c 77 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
88 final,
m_null.c 71 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
82 final,
m_ripemd.c 78 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
89 final,
m_sha.c 78 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
89 final,
m_sha1.c 79 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
90 final,
109 * Even though there're separate SHA224_[Update|Final], we call
  /system/extras/tests/bionic/libc/other/
test_vfprintf_leak.c 38 size_t final; local
45 final = dlmalloc_footprint();
48 if (final <= 4096) {
49 printf( "OK: initial = %ld, final == %ld\n", (long)initial, (long)final );
52 fprintf(stderr, "KO: initial == %ld, final == %ld\n", (long)initial, (long)final );
  /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...]
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...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
MD5.cpp 56 static finalPtr final() function
74 final()(context);
  /hardware/libhardware_legacy/tests/gpstest/
gpstest.cpp 125 size_t final = dlmalloc_footprint(); local
126 fprintf(stderr, "KO: initial == %d, final == %d\n", initial, 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 46 file are maintained in the final uncompressed file, to the extent that the
211 unsigned final; /* last character written for previous code */ local
246 final = prev = (unsigned)last; /* low 8 bits of code */
256 outbuf[0] = (unsigned char)final; /* write first decompressed byte */
320 match[stack++] = (unsigned char)final;
330 final = code;
336 suffix[end] = (unsigned char)final;
356 /* 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);
  /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

Completed in 1036 milliseconds

1 2