HomeSort by relevance Sort by last modified time
    Searched defs:M2 (Results 51 - 61 of 61) sorted by null

1 23

  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 486 ProgramState::GenericDataMap M2 = GDMFactory.add(M1, Key, Data);
488 if (M1 == M2)
492 NewSt.GDM = M2;
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 83 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
88 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
  /libcore/ojluni/src/main/java/java/lang/
FloatingDecimal.java 634 int M2, M5; // powers of 2 and powers of 5, respectively, in M
646 M2 = B2 - nSignificantBits;
661 M2 -= common2factor;
667 * hack M2. Hope this works.
670 M2 -= 1;
672 if ( M2 < 0 ){
676 B2 -= M2;
677 S2 -= M2;
678 M2 = 0;
716 int m = small5pow[M5] << M2;
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java 701 int M2, M5; // powers of 2 and powers of 5, respectively, in M
713 M2 = B2 - nSignificantBits;
728 M2 -= common2factor;
734 * hack M2. Hope this works.
737 M2 -= 1;
739 if ( M2 < 0 ){
743 B2 -= M2;
744 S2 -= M2;
745 M2 = 0;
783 int m = small5pow[M5] << M2;
    [all...]
  /external/opencv3/modules/calib3d/src/
epnp.cpp 113 double * M2 = M1 + 12;
120 M2[3 * i ] = 0.0;
121 M2[3 * i + 1] = as[i] * fv;
122 M2[3 * i + 2] = as[i] * (vc - v);
upnp.cpp 292 double * M2 = M1 + 12;
299 M2[3 * i ] = 0.0;
300 M2[3 * i + 1] = as[i] * fv;
301 M2[3 * i + 2] = as[i] * (vc - v);
438 Mat upnp::compute_constraint_distance_3param_6eq_6unk_f_unk(const Mat& M1, const Mat& M2)
446 m[2][i] = *M2.ptr<double>(i-1);
  /external/opencv3/modules/calib3d/test/
test_cameracalibration.cpp     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_descr.py 499 class M2(object):
516 __metaclass__ = M2
773 class M2(D, object):
775 return "M2 a"
777 return "M2 b"
779 self.assertEqual(M2.__mro__, (M2, D, C, object))
780 m = M2()
783 self.assertEqual(m.m2method(), "M2 a")
784 self.assertEqual(m.all_method(), "M2 b"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_descr.py 499 class M2(object):
516 __metaclass__ = M2
773 class M2(D, object):
775 return "M2 a"
777 return "M2 b"
779 self.assertEqual(M2.__mro__, (M2, D, C, object))
780 m = M2()
783 self.assertEqual(m.m2method(), "M2 a")
784 self.assertEqual(m.all_method(), "M2 b"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_descr.py 499 class M2(object):
516 __metaclass__ = M2
773 class M2(D, object):
775 return "M2 a"
777 return "M2 b"
779 self.assertEqual(M2.__mro__, (M2, D, C, object))
780 m = M2()
783 self.assertEqual(m.m2method(), "M2 a")
784 self.assertEqual(m.all_method(), "M2 b"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_descr.py 499 class M2(object):
516 __metaclass__ = M2
773 class M2(D, object):
775 return "M2 a"
777 return "M2 b"
779 self.assertEqual(M2.__mro__, (M2, D, C, object))
780 m = M2()
783 self.assertEqual(m.m2method(), "M2 a")
784 self.assertEqual(m.all_method(), "M2 b"
    [all...]

Completed in 1090 milliseconds

1 23