HomeSort by relevance Sort by last modified time
    Searched refs:w1 (Results 76 - 100 of 191) sorted by null

1 2 34 5 6 7 8

  /external/opencv/cvaux/src/
cvmorphcontours.cpp 384 double w1,w2; local
388 w1 = W[i-1][j].w_east /*+ _cvBendingWork( &edges1[i-2],
403 if(w1<w2)
405 W[i][j].w_east = w1 + _cvStretchingWork( &edges1[i-1], &null_edge );
422 double w1,w2,w3; local
429 w1 = W[i-1][j-1].w_east + _cvBendingWork(&edges1[i-2],
450 if( w1<w2 )
452 if(w1<w3)
454 W[i][j].w_southeast = w1 + _cvStretchingWork( &edges1[i-1], &edges2[j-1] );
482 double w1,w2 local
    [all...]
  /external/chromium/chrome/browser/history/
query_parser_unittest.cc 142 const std::string w1; member in struct:TestData2
157 EXPECT_EQ(data[i].w1, UTF16ToUTF8(results[0]));
  /external/chromium_org/chrome/browser/history/
query_parser_unittest.cc 144 const std::string w1; member in struct:TestData2
159 EXPECT_EQ(data[i].w1, UTF16ToUTF8(results[0]));
  /external/openfst/src/include/fst/
lexicographic-weight.h 39 template<class W1, class W2>
40 class LexicographicWeight : public PairWeight<W1, W2> {
42 using PairWeight<W1, W2>::Value1;
43 using PairWeight<W1, W2>::Value2;
44 using PairWeight<W1, W2>::SetValue1;
45 using PairWeight<W1, W2>::SetValue2;
46 using PairWeight<W1, W2>::Zero;
47 using PairWeight<W1, W2>::One;
48 using PairWeight<W1, W2>::NoWeight;
49 using PairWeight<W1, W2>::Quantize
    [all...]
product-weight.h 33 // Product semiring: W1 * W2
34 template<class W1, class W2>
35 class ProductWeight : public PairWeight<W1, W2> {
37 using PairWeight<W1, W2>::Zero;
38 using PairWeight<W1, W2>::One;
39 using PairWeight<W1, W2>::NoWeight;
40 using PairWeight<W1, W2>::Quantize;
41 using PairWeight<W1, W2>::Reverse;
43 typedef ProductWeight<typename W1::ReverseWeight, typename W2::ReverseWeight>
48 ProductWeight(const PairWeight<W1, W2>& w) : PairWeight<W1, W2>(w) {
    [all...]
sparse-tuple-weight.h 269 const SparseTupleWeight<W, K>& w1,
272 SparseTupleWeightIterator<W, K> w1_it(w1);
274 const W& v1_def = w1.DefaultValue();
297 inline bool operator==(const SparseTupleWeight<W, K> &w1,
299 const W& v1_def = w1.DefaultValue();
303 SparseTupleWeightIterator<W, K> w1_it(w1);
326 inline bool operator!=(const SparseTupleWeight<W, K> &w1,
328 return !(w1 == w2);
determinize.h 59 W operator()(const W &w1, const W &w2) const { return Plus(w1, w2); }
72 Weight operator()(const Weight &w1, const Weight &w2) const {
73 StringWeightIterator<L, S> iter1(w1);
79 } else if (w1.Size() == 0 || w2.Size() == 0) {
81 } else if (w1 == Weight::Zero()) {
102 Weight operator()(const Weight &w1, const Weight &w2) const {
103 return Weight(label_common_divisor_(w1.Value1(), w2.Value1()),
104 weight_common_divisor_(w1.Value2(), w2.Value2()));
    [all...]
arc-map.h 822 SW w1 = arc.weight.Value1();
824 StringWeightIterator<Label, S> iter1(w1);
826 Label l = w1.Size() == 1 ? iter1.Value() : 0;
829 arc.ilabel != arc.olabel || w1.Size() > 1) {
894 SW w1 = arc.weight.Value1();
898 if (w1.Size() == 0) {
901 typename Map::iterator miter = map_.find(w1);
906 map_.insert(pair<const SW, Label>(w1, l));
907 StringWeightIterator<Label, S> iter1(w1);
911 i < w1.Size()
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_mdls.h 59 #define DEFINE_DLSID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) const DLSID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsn.java 325 int w1 = addr.length(); local
326 int w2 = (width == 0) ? insnPerSe.length() : (width - w1);
328 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsn.java 352 int w1 = addr.length(); local
353 int w2 = (width == 0) ? insnPerSe.length() : (width - w1);
355 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /external/chromium_org/content/browser/indexed_db/
list_set_unittest.cc 150 scoped_ptr<Wrapped<int> > w1(new Wrapped<int>(1));
161 set.insert(w1.get());
178 set.erase(w1.get());
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsn.java 353 int w1 = addr.length(); local
354 int w2 = (width == 0) ? insnPerSe.length() : (width - w1);
356 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MatrixPaletteRenderer.java 152 float w0, float w1,
161 if (w0 + w1 != 1.0f) {
174 mVertexBuffer.put(w1);
400 float w1 = 1.0f - w0; local
401 grid.set(i, j, x, y, z, u, v, w0, w1, 0, 1);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
map.h 731 SW w1 = arc.weight.Value1();
733 StringWeightIterator<Label, S> iter1(w1);
735 Label l = w1.Size() == 1 ? iter1.Value() : 0;
740 CHECK(w1.Size() <= 1);
785 SW w1 = arc.weight.Value1();
789 if (w1.Size() == 0) {
792 typename Map::iterator miter = map_.find(w1);
797 map_.insert(pair<const SW, Label>(w1, l));
798 StringWeightIterator<Label, S> iter1(w1);
802 i < w1.Size()
    [all...]