HomeSort by relevance Sort by last modified time
    Searched refs:c1 (Results 126 - 150 of 848) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/compiler-rt/lib/tsan/lit_tests/
tsan-vs-gvn.cc 12 char c1, c2, c3, c4; member in struct:__anon7122
18 G = S.c1 + S.c3;
  /external/webkit/Source/WebCore/platform/text/
BidiContext.cpp 93 bool operator==(const BidiContext& c1, const BidiContext& c2)
95 if (&c1 == &c2)
97 if (c1.level() != c2.level() || c1.override() != c2.override() || c1.dir() != c2.dir() || c1.source() != c2.source())
99 if (!c1.parent())
101 return c2.parent() && *c1.parent() == *c2.parent();
  /external/webp/src/dsp/
dec_neon.c 72 #define LOAD8x4(c1, c2, c3, c4, b1, b2, stride) \
73 "vld4.8 {" #c1"[0], " #c2"[0], " #c3"[0], " #c4"[0]}," #b1 "," #stride"\n" \
74 "vld4.8 {" #c1"[1], " #c2"[1], " #c3"[1], " #c4"[1]}," #b2 "," #stride"\n" \
75 "vld4.8 {" #c1"[2], " #c2"[2], " #c3"[2], " #c4"[2]}," #b1 "," #stride"\n" \
76 "vld4.8 {" #c1"[3], " #c2"[3], " #c3"[3], " #c4"[3]}," #b2 "," #stride"\n" \
77 "vld4.8 {" #c1"[4], " #c2"[4], " #c3"[4], " #c4"[4]}," #b1 "," #stride"\n" \
78 "vld4.8 {" #c1"[5], " #c2"[5], " #c3"[5], " #c4"[5]}," #b2 "," #stride"\n" \
79 "vld4.8 {" #c1"[6], " #c2"[6], " #c3"[6], " #c4"[6]}," #b1 "," #stride"\n" \
80 "vld4.8 {" #c1"[7], " #c2"[7], " #c3"[7], " #c4"[7]}," #b2 "," #stride"\n"
82 #define STORE8x2(c1, c2, p,stride)
    [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/clang/test/SemaTemplate/
instantiation-default-2.cpp 6 Constant<int, 5> *c1; variable
  /external/skia/legacy/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/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/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.ops/
splice_after_flist.pass.cpp 46 C c1(std::begin(t1), std::end(t1));
49 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2));
50 testd(c1, p, l);
splice_after_one.pass.cpp 82 C c1(std::begin(t1), std::end(t1));
85 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
87 testd(c1, p, f);
96 C c1(std::begin(t1), std::end(t1));
98 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c1),
99 next(c1.cbefore_begin(), f));
100 tests(c1, p, f)
    [all...]
  /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 = toBaseLowerCase(mString1[index1]); local
36 return (c0 == c1) ? 0.0f : 1.0f;
49 const int c1 = toBaseLowerCase(mString1[index1]); local
51 && c1 == toBaseLowerCase(mString0[index0 - 1])) {
  /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...]
  /external/proguard/src/proguard/io/
ManifestRewriter.java 85 int c1 = super.read(); local
86 if (c1 != '\n' && c1 != '\r')
88 return c1;
103 if (c1 != '\r' || c2 != '\n')
  /external/libvpx/libvpx/vp8/encoder/arm/neon/
shortfdct_neon.asm 52 vsub.s16 d6, d1, d2 ; c1 = ip[1] - ip[2]
56 vshl.s16 q3, q3, #3 ; (c1, d1) << 3
63 vmlal.s16 q9, d6, d17 ; c1*2217 + d1*5352 + 14500
64 vmlsl.s16 q10, d6, d16 ; d1*2217 - c1*5352 + 7500
66 vshrn.s32 d1, q9, #12 ; op[1] = (c1*2217 + d1*5352 + 14500)>>12
67 vshrn.s32 d3, q10, #12 ; op[3] = (d1*2217 - c1*5352 + 7500)>>12
82 vsub.s16 d6, d1, d2 ; c1 = ip[4] - ip[8]
97 vmlal.s16 q11, d6, d17 ; c1*2217 + d1*5352 + 12000
98 vmlsl.s16 q12, d6, d16 ; d1*2217 - c1*5352 + 51000
101 vshrn.s32 d1, q11, #16 ; op[4] = (c1*2217 + d1*5352 + 12000)>>1
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/armv6/
iwalsh_v6.asm 35 qsub16 r12, r4, r6 ; c1 [5-9 | 4-8]
39 qadd16 r4, r12, lr ; c1 + d1 [5 | 4]
41 qsub16 r8, lr, r12 ; d1 - c1 [13 | 12]
45 qsub16 r12, r5, r7 ; c1 [7-11 | 6-10]
49 qadd16 r5, r12, lr ; c1 + d1 [7 | 6]
51 qsub16 r9, lr, r12 ; d1 - c1 [15 | 14]
55 qsubaddx r10, r2, r3 ; [c1|a1] [1-2 | 0+3]
57 qsubaddx r12, r4, r5 ; [c1|a1] [5-6 | 4+7]
60 qaddsubx r2, r10, r11 ; [b2|c2] [c1+d1 | a1-b1]
61 qaddsubx r3, r11, r10 ; [a2|d2] [b1+a1 | d1-c1]
    [all...]
  /external/openssl/crypto/bn/asm/
sparcv8.S 568 umul a_0,b_0,c_1 !=!mul_add_c(a[0],b[0],c1,c2,c3);
571 st c_1,rp(0) !r[0]=c1;
573 umul a_0,b_1,t_1 !=!mul_add_c(a[0],b[1],c2,c3,c1);
580 umul a_1,b_0,t_1 !mul_add_c(a[1],b[0],c2,c3,c1);
587 umul a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
593 umul a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
599 umul a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
606 umul a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
611 umul a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
617 umul a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c2,c3)
    [all...]
sparcv8plus.S 678 mulx a_0,b_0,t_1 !mul_add_c(a[0],b[0],c1,c2,c3);
680 stuw t_1,rp(0) !=!r[0]=c1;
683 mulx a_0,b_1,t_1 !mul_add_c(a[0],b[1],c2,c3,c1);
689 mulx a_1,b_0,t_1 !=!mul_add_c(a[1],b[0],c2,c3,c1);
697 mulx a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
703 mulx a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
708 mulx a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
716 mulx a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
721 mulx a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
726 mulx a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c2,c3)
    [all...]

Completed in 3065 milliseconds

1 2 3 4 56 7 8 91011>>