HomeSort by relevance Sort by last modified time
    Searched refs:m1 (Results 226 - 250 of 372) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStrokeWithPreviewPoints.java 172 final double m1 = Math.atan2(mInterpolator.mSlope1Y, mInterpolator.mSlope1X); local
174 final double deltaAngle = Math.abs(angularDiff(m2, m1));
  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc 641 const Matcher<int> m1 = IsEven2(); local
642 EXPECT_EQ("is even", Describe(m1));
643 EXPECT_EQ("is odd", DescribeNegation(m1));
652 const Matcher<int> m1 = IsEven2(); local
653 EXPECT_EQ("OK", Explain(m1, 4));
654 EXPECT_EQ("% 2 == 1", Explain(m1, 5));
675 const Matcher< ::std::string> m1 = IsEmptyString(); local
676 EXPECT_TRUE(m1.Matches(""));
953 MATCHER_P3(TwoOf, m1, m2, m3, "") {
954 const int count = static_cast<int>(Value(arg, m1))
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
block.cpp 369 int r0, r1, r2, r3, m0, m1, m2 , m3; local
507 m1 = coef[0] - coef[4];
514 coef[8] = m1 - m3;
515 coef[12] = m1 + m3;
527 m1 = coef[0] - coef[64];
533 coef[128] = ((m1 - m3) * quant) << Qq;
534 coef[192] = ((m1 + m3) * quant) << Qq;
547 m1 = coef[0] - coef[64];
553 coef[128] = (((m1 - m3) * quant + offset) >> Qq);
554 coef[192] = (((m1 + m3) * quant + offset) >> Qq)
    [all...]
  /frameworks/native/opengl/libagl/
light.cpp 50 const GLfixed* m0, const GLfixed* m1, const GLfixed* a);
52 const GLfixed* m0, const GLfixed* m1);
163 const GLfixed* m0, const GLfixed* m1, const GLfixed* a)
165 d[0] = gglMulAddx(m0[0], m1[0], a[0]);
166 d[1] = gglMulAddx(m0[1], m1[1], a[1]);
167 d[2] = gglMulAddx(m0[2], m1[2], a[2]);
171 void vmul3(GLfixed* d, const GLfixed* m0, const GLfixed* m1) {
172 d[0] = gglMulx(m0[0], m1[0]);
173 d[1] = gglMulx(m0[1], m1[1]);
174 d[2] = gglMulx(m0[2], m1[2])
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_er.c 31 struct wpabuf *m1));
477 static void wps_er_ap_get_m1(struct wps_er_ap *ap, struct wpabuf *m1)
481 if (wps_parse_msg(m1, &attr) < 0) {
482 wpa_printf(MSG_DEBUG, "WPS ER: Failed to parse M1");
763 int m1; local
765 m1 = !probe_req && attr->msg_type && *attr->msg_type == WPS_M1;
770 * or M1. This will filter out bogus events and anything that
773 if (!probe_req && !m1)
785 if (m1)
850 if (m1 || new_sta
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
TwofishEngine.java 227 int[] m1 = new int[2]; local
235 m1[0] = j;
240 m1[1] = j;
244 gMDS0[i] = m1[P_00] | mX[P_00] << 8 |
248 mX[P_10] << 16 | m1[P_10] << 24;
251 m1[P_20] << 16 | mY[P_20] << 24;
253 gMDS3[i] = mX[P_30] | m1[P_30] << 8 |
  /external/chromium/chrome/browser/autocomplete/
autocomplete_unittest.cc 408 AutocompleteMatch m1(NULL, 0, false, AutocompleteMatch::URL_WHAT_YOU_TYPED);
412 m1.relevance = cases[i].r1;
415 AutocompleteMatch::MoreRelevant(m1, m2));
  /external/opencv/cvaux/src/
cvbgfg_codebook.cpp 238 uchar m0, m1, m2, M0, M1, M2; local
257 m1 = model->modMin[1]; M1 = model->modMax[1];
271 int l0 = p0 + m0, l1 = p1 + m1, l2 = p2 + m2;
272 int h0 = p0 - M0, h1 = p1 - M1, h2 = p2 - M2;
cv3dtracker.cpp 62 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])
574 rm[i][j] += m1[i][k]*m2[k][j];
  /external/jpeg/
