/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | reweight.h | 39 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/ |
D | text-io.cc | 33 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()
|
D | reweight.cc | 24 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/ |
D | AppDataDirGuesser.java | 74 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/ |
D | AppDataDirGuesser.java | 89 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/ |
D | reweight.h | 45 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/ |
D | fstreweight.cc | 51 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/ |
D | text-io.h | 43 vector<WeightClass>* potential); 46 const vector<WeightClass>& potential);
|
D | reweight.h | 47 void Reweight(MutableFstClass *fst, const vector<WeightClass> &potential,
|
/external/libusb/ |
D | NEWS | 20 * Bug fixes including transfer locking to fix some potential threading races
|
/external/libffi/src/alpha/ |
D | osf.S | 62 # 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/ |
D | contest-terms.rst | 115 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 …]
|
D | contest-faq.rst | 171 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/ |
D | styled_text_field_cell.mm | 49 // directly to avoid potential infinite loops. 55 // avoid potential infinite loops.
|
/external/bison/m4/ |
D | multiarch.m4 | 33 dnl Check for potential -arch flags. It is not universal unless
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | styled_text_field_cell.mm | 111 // directly to avoid potential infinite loops. 117 // avoid potential infinite loops.
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
D | main.css | 103 * Styling for text indicating a potential problem or error state.
|
/external/compiler-rt/ |
D | README.android | 34 yet). Look at frameworks/compile/libbcc/runtime for potential starting points.
|
/external/libffi/src/x86/ |
D | win32.S | 61 # potential performance hits. 174 # potential performance hits.
|
/external/chromium_org/third_party/sqlite/ |
D | memcmp.patch | 1 http://crbug.com/178677 refers to potential buffer overruns in ASAN
|
/external/ipsec-tools/src/racoon/doc/ |
D | README.plainrsa | 13 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/ |
D | main.css | 219 * Styling for text indicating a potential problem or error state.
|
/external/openfst/src/test/ |
D | algo_test.h | 677 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/ |
D | TODO | 71 for each state. checkout potential performance gain.
|
/external/qemu/slirp-android/ |
D | COPYRIGHT | 9 potential donation to your favorite charity. In fact, I encourage
|