HomeSort by relevance Sort by last modified time
    Searched refs:potential (Results 1 - 25 of 39) sorted by null

1 2

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
reweight.h 29 // Reweight FST according to the potentials defined by the POTENTIAL
34 // An arc of weight w, with an origin state of potential p and
35 // destination state of potential q, is reweighted by p\wq when
39 void Reweight(MutableFst<Arc> *fst, vector<typename Arc::Weight> potential,
45 while ( (int64)potential.size() < (int64)fst->NumStates())
46 potential.push_back(Weight::Zero());
66 if ((potential[state] == Weight::Zero()) ||
67 (potential[arc.nextstate] == Weight::Zero()))
70 && (potential[state] != Weight::Zero()))
71 arc.weight = Divide(Times(arc.weight, potential[arc.nextstate])
    [all...]
  /external/openfst/src/include/fst/script/
text-io.h 43 vector<WeightClass>* potential);
46 const vector<WeightClass>& potential);
reweight.h 47 void Reweight(MutableFstClass *fst, const vector<WeightClass> &potential,
  /external/openfst/src/script/
text-io.cc 33 vector<WeightClass>* potential) {
44 potential->clear();
60 while (potential->size() <= s)
61 potential->push_back(WeightClass::Zero());
62 (*potential)[s] = weight;
69 const vector<WeightClass>& potential) {
81 for (ssize_t s = 0; s < potential.size(); ++s)
82 *strm << s << "\t" << potential[s] << "\n"; local
reweight.cc 24 void Reweight(MutableFstClass *fst, const vector<WeightClass> &potential,
26 ReweightArgs args(fst, potential, reweight_type);
  /external/openfst/src/bin/
fstreweight.cc 35 usage += " in.fst potential.txt [out.fst]\n";
51 vector<s::WeightClass> potential;
52 if (!s::ReadPotentials(fst->WeightType(), potentials_fname, &potential))
59 s::Reweight(fst, potential, reweight_type);
  /external/dexmaker/src/main/java/com/google/dexmaker/
AppDataDirGuesser.java 74 for (String potential : splitPathList(input)) {
75 if (!potential.startsWith("/data/app/")) {
79 int end = potential.lastIndexOf(".apk");
80 if (end != potential.length() - 4) {
83 int dash = potential.indexOf("-");
87 String packageName = potential.substring(start, end);
  /external/littlemock/src/com/google/testing/littlemock/
AppDataDirGuesser.java 89 for (String potential : splitPathList(input)) {
90 if (!potential.startsWith("/data/app/")) {
94 int end = potential.lastIndexOf(".apk");
95 if (end != potential.length() - 4) {
98 int dash = potential.indexOf("-");
102 String packageName = potential.substring(start, end);
  /external/openfst/src/include/fst/
reweight.h 34 // Reweight FST according to the potentials defined by the POTENTIAL
39 // An arc of weight w, with an origin state of potential p and
40 // destination state of potential q, is reweighted by p\wq when
45 const vector<typename Arc::Weight> &potential,
71 if (state == potential.size())
73 typename Arc::Weight weight = potential[state];
79 if (arc.nextstate >= potential.size())
81 typename Arc::Weight nextweight = potential[arc.nextstate];
106 typename Arc::Weight startweight = fst->Start() < potential.size() ?
107 potential[fst->Start()] : Weight::Zero()
    [all...]
  /ndk/sources/cxx-stl/gabi++/
Android.mk 25 # any conflict with any potential system library named libgabi++
  /external/compiler-rt/
README.android 34 yet). Look at frameworks/compile/libbcc/runtime for potential starting points.
  /external/chromium_org/v8/test/mjsunit/harmony/
module-recompile.js 30 // Test that potential recompilation of the global scope does not screw up.
  /external/libffi/src/alpha/
osf.S 62 # Load up all of the (potential) argument registers.
146 # Store all of the potential argument registers in va_list format.
  /external/libpng/
CHANGES 567 Changed makefile.solaris to issue a warning about potential problems when
    [all...]
  /external/libffi/src/x86/
win32.S 61 # potential performance hits.
174 # potential performance hits.
  /external/chromium_org/v8/test/webkit/
math-transforms.js 26 "This test checks for potential edge case bugs with certain math transforms involving multiplication by 1 and unary plus."
  /external/libffi/src/sparc/
v8.S 130 ! Store all of the potential argument registers in va_list format.
v9.S 150 ! Store all of the potential argument registers in va_list format.
  /external/openfst/src/test/
algo_test.h 677 vector<Weight> potential;
680 while (potential.size() < RI.NumStates())
681 potential.push_back((*weight_generator_)());
683 Reweight(&RI, potential, REWEIGHT_TO_INITIAL);
686 Reweight(&RF, potential, REWEIGHT_TO_FINAL);
    [all...]
  /external/chromium_org/third_party/skia/src/pipe/
SkGPipeWrite.cpp 135 SkFlatData* potential = (SkFlatData*)fPointers[i]; local
139 if (potential->index() == fFlatsThatMustBeKept[j]) {
145 return potential;
    [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp 135 SkFlatData* potential = (SkFlatData*)fPointers[i]; local
139 if (potential->index() == fFlatsThatMustBeKept[j]) {
145 return potential;
    [all...]
  /external/strace/
strace.spec 97 + fixed potential stack buffer overflow in select decoder (#556678);
106 + fixed several bugs in strings decoder, including potential heap
195 - Fix potential buffer overruns (#151570, #159196).
220 - fix potential crash in getxattr printing
  /external/doclava/src/com/google/doclava/
InfoBuilder.java 1739 String potential = resolveQualifiedNameInInheritedClass(name, cls, originalPackage); local
    [all...]
  /external/clang/tools/scan-build/
scan-build 1094 if it found potential bugs and 0 otherwise.
    [all...]
  /external/grub/docs/
texinfo.tex     [all...]

Completed in 751 milliseconds

1 2