/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
bn-mips.S | 759 multu $12,$8 # mul_add_c(a[0],b[0],c1,c2,c3); 769 multu $12,$9 # mul_add_c(a[0],b[1],c2,c3,c1); 778 multu $13,$8 # mul_add_c(a[1],b[0],c2,c3,c1); 782 sw $2,0($4) # r[0]=c1; 787 multu $14,$8 # mul_add_c(a[2],b[0],c3,c1,c2); 797 multu $13,$9 # mul_add_c(a[1],b[1],c3,c1,c2); 804 multu $12,$10 # mul_add_c(a[0],b[2],c3,c1,c2); 812 multu $12,$11 # mul_add_c(a[0],b[3],c1,c2,c3); 823 multu $13,$10 # mul_add_c(a[1],b[2],c1,c2,c3); 831 multu $14,$9 # mul_add_c(a[2],b[1],c1,c2,c3) [all...] |
/external/openssl/crypto/bn/asm/ |
bn-mips.S | 759 multu $12,$8 # mul_add_c(a[0],b[0],c1,c2,c3); 769 multu $12,$9 # mul_add_c(a[0],b[1],c2,c3,c1); 778 multu $13,$8 # mul_add_c(a[1],b[0],c2,c3,c1); 782 sw $2,0($4) # r[0]=c1; 787 multu $14,$8 # mul_add_c(a[2],b[0],c3,c1,c2); 797 multu $13,$9 # mul_add_c(a[1],b[1],c3,c1,c2); 804 multu $12,$10 # mul_add_c(a[0],b[2],c3,c1,c2); 812 multu $12,$11 # mul_add_c(a[0],b[3],c1,c2,c3); 823 multu $13,$10 # mul_add_c(a[1],b[2],c1,c2,c3); 831 multu $14,$9 # mul_add_c(a[2],b[1],c1,c2,c3) [all...] |
/external/icu4c/samples/uciter8/ |
uciter8.c | 48 UChar32 c1, c2; local 74 c1=iter1->current(iter1); 76 if(c1!=c2) { 77 log_err("%s->current()=U+%04x != U+%04x=%s->current() at middle=%d\n", n1, c1, c2, n2, middle); 83 c1=iter1->next(iter1); 85 if(c1!=c2) { 86 log_err("%s->next()=U+%04x != U+%04x=%s->next() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT)); 93 c1=iter1->previous(iter1); 95 if(c1!=c2) { 96 log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT)) 308 UChar32 c1, c2; local [all...] |
/external/apache-http/src/org/apache/http/cookie/ |
CookiePathComparator.java | 66 public int compare(final Cookie c1, final Cookie c2) { 67 String path1 = normalizePath(c1);
|
/external/chromium/base/ |
string16.h | 73 static void assign(char_type& c1, const char_type& c2) { 74 c1 = c2; 77 static bool eq(const char_type& c1, const char_type& c2) { 78 return c1 == c2; 80 static bool lt(const char_type& c1, const char_type& c2) { 81 return c1 < c2; 121 static bool eq_int_type(const int_type& c1, const int_type& c2) { 122 return c1 == c2;
|
/external/chromium/googleurl/base/ |
string16.h | 86 static void assign(char_type& c1, const char_type& c2) { 87 c1 = c2; 90 static bool eq(const char_type& c1, const char_type& c2) { 91 return c1 == c2; 93 static bool lt(const char_type& c1, const char_type& c2) { 94 return c1 < c2; 134 static bool eq_int_type(const int_type& c1, const int_type& c2) { 135 return c1 == c2;
|
/external/chromium_org/third_party/WebKit/Source/core/platform/text/ |
BidiContext.cpp | 100 bool operator==(const BidiContext& c1, const BidiContext& c2) 102 if (&c1 == &c2) 104 if (c1.level() != c2.level() || c1.override() != c2.override() || c1.dir() != c2.dir() || c1.source() != c2.source()) 106 if (!c1.parent()) 108 return c2.parent() && *c1.parent() == *c2.parent();
|
/external/chromium_org/third_party/libwebp/dsp/ |
dec_neon.c | 74 #define LOAD8x4(c1, c2, c3, c4, b1, b2, stride) \ 75 "vld4.8 {" #c1"[0], " #c2"[0], " #c3"[0], " #c4"[0]}," #b1 "," #stride"\n" \ 76 "vld4.8 {" #c1"[1], " #c2"[1], " #c3"[1], " #c4"[1]}," #b2 "," #stride"\n" \ 77 "vld4.8 {" #c1"[2], " #c2"[2], " #c3"[2], " #c4"[2]}," #b1 "," #stride"\n" \ 78 "vld4.8 {" #c1"[3], " #c2"[3], " #c3"[3], " #c4"[3]}," #b2 "," #stride"\n" \ 79 "vld4.8 {" #c1"[4], " #c2"[4], " #c3"[4], " #c4"[4]}," #b1 "," #stride"\n" \ 80 "vld4.8 {" #c1"[5], " #c2"[5], " #c3"[5], " #c4"[5]}," #b2 "," #stride"\n" \ 81 "vld4.8 {" #c1"[6], " #c2"[6], " #c3"[6], " #c4"[6]}," #b1 "," #stride"\n" \ 82 "vld4.8 {" #c1"[7], " #c2"[7], " #c3"[7], " #c4"[7]}," #b2 "," #stride"\n" 84 #define STORE8x2(c1, c2, p, stride) [all...] |
/external/compiler-rt/lib/tsan/lit_tests/ |
tsan-vs-gvn.cc | 12 char c1, c2, c3, c4; member in struct:__anon19139 18 G = S.c1 + S.c3;
|
/external/webp/src/dsp/ |
dec_neon.c | 74 #define LOAD8x4(c1, c2, c3, c4, b1, b2, stride) \ 75 "vld4.8 {" #c1"[0], " #c2"[0], " #c3"[0], " #c4"[0]}," #b1 "," #stride"\n" \ 76 "vld4.8 {" #c1"[1], " #c2"[1], " #c3"[1], " #c4"[1]}," #b2 "," #stride"\n" \ 77 "vld4.8 {" #c1"[2], " #c2"[2], " #c3"[2], " #c4"[2]}," #b1 "," #stride"\n" \ 78 "vld4.8 {" #c1"[3], " #c2"[3], " #c3"[3], " #c4"[3]}," #b2 "," #stride"\n" \ 79 "vld4.8 {" #c1"[4], " #c2"[4], " #c3"[4], " #c4"[4]}," #b1 "," #stride"\n" \ 80 "vld4.8 {" #c1"[5], " #c2"[5], " #c3"[5], " #c4"[5]}," #b2 "," #stride"\n" \ 81 "vld4.8 {" #c1"[6], " #c2"[6], " #c3"[6], " #c4"[6]}," #b1 "," #stride"\n" \ 82 "vld4.8 {" #c1"[7], " #c2"[7], " #c3"[7], " #c4"[7]}," #b2 "," #stride"\n" 84 #define STORE8x2(c1, c2, p, stride) [all...] |
/external/chromium_org/third_party/re2/util/ |
rune.cc | 51 int c, c1, c2, c3; local 68 c1 = *(unsigned char*)(str+1) ^ Tx; 69 if(c1 & Testx) 74 l = ((c << Bitx) | c1) & Rune2; 89 l = ((((c << Bitx) | c1) << Bitx) | c2) & Rune3; 104 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4; 233 long c1; local 241 c1 = *(unsigned char*)s; 242 if(c1 < Runeself) { /* one byte rune */ 243 if(c1 == 0 [all...] |
/external/regex-re2/util/ |
rune.cc | 51 int c, c1, c2, c3; local 68 c1 = *(unsigned char*)(str+1) ^ Tx; 69 if(c1 & Testx) 74 l = ((c << Bitx) | c1) & Rune2; 89 l = ((((c << Bitx) | c1) << Bitx) | c2) & Rune3; 104 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4; 233 long c1; local 241 c1 = *(unsigned char*)s; 242 if(c1 < Runeself) { /* one byte rune */ 243 if(c1 == 0 [all...] |
/external/bzip2/ |
blocksort.c | 355 UChar c1, c2; local 360 c1 = block[i1]; c2 = block[i2]; 361 if (c1 != c2) return (c1 > c2); 364 c1 = block[i1]; c2 = block[i2]; 365 if (c1 != c2) return (c1 > c2); 368 c1 = block[i1]; c2 = block[i2]; 369 if (c1 != c2) return (c1 > c2) 764 UChar c1; local [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
Collections2Test.java | 344 Collection<Object> c1 = new ArrayList<Object>(); local 346 Collections.addAll(c1, arr1); 348 assertTrue(Collections.disjoint(c1, c2)); 349 c1.add(arr2[10]); 350 assertFalse(Collections.disjoint(c1, c2)); 352 c1 = new LinkedList<Object>(); 354 Collections.addAll(c1, arr1); 356 assertTrue(Collections.disjoint(c1, c2)); 357 c1.add(arr2[10]); 358 assertFalse(Collections.disjoint(c1, c2)) [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/ |
CertificateTest.java | 77 Certificate c1 = new MyCertificate("DUMMY", new byte[] {(byte)0, (byte)1}); local 81 SerializationTest.copySerializable(c1); 94 Certificate c1 = new MyCertificate("DUMMY", null); local 98 SerializationTest.copySerializable(c1);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkCubicInterval.cpp | 10 static SkScalar eval_cubic(SkScalar c1, SkScalar c2, SkScalar c3, 12 return SkScalarMul(SkScalarMul(SkScalarMul(c3, t) + c2, t) + c1, t); 15 static SkScalar find_cubic_t(SkScalar c1, SkScalar c2, SkScalar c3, 23 SkScalar x = eval_cubic(c1, c2, c3, t); 43 C1 = t^1: 3b 47 ((C3*t + C2)*t + C1)*t
|
/external/clang/test/SemaTemplate/ |
instantiation-default-2.cpp | 6 Constant<int, 5> *c1; variable
|
/external/skia/src/utils/ |
SkCubicInterval.cpp | 10 static SkScalar eval_cubic(SkScalar c1, SkScalar c2, SkScalar c3, 12 return SkScalarMul(SkScalarMul(SkScalarMul(c3, t) + c2, t) + c1, t); 15 static SkScalar find_cubic_t(SkScalar c1, SkScalar c2, SkScalar c3, 23 SkScalar x = eval_cubic(c1, c2, c3, t); 43 C1 = t^1: 3b 47 ((C3*t + C2)*t + C1)*t
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
fp-regs.cpp | 21 double a1, b1, c1, d1, e1, f1, g1, h1, i1, j1; local 36 c1 = b1 + 1; 37 d1 = c1 + 1; 76 if (c1 != 2.0)
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
fp-regs.cpp | 21 double a1, b1, c1, d1, e1, f1, g1, h1, i1, j1; local 36 c1 = b1 + 1; 37 d1 = c1 + 1; 76 if (c1 != 2.0)
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/utils/ |
damerau_levenshtein_edit_distance_policy.h | 35 const int c1 = CharUtils::toBaseLowerCase(mString1[index1]); local 36 return (c0 == c1) ? 0.0f : 1.0f; 49 const int c1 = CharUtils::toBaseLowerCase(mString1[index1]); local 51 && c1 == CharUtils::toBaseLowerCase(mString0[index0 - 1])) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_abstract_numbers.py | 41 c1, c2 = complex(3, 2), complex(4,1) 43 self.assertRaises(AttributeError, math.trunc, c1) 44 self.assertRaises(TypeError, float, c1) 45 self.assertRaises(TypeError, int, c1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_abstract_numbers.py | 41 c1, c2 = complex(3, 2), complex(4,1) 43 self.assertRaises(AttributeError, math.trunc, c1) 44 self.assertRaises(TypeError, float, c1) 45 self.assertRaises(TypeError, int, c1)
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Kube.java | 45 float c1 = -0.38f; local 52 mCubes[0] = new Cube(world, c0, c4, c0, c1, c5, c1); 53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1); 54 mCubes[2] = new Cube(world, c4, c4, c0, c5, c5, c1); 56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3); 60 mCubes[6] = new Cube(world, c0, c4, c4, c1, c5, c5); 64 mCubes[9] = new Cube(world, c0, c2, c0, c1, c3, c1); 65 mCubes[10] = new Cube(world, c2, c2, c0, c3, c3, c1); [all...] |
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
idctllm_dspr2.c | 47 int a1, b1, c1, d1; local 67 c1 = temp1 - temp2; 83 op[4] = b1 + c1; 84 op[8] = b1 - c1; 99 c1 = temp1 - temp2; 115 op[6] = b1 + c1; 116 op[10] = b1 - c1; 137 c1 = temp1 - temp2; 153 op[1] = (b1 + c1 + 4) >> 3; 154 op[2] = (b1 - c1 + 4) >> 3 285 int a1, b1, c1, d1; local [all...] |