Searched refs:m1 (Results 276 - 300 of 378) sorted by relevance

<<111213141516

/external/openssl/crypto/rsa/
H A Drsa_eay.c739 BIGNUM *r1,*m1,*vrfy; local
746 m1 = BN_CTX_get(ctx);
805 if (!rsa->meth->bn_mod_exp(m1,r1,dmq1,rsa->q,ctx,
831 if (!BN_sub(r0,r0,m1)) goto err;
859 if (!BN_add(r0,r1,m1)) goto err;
/external/skia/experimental/Intersection/
H A DQuadraticImplicit.cpp262 double m1 = flatMeasure(q1); local
265 double min = SkTMin(m1, m2);
271 const Quadratic& rounder = m2 < m1 ? q1 : q2;
272 const Quadratic& flatter = m2 < m1 ? q2 : q1;
288 if (m2 < m1) {
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadIntersection.cpp257 double m1 = flat_measure(*q1); local
262 if (m2 < m1) {
285 if (m2 < m1) {
/external/opencv/cvaux/src/
H A Dcv3dtracker.cpp62 static void MultMatrix(float rm[4][4], const float m1[4][4], const float m2[4][4]);
565 // Multiply affine transformation m1 by the affine transformation m2 and
567 static void MultMatrix(float rm[4][4], const float m1[4][4], const float m2[4][4]) argument
574 rm[i][j] += m1[i][k]*m2[k][j];
/external/qemu/target-arm/
H A Dneon_helper.c1852 uint64_t m1 = ELEM(zm0, 1, 8) | (ELEM(zm0, 3, 8) << 8) local
1857 env->vfp.regs[rm + 1] = make_float64(m1);
1874 uint64_t m1 = ELEM(zm0, 1, 16) | (ELEM(zm0, 3, 16) << 16) local
1877 env->vfp.regs[rm + 1] = make_float64(m1);
1891 uint64_t m1 = ELEM(zm0, 1, 32) | (ELEM(zm1, 1, 32) << 32); local
1893 env->vfp.regs[rm + 1] = make_float64(m1);
1944 uint64_t m1 = ELEM(zd1, 4, 8) | (ELEM(zm1, 4, 8) << 8) local
1949 env->vfp.regs[rm + 1] = make_float64(m1);
1966 uint64_t m1 = ELEM(zd1, 2, 16) | (ELEM(zm1, 2, 16) << 16) local
1969 env->vfp.regs[rm + 1] = make_float64(m1);
1983 uint64_t m1 = ELEM(zd1, 1, 32) | (ELEM(zm1, 1, 32) << 32); local
[all...]
/external/skia/src/pathops/
H A DSkDQuadIntersection.cpp257 double m1 = flat_measure(*q1); local
262 if (m2 < m1) {
285 if (m2 < m1) {
/external/bison/src/
H A Dmuscle-tab.c51 muscle_entry const *m1 = x; local
53 return strcmp (m1->key, m2->key) == 0;
/external/eigen/test/eigen2/
H A Dmain.h204 inline bool test_ei_isMuchSmallerThan(const MatrixBase<Derived1>& m1, argument
207 return m1.isMuchSmallerThan(m2, test_precision<typename ei_traits<Derived1>::Scalar>());
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_pattern.cpp633 Coon_Bezier m1;
634 m1.BezierInterpol(D1, D2, C1, C2);
637 Draw(x_scale, y_scale, left, bottom, C1, m1, D1.first_half(), D2.first_half());
638 Draw(x_scale, y_scale, left, bottom + 1, m1, C2, D1.second_half(), D2.second_half());
647 Coon_Bezier m1, m2;
648 m1.BezierInterpol(D1, D2, C1, C2);
650 Coon_Bezier m1f = m1.first_half();
651 Coon_Bezier m1s = m1.second_half();
/external/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp86 void m1() { function
/external/libnl/include/linux/
H A Dpkt_sched.h293 __u32 m1; /* slope of the first segment in bps */ member in struct:tc_service_curve
/external/sonivox/jet_tools/JetCreator/
H A DJetUtils.py325 m1, b1, t1 = mbt1.split(':',3)
327 if int(m1) > int(m2):
329 elif int(m1) == int(m2) and int(b1) > int(b2):
333 elif int(m1) == int(m2) and int(b1) == int(b2) and int(t1) == int(t2):
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dgeneric.c176 BN_ULONG m, m1, lt, ht; \
182 m1 = (bl) * (ht); \
184 m = (m + m1) & BN_MASK2; \
185 if (m < m1) \
188 m1 = L2HBITS(m); \
189 lt = (lt + m1) & BN_MASK2; \
190 if (lt < m1) \
/external/chromium_org/courgette/
H A Dadjustment_method_2.cc724 int m1 = model_freq.count(); local
725 if (p1 == m1) {
732 if (program_info->refs_ == p1 && model_info->refs_ == m1) {
1046 int m1 = model_freq.count();
1061 int score = std::min(p1, m1);
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py881 m1 = proto.repeated_nested_message.add()
884 self.assertListsEqual([m0, m1], proto.repeated_nested_message)
904 [m1, m2, m3], proto.repeated_nested_message[1:4])
906 [m0, m1, m2, m3, m4], proto.repeated_nested_message[:])
908 [m0, m1], proto.repeated_nested_message[:2])
920 self.assertListsEqual([m0, m1, m2, m3, m4], result)
924 self.assertListsEqual([m0, m1, m3, m4], proto.repeated_nested_message)
928 self.assertListsEqual([m0, m1], proto.repeated_nested_message)
953 # Need to set some differentiating variable so m0 != m1 != m2:
955 m1
[all...]
/external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
H A Dvoronoi.cc234 const int m1 = wCell(x + w - 1, y); local
235 if (m0 != m1) return false;
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
H A Dvoronoi.cc229 const int m1 = wCell(x + w - 1, y); local
230 if (m0 != m1) return false;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dputiltst.c33 int32_t m1=m>>1; local
34 UBool signedRightShiftIsArithmetic= x4==0xffff5fff && m1==-1;
/external/chromium_org/third_party/mesa/src/src/mesa/x86/
H A Dread_rgba_span_x86.S38 #define LOAD_MASK(mvins,m1,m2) \
43 mvins (%esp), m1 ;\
/external/eigen/test/
H A Dmain.h285 inline bool test_isMuchSmallerThan(const MatrixBase<Derived1>& m1, argument
288 return m1.isMuchSmallerThan(m2, test_precision<typename internal::traits<Derived1>::Scalar>());
/external/icu/icu4c/source/test/cintltst/
H A Dputiltst.c33 int32_t m1=m>>1; local
34 UBool signedRightShiftIsArithmetic= x4==0xffff5fff && m1==-1;
/external/mesa3d/src/mesa/x86/
H A Dread_rgba_span_x86.S38 #define LOAD_MASK(mvins,m1,m2) \
43 mvins (%esp), m1 ;\
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_icc.cpp1352 FX_BYTE m1 = FXSYS_round(m * 255); local
1356 AdobeCMYK_to_sRGB1(c1, m1, y1, k1, r, g, b);
/external/chromium_org/v8/test/mjsunit/
H A Dlarge-object-allocation.js70 this.m1 = i;
/external/iproute2/include/linux/
H A Dpkt_sched.h371 __u32 m1; /* slope of the first segment in bps */ member in struct:tc_service_curve

Completed in 650 milliseconds

<<111213141516