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

1 2 34 5 6 7 8

  /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 270 const SparseTupleWeight<W, K>& w2,
273 SparseTupleWeightIterator<W, K> w2_it(w2);
275 const W& v2_def = w2.DefaultValue();
298 const SparseTupleWeight<W, K> &w2) {
300 const W& v2_def = w2.DefaultValue();
304 SparseTupleWeightIterator<W, K> w2_it(w2);
327 const SparseTupleWeight<W, K> &w2) {
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 {
74 StringWeightIterator<L, S> iter2(w2);
79 } else if (w1.Size() == 0 || w2.Size() == 0) {
83 } else if (w2 == 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...]
  /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 } }
  /external/stlport/test/eh/
deccxx.mak 43 # CXXFLAGS = +w2 -xildoff -D_STLP_USE_NEWALLOC -DEH_NO_SGI_STL -DEH_NEW_HEADERS -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC
sunpro-64.mak 36 # CXXFLAGS = +w2 -xildoff -D_STLP_USE_NEWALLOC -DEH_NO_SGI_STL -DEH_NEW_HEADERS -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC
sunpro.mak 38 # CXXFLAGS = +w2 -xildoff -D_STLP_USE_NEWALLOC -DEH_NO_SGI_STL -DEH_NEW_HEADERS -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC
  /external/chromium_org/content/browser/indexed_db/
list_set_unittest.cc 151 scoped_ptr<Wrapped<int> > w2(new Wrapped<int>(2));
162 set.insert(w2.get());
179 set.erase(w2.get());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ftplib.py 923 w2 = words[i + 1]
925 w2 = None
928 elif w1 == 'machine' and w2:
929 host = w2.lower()
931 elif w1 == 'login' and w2:
932 user = w2
934 elif w1 == 'password' and w2:
935 passwd = w2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ftplib.py 923 w2 = words[i + 1]
925 w2 = None
928 elif w1 == 'machine' and w2:
929 host = w2.lower()
931 elif w1 == 'login' and w2:
932 user = w2
934 elif w1 == 'password' and w2:
935 passwd = w2
    [all...]
  /external/chromium_org/ash/wm/panels/
panel_window_resizer_unittest.cc 155 scoped_ptr<aura::Window> w2(CreatePanelWindow(bounds));
159 window_order_original.push_back(w2.get());
160 window_order_swapped.push_back(w2.get());
165 DragStart(w2.get());
174 DragStart(w2.get());
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
factor-weight.h 92 StringWeight<L, S> w2; local
94 w2.PushBack(iter.Value());
95 return make_pair(w1, w2);
120 GallicWeight<L, W, S> w2(iter.Value().second, W::One());
121 return make_pair(w1, w2);
  /external/libvorbis/lib/
mdct.c 499 DATA_TYPE *w2=w+n2; local
518 w2[i]= MULT_NORM(r1*T[1] + r0*T[0]);
519 w2[i+1]= MULT_NORM(r1*T[0] - r0*T[1]);
530 w2[i]= MULT_NORM(r1*T[1] + r0*T[0]);
531 w2[i+1]= MULT_NORM(r1*T[0] - r0*T[1]);
542 w2[i]= MULT_NORM(r1*T[1] + r0*T[0]);
543 w2[i+1]= MULT_NORM(r1*T[0] - r0*T[1]);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECCurve.java 541 ECFieldElement w2 = w.square(); local
542 z = z.square().add(w2.multiply(t));
543 w = w2.add(beta);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
BarGraph.java 113 int w2= w / 2 - gc.stringExtent("-999.9").x - TGAP; // reserve space //$NON-NLS-1$ local
159 int x= (int) ((xx / max) * w2);
206 int barLength= (int) (delta / max * w2);
  /external/valgrind/main/VEX/switchback/
linker.c 671 Elf_Word w1, w2;
741 w2 = (Elf_Word)((value - P) >> 2);
742 ASSERT((w2 & 0xC0000000) == 0);
743 w1 |= w2;
748 w2 = (Elf_Word)(value >> 10);
749 ASSERT((w2 & 0xFFC00000) == 0);
750 w1 |= w2;
755 w2 = (Elf_Word)(value & 0x3FF);
756 ASSERT((w2 & ~0x3FF) == 0);
757 w1 |= w2;
    [all...]
  /external/valgrind/main/VEX/unused/
linker.c 574 Elf_Word w1, w2; local
632 w2 = (Elf_Word)((value - P) >> 2);
633 ASSERT((w2 & 0xC0000000) == 0);
634 w1 |= w2;
639 w2 = (Elf_Word)(value >> 10);
640 ASSERT((w2 & 0xFFC00000) == 0);
641 w1 |= w2;
646 w2 = (Elf_Word)(value & 0x3FF);
647 ASSERT((w2 & ~0x3FF) == 0);
648 w1 |= w2;
    [all...]
  /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
366 } else if (w2 != 0) {
374 float sum = w0 + w1 + w2 + w3;
381 weightsFloatData.put(w2 * sumToB);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsn.java 326 int w2 = (width == 0) ? insnPerSe.length() : (width - w1); local
328 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsn.java 353 int w2 = (width == 0) ? insnPerSe.length() : (width - w1); local
355 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /external/chromium_org/ui/aura/
root_window_unittest.cc 288 Window* w2 = test::CreateTestWindowWithBounds(gfx::Rect(30, 30, 20, 20), local
290 w2->set_id(2);
300 // Since we're locked, the attempt to focus w2 will be ignored.
301 w2->Focus();
303 EXPECT_FALSE(IsFocusedWindow(w2));
873 scoped_ptr<Window> w2(CreateNormalWindow(1, root_window(), &d2));
874 w2->SetBounds(gfx::Rect(100, 0, 100, 100));
876 // Tap on w2 which triggers nested gestures for w1.
877 test::EventGenerator generator(root_window(), w2.get());
878 generator.GestureTapAt(w2->bounds().CenterPoint())
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsn.java 354 int w2 = (width == 0) ? insnPerSe.length() : (width - w1); local
356 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.c 719 short x2,y2,w2,h2; local
740 if (!wind_calc(WC_BORDER, GEM_win_type, 0,0,width,height, &x2,&y2,&w2,&h2)) {
747 x2 = (GEM_desk_w-w2)>>1;
765 GEM_handle=wind_create(GEM_win_type, x2,y2,w2,h2);
781 wind_open(GEM_handle,x2,y2,w2,h2);
784 wind_get (GEM_handle, WF_WORKXYWH, &x2,&y2,&w2,&h2);
785 if (wind_calc(WC_BORDER, GEM_win_type, x2,y2,width,height, &x2,&y2,&w2,&h2)) {
786 wind_set (GEM_handle, WF_CURRXYWH, x2,y2,w2,h2);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 387 Worker w2 = new Worker(2, 3); local
396 w2.start();

Completed in 882 milliseconds

1 2 34 5 6 7 8