jdphuff.c 495 int m1 = (-1) << cinfo->Al; /* -1 in the bit position being coded */ local
547 s = m1; /* newly nonzero coef is negative */
573 *thiscoef += m1;
607 *thiscoef += m1;
  /external/qemu/distrib/jpeg-6b/
jdphuff.c 499 int m1 = (-1) << cinfo->Al; /* -1 in the bit position being coded */ local
551 s = m1; /* newly nonzero coef is negative */
577 *thiscoef += m1;
611 *thiscoef += m1;
  /external/quake/quake/src/WinQuake/
common.h 131 int Q_memcmp (const void *m1, const void *m2, int count);
  /libcore/luni/src/test/java/tests/api/java/util/
HashMapTest.java 401 Map<Integer,Integer> m1 = new HashMap<Integer, Integer>(); local
405 m1.put(j, j);
415 m1.putAll(m2);
420 assertEquals(j, m1.get(j));
LinkedHashMapTest.java 237 Map<String, String> m1 = new LinkedHashMap<String, String>(); local
238 m1.put(key, value);
239 m1.put("jumbo", "shrimp");
240 LinkedHashMap<String, String> m2 = new LinkedHashMap<String, String>(m1);
241 Set<Map.Entry<String, String>> s1 = m1.entrySet();
  /frameworks/base/media/java/android/media/videoeditor/
MediaArtistNativeHelper.java     [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapTest.java 1932 Map m1 = new TreeMap(); local
    [all...]
  /external/openfst/src/include/fst/
lookahead-filter.h 37 template <class M1, class M2>
38 MatchType LookAheadMatchType(const M1 &m1, const M2 &m2) {
39 MatchType type1 = m1.Type(false);
42 m1.Flags() & kOutputLookAheadMatcher)
47 else if (m1.Flags() & kOutputLookAheadMatcher &&
48 m1.Type(true) == MATCH_OUTPUT)
76 template <class M1, class M2, MatchType MT>
123 template <class M1, class M2>
124 class LookAheadSelector<M1, M2, MATCH_INPUT>
    [all...]
  /external/openssl/crypto/rsa/
rsa_eay.c 739 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/qemu/target-arm/
neon_helper.c 1858 uint64_t m1 = ELEM(zm0, 1, 8) | (ELEM(zm0, 3, 8) << 8) local
1880 uint64_t m1 = ELEM(zm0, 1, 16) | (ELEM(zm0, 3, 16) << 16) local
1897 uint64_t m1 = ELEM(zm0, 1, 32) | (ELEM(zm1, 1, 32) << 32); local
1950 uint64_t m1 = ELEM(zd1, 4, 8) | (ELEM(zm1, 4, 8) << 8) local
1972 uint64_t m1 = ELEM(zd1, 2, 16) | (ELEM(zm1, 2, 16) << 16) local
1989 uint64_t m1 = ELEM(zd1, 1, 32) | (ELEM(zm1, 1, 32) << 32); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
SourceRevealer.java 288 public int compare(SearchMatch m1, SearchMatch m2) {
289 String p1 = m1.getResource().getProject().getName();
296 String r1 = m1.getResource().getName();
  /external/bison/src/
muscle-tab.c 51 muscle_entry const *m1 = x; local
53 return strcmp (m1->key, m2->key) == 0;
  /external/eigen/test/eigen2/
main.h 204 inline bool test_ei_isMuchSmallerThan(const MatrixBase<Derived1>& m1,
207 return m1.isMuchSmallerThan(m2, test_precision<typename ei_traits<Derived1>::Scalar>());
  /bionic/libc/kernel/common/linux/
pkt_sched.h 286 __u32 m1; member in struct:tc_service_curve
  /development/ndk/platforms/android-3/include/linux/
pkt_sched.h 229 __u32 m1; member in struct:tc_service_curve
  /external/chromium/chrome/browser/history/
in_memory_url_index.h 65 static bool MatchScoreGreater(const ScoredHistoryMatch& m1,

Completed in 1273 milliseconds

1 2 3 4 5 6 7 8 91011>>