HomeSort by relevance Sort by last modified time
    Searched defs:c1 (Results 476 - 500 of 1551) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/common/
uidna.cpp 97 UChar c1,c2; local
107 c1 = s1[i];
111 if(c1!=c2) {
112 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
  /external/icu/icu4c/source/test/intltest/
idnaref.cpp 78 UChar c1,c2; local
87 c1 = s1[i];
91 if(c1!=c2) {
92 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
itercoll.cpp 95 RuleBasedCollator *c1 = NULL; local
96 c1 = new RuleBasedCollator(
99 if (c1 == NULL || U_FAILURE(status))
102 delete c1;
107 iter = c1->createCollationElementIterator(source);
110 delete c1;
656 int32_t c1, c2, count = 0; local
661 c1 = i1.next(status);
664 if (c1 != c2)
666 errln(" %d: strength(0x%X) != strength(0x%X)", count, c1, c2)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
IDNA2003.java 67 char c1,c2; local
75 c1 = s1.charAt(i);
79 if(c1!=c2) {
80 rc=toASCIILower(c1)-toASCIILower(c2);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ScientificNumberFormatter.java 286 char c1 = iterator.current(); local
288 if (UCharacter.isHighSurrogate(c1)) {
293 return UCharacter.toCodePoint(c1, c2);
296 return c1;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
IDNAReference.java 72 char c1,c2; local
80 c1 = s1.charAt(i);
84 if(c1!=c2) {
85 rc=toASCIILower(c1)-toASCIILower(c2);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
LocaleAliasTest.java 74 Calendar c1 = Calendar.getInstance(oldLoc); local
76 c1.setTime(c2.getTime());
78 // int firstDayOfWeek1 = c1.getFirstDayOfWeek();
87 ULocale l1 = c1.getLocale(ULocale.VALID_LOCALE);
95 if(!c1.equals(c2)){
96 errln("CalendarTest: c1!=c2. newLoc= "+newLoc +" oldLoc= "+oldLoc);
  /external/libchrome/base/
callback_list_unittest.cc 120 CallbackList<void(int)> c1; local
122 c1.Add(Bind(&Summer::AddOneParam, Unretained(&s)));
124 c1.Notify(1);
  /external/libjpeg-turbo/
rdjpgcom.c 87 int c1, c2; local
89 c1 = NEXTBYTE();
90 if (c1 == EOF)
95 return (((unsigned int) c1) << 8) + ((unsigned int) c2);
174 int c1, c2; local
176 c1 = NEXTBYTE();
178 if (c1 != 0xFF || c2 != M_SOI)
wrjpgcom.c 101 int c1, c2; local
103 c1 = NEXTBYTE();
104 if (c1 == EOF)
109 return (((unsigned int) c1) << 8) + ((unsigned int) c2);
218 int c1, c2; local
220 c1 = NEXTBYTE();
222 if (c1 != 0xFF || c2 != M_SOI)
  /external/libvpx/libvpx/third_party/libyuv/source/
compare.cc 265 const int64 c1 = (cc1 * count * count) >> 12; local
270 const int64 ssim_n = (2 * sum_a_x_sum_b + c1) *
276 const int64 ssim_d = (sum_a_sq + sum_b_sq + c1) *
  /external/libvpx/libvpx/vpx_dsp/arm/
highbd_idct16x16_add_neon.c 1391 const int16x8_t c1 = vminq_s16(b1, max); local
1405 const uint16x8_t c1 = vqshluq_n_s16(b1, 0); local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
avg.c 49 int16_t c1 = b1 + b3; local
58 coeff[7] = c1 + c5;
62 coeff[6] = c1 - c5;
ssim.c 77 int64_t c1, c2; local
80 c1 = (cc1 * count * count) >> 12;
83 c1 = (cc1_10 * count * count) >> 12;
86 c1 = (cc1_12 * count * count) >> 12;
89 c1 = c2 = 0;
93 ssim_n = (2 * sum_s * sum_r + c1) *
96 ssim_d = (sum_s * sum_s + sum_r * sum_r + c1) *
193 // ssim(x,y) = (2*mean(x)*mean(y) + c1)*(2*cov(x,y)+c2) /
194 // ((mean(x)^2+mean(y)^2+c1)*(var(x)+var(y)+c2))
203 // (2*sum(x)*sum(y)/(n*n) + c1)*(2*(n*sum(xi*yi)-sum(x)*sum(y))/(n*n)+c2)
220 const int64_t c1 = (cc1 * n * n) >> 12; local
251 const int64_t c1 = (cc1 * n * n) >> 12; local
369 static const double c1 = 1, c2 = 1, c3 = 1; local
    [all...]
  /external/libyuv/files/source/
compare.cc 275 const int64 c1 = (cc1 * count * count) >> 12; local
280 const int64 ssim_n = (2 * sum_a_x_sum_b + c1) *
287 (sum_a_sq + sum_b_sq + c1) *
  /external/lzma/CPP/Common/
MyString.cpp 167 unsigned char c1 = (unsigned char)*s1++; if (c1 != c2) return false; local
175 wchar_t c1 = *s1++; local
177 if (c1 != c2 && MyCharUpper(c1) != MyCharUpper(c2)) return false;
178 if (c1 == 0) return true;
192 char c1 = *s1++; local
193 if (MyCharLower_Ascii(c1) !=
207 wchar_t c1 = *s1++; local
208 if (MyCharLower_Ascii(c1) != (unsigned char)MyCharLower_Ascii(c2))
231 char c1 = *s1++; local
244 wchar_t c1 = *s1++; local
257 wchar_t c1 = *s1++; local
271 wchar_t c1 = *s1++; if (c1 != c2) return false; local
280 wchar_t c1 = *s1++; local
297 wchar_t c1 = *s1++; local
    [all...]
Wildcard.cpp 22 wchar_t c1 = *s1++; local
23 if (MyCharUpper(c1) !=
32 wchar_t c1 = *s1++; if (c1 != c2) return false; local
  /external/lzma/CPP/Windows/
FileName.cpp 246 wchar_t c1 = s[i + 1]; local
247 if (c1 == '.')
275 if (c1 == WCHAR_PATH_SEPARATOR || c1 == 0)
280 else if (c1 == 0)
313 FChar c1 = s[i + 1]; local
314 if (c1 == 0 || c1 == CHAR_PATH_SEPARATOR ||
315 (c1 == '.' && (s[i + 2] == 0 || s[i + 2] == CHAR_PATH_SEPARATOR)))
  /external/mesa3d/src/mesa/tnl/
t_vb_render.c 88 GLubyte c1 = mask[v1], c2 = mask[v2]; \
89 GLubyte ormask = c1|c2; \
92 else if (!(c1 & c2 & CLIPMASK)) \
98 GLubyte c1 = mask[v1], c2 = mask[v2], c3 = mask[v3]; \
99 GLubyte ormask = c1|c2|c3; \
102 else if (!(c1 & c2 & c3 & CLIPMASK)) \
108 GLubyte c1 = mask[v1], c2 = mask[v2]; \
110 GLubyte ormask = c1|c2|c3|c4; \
113 else if (!(c1 & c2 & c3 & c4 & CLIPMASK)) \
166 GLubyte c1 = mask[elt[j]] local
    [all...]
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/android/
HttpResponseCacheTest.java 146 URLConnection c1 = openUrl(server.url("/")); local
148 InputStream inputStream = c1.getInputStream();
  /external/openssh/
smult_curve25519_ref.c 136 unsigned int c1[64]; local
164 add(c1,b1,b1 + 32);
165 sub(c1 + 32,b1,b1 + 32);
166 square(r,c1 + 32);
172 square(xzn1b,c1);
  /external/selinux/libselinux/src/
get_context_list.c 323 const struct context_order *c1 = A, *c2 = B; local
324 if (c1->order < c2->order)
326 else if (c1->order > c2->order)
328 return strcmp(c1->con, c2->con);
  /external/selinux/libsepol/cil/src/
cil_find.c 147 struct cil_class *c1 = cp1->class; local
151 if (&c1->datum != &c2->datum) return CIL_FALSE;
  /external/selinux/libsepol/src/
avtab.c 57 static const uint32_t c1 = 0xcc9e2d51; local
68 v *= c1; \
  /external/sfntly/cpp/src/test/
cmap_test.cc 147 int32_t c1 = uchar; local
149 c1 = TestUtils::EncodeOneChar(encoder1_, (int16_t)uchar);
153 int32_t glyph_id1 = cmap1_->GlyphId(c1);
157 fprintf(stderr, "%x: g1=%x, %x: g2=%x\n", c1, glyph_id1, c2, glyph_id2);

Completed in 2152 milliseconds

<<11121314151617181920>>