Home
last modified time | relevance | path

Searched refs:potential (Results 1 – 25 of 185) sorted by relevance

12345678

/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dreweight.h39 void Reweight(MutableFst<Arc> *fst, vector<typename Arc::Weight> potential, in Reweight() argument
45 while ( (int64)potential.size() < (int64)fst->NumStates()) in Reweight()
46 potential.push_back(Weight::Zero()); in Reweight()
66 if ((potential[state] == Weight::Zero()) || in Reweight()
67 (potential[arc.nextstate] == Weight::Zero())) in Reweight()
70 && (potential[state] != Weight::Zero())) in Reweight()
71 arc.weight = Divide(Times(arc.weight, potential[arc.nextstate]), in Reweight()
72 potential[state], DIVIDE_LEFT); in Reweight()
74 && (potential[arc.nextstate] != Weight::Zero())) in Reweight()
75 arc.weight = Divide(Times(potential[state], arc.weight), in Reweight()
[all …]
/external/openfst/src/script/
Dtext-io.cc33 vector<WeightClass>* potential) { in ReadPotentials() argument
44 potential->clear(); in ReadPotentials()
60 while (potential->size() <= s) in ReadPotentials()
61 potential->push_back(WeightClass::Zero()); in ReadPotentials()
62 (*potential)[s] = weight; in ReadPotentials()
69 const vector<WeightClass>& potential) { in WritePotentials() argument
81 for (ssize_t s = 0; s < potential.size(); ++s) in WritePotentials()
82 *strm << s << "\t" << potential[s] << "\n"; in WritePotentials()
Dreweight.cc24 void Reweight(MutableFstClass *fst, const vector<WeightClass> &potential, in Reweight() argument
26 ReweightArgs args(fst, potential, reweight_type); in Reweight()
/external/dexmaker/src/main/java/com/google/dexmaker/
DAppDataDirGuesser.java74 for (String potential : splitPathList(input)) { in guessPath()
75 if (!potential.startsWith("/data/app/")) { in guessPath()
79 int end = potential.lastIndexOf(".apk"); in guessPath()
80 if (end != potential.length() - 4) { in guessPath()
83 int dash = potential.indexOf("-"); in guessPath()
87 String packageName = potential.substring(start, end); in guessPath()
/external/littlemock/src/com/google/testing/littlemock/
DAppDataDirGuesser.java89 for (String potential : splitPathList(input)) { in guessPath()
90 if (!potential.startsWith("/data/app/")) { in guessPath()
94 int end = potential.lastIndexOf(".apk"); in guessPath()
95 if (end != potential.length() - 4) { in guessPath()
98 int dash = potential.indexOf("-"); in guessPath()
102 String packageName = potential.substring(start, end); in guessPath()
/external/openfst/src/include/fst/
Dreweight.h45 const vector<typename Arc::Weight> &potential, in Reweight() argument
71 if (state == potential.size()) in Reweight()
73 typename Arc::Weight weight = potential[state]; in Reweight()
79 if (arc.nextstate >= potential.size()) in Reweight()
81 typename Arc::Weight nextweight = potential[arc.nextstate]; in Reweight()
106 typename Arc::Weight startweight = fst->Start() < potential.size() ? in Reweight()
107 potential[fst->Start()] : Weight::Zero(); in Reweight()
/external/openfst/src/bin/
Dfstreweight.cc51 vector<s::WeightClass> potential; in main() local
52 if (!s::ReadPotentials(fst->WeightType(), potentials_fname, &potential)) in main()
59 s::Reweight(fst, potential, reweight_type); in main()
/external/openfst/src/include/fst/script/
Dtext-io.h43 vector<WeightClass>* potential);
46 const vector<WeightClass>& potential);
Dreweight.h47 void Reweight(MutableFstClass *fst, const vector<WeightClass> &potential,
/external/libusb/
DNEWS20 * Bug fixes including transfer locking to fix some potential threading races
/external/libffi/src/alpha/
Dosf.S62 # Load up all of the (potential) argument registers.
146 # Store all of the potential argument registers in va_list format.
/external/chromium_org/native_client_sdk/src/doc/community/security-contest/
Dcontest-terms.rst115 use Native Client to produce or have the potential to produce
130 to try to detect the potential for an executable to produce
132 executables that are detected to have the potential to produce
245 #. Any potential prize recipient may be required to show proof of
514 the top five Summaries will be selected as potential
650 (a) On or about May 15th 2009 and upon selection of potential
680 Participant's entry and select as an alternative potential
683 of potential winners to receive notification that they are
684 potential winners. Except where prohibited by law, each
685 potential winner may be required to sign and return a
[all …]
Dcontest-faq.rst171 between members of a potential winning team. Instead Google will
230 If everyone in your potential teammate's original team (including
233 look for other potential partners. Otherwise, your potential teammate
374 top five Summaries will be selected as potential winners. For more
/external/chromium_org/chrome/browser/ui/cocoa/
Dstyled_text_field_cell.mm49 // directly to avoid potential infinite loops.
55 // avoid potential infinite loops.
/external/bison/m4/
Dmultiarch.m433 dnl Check for potential -arch flags. It is not universal unless
/external/chromium/chrome/browser/ui/cocoa/
Dstyled_text_field_cell.mm111 // directly to avoid potential infinite loops.
117 // avoid potential infinite loops.
/external/chromium_org/chrome/browser/resources/net_internals/
Dmain.css103 * Styling for text indicating a potential problem or error state.
/external/compiler-rt/
DREADME.android34 yet). Look at frameworks/compile/libbcc/runtime for potential starting points.
/external/libffi/src/x86/
Dwin32.S61 # potential performance hits.
174 # potential performance hits.
/external/chromium_org/third_party/sqlite/
Dmemcmp.patch1 http://crbug.com/178677 refers to potential buffer overruns in ASAN
/external/ipsec-tools/src/racoon/doc/
DREADME.plainrsa13 it would be for potential attacker to conduct brute-force discovery of
60 it is not necessary, and (b) you would now have two potential places
/external/chromium/chrome/browser/resources/net_internals/
Dmain.css219 * Styling for text indicating a potential problem or error state.
/external/openfst/src/test/
Dalgo_test.h677 vector<Weight> potential; in TestOptimize() local
680 while (potential.size() < RI.NumStates()) in TestOptimize()
681 potential.push_back((*weight_generator_)()); in TestOptimize()
683 Reweight(&RI, potential, REWEIGHT_TO_INITIAL); in TestOptimize()
686 Reweight(&RF, potential, REWEIGHT_TO_FINAL); in TestOptimize()
/external/antlr/antlr-3.4/runtime/Python/
DTODO71 for each state. checkout potential performance gain.
/external/qemu/slirp-android/
DCOPYRIGHT9 potential donation to your favorite charity. In fact, I encourage

12345678