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...]
factor-weight.h 91 StringWeight<L, S> w1(iter.Value());
95 return make_pair(w1, w2);
119 GallicWeight<L, W, S> w1(iter.Value().first, weight_.Value2());
121 return make_pair(w1, w2);
  /external/libvorbis/lib/
mdct.c 352 DATA_TYPE *w1 = x = w0+(n>>1); local
364 w1 -= 4;
370 w1[2] = r0 - r2;
372 w1[3] = r3 - r1;
386 w1[0] = r0 - r2;
388 w1[1] = r3 - r1;
394 }while(w0<w1);
  /external/llvm/test/MC/AArch64/
basic-a64-instructions.s 39 add w19, w17, w1, uxtx // Goodness knows what this means
40 add w2, w5, w1, sxtb
47 // CHECK: add w19, w17, w1, uxtx // encoding: [0x33,0x62,0x21,0x0b]
48 // CHECK: add w2, w5, w1, sxtb // encoding: [0xa2,0x80,0x21,0x0b]
84 sub w19, w17, w1, uxtx // Goodness knows what this means
85 sub w2, w5, w1, sxtb
92 // CHECK: sub w19, w17, w1, uxtx // encoding: [0x33,0x62,0x21,0x4b]
93 // CHECK: sub w2, w5, w1, sxtb // encoding: [0xa2,0x80,0x21,0x4b]
119 adds w19, w17, w1, uxtx // Goodness knows what this means
120 adds w2, w5, w1, sxtb #
    [all...]
  /external/elfutils/src/
elfcmp.c 662 const Elf32_Word *w1 = p1; local
664 assert (sizeof (int) >= sizeof (*w1));
665 return (int) *w1 - (int) *w2;
671 const Elf64_Xword *w1 = p1; local
673 return *w1 < *w2 ? -1 : *w1 > *w2 ? 1 : 0;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ArmatureModifier.java 362 float w0 = weightsFloatData.get(), w1 = weightsFloatData.get(), w2 = weightsFloatData.get(), w3 = weightsFloatData.get(); local
368 } else if (w1 != 0) {
374 float sum = w0 + w1 + w2 + w3;
380 weightsFloatData.put(w1 * sumToB);
  /external/valgrind/main/coregrind/m_debuginfo/
d3basics.c     [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 386 Worker w1 = new Worker(0, 1); local
395 w1.start();
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_noise.c 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
561 w1 = w0 - l1 + G4;
592 t1 = 0.6f - x1 * x1 - y1 * y1 - z1 * z1 - w1 * w1;
600 x1, y1, z1, w1);
  /external/mesa3d/src/mesa/program/
prog_noise.c 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
561 w1 = w0 - l1 + G4;
592 t1 = 0.6f - x1 * x1 - y1 * y1 - z1 * z1 - w1 * w1;
600 x1, y1, z1, w1);
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 149 UWord u1, v1, w1,w2,t; local
159 w1 = t & halfMask;
161 w1 = u0 * v1 + w1;
162 rHi = u1 * v1 + w2 + (w1 >> halfShift);
    [all...]

Completed in 1534 milliseconds

1 2 34 5 6 7 8