/external/icu4c/common/ |
uinvchar.c | 453 UChar32 c1, c2; local 472 c1=c; 474 c1=-1; 482 if((c1-=c2)!=0) { 483 return c1; 498 UChar32 c1, c2; local 517 c1=0; 518 } else if((c1=asciiFromEbcdic[c])!=0 && UCHAR_IS_INVARIANT(c1)) { 519 /* c1 is set * 542 int32_t c1, c2; local [all...] |
unormcmp.cpp | 63 * get one code unit c1 from s1 (-1 if end of source) 69 * if(c1==c2) { 73 * // c1!=c2 74 * try to decompose/case-fold c1/c2, and continue if one does; 76 * // still c1!=c2 and neither decomposes/case-folds, return result 77 * return c1-c2; 170 UChar32 c1, c2, cp1, cp2; local 211 c1=c2=-1; 220 if(c1<0) { 223 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) [all...] |
/external/icu4c/test/intltest/ |
aliastst.cpp | 66 Calendar* c1 = Calendar::createInstance(oldLoc, status); local 70 const char* l1 = c1->getLocaleID(ULOC_VALID_LOCALE, status); 78 if(!(c1==c2)){ 79 errln("CalendarTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName())); 82 delete c1; 112 errln("TestDateFormat: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName())); 133 Collator* c1 = Collator::createInstance(oldLoc, status); local 136 Locale l1 = c1->getLocale(ULOC_VALID_LOCALE, status); 145 if(!(c1==c2)){ 146 errln("CollationTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName())) [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
DnaBlockData.java | 193 char c1 = (char) ((code & 0xFF000000) >> 24);
local 197 return String.valueOf(c1) + c2 + c3 + c4;
|
/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/libvpx/libvpx/vp8/encoder/ |
encodemv.c | 269 const int c1 = events [mv_max + j]; /* positive */ local 271 const int c = c1 + c2; 274 sign_ct [0] += c1;
|
ssim.c | 81 int64_t c1, c2; local 84 c1 = (cc1*count*count)>>12; 87 ssim_n = (2*sum_s*sum_r+ c1)*((int64_t) 2*count*sum_sxr- 90 ssim_d = (sum_s*sum_s +sum_r*sum_r+c1)* 119 int64_t c1, c2; local 122 c1 = cc1*16; 126 ssim_n1 = (2*sum_s*sum_r+ c1); 130 ssim_d1 =((int64_t)sum_s*sum_s +(int64_t)sum_r*sum_r+c1);
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_ssim.c | 52 int64_t c1, c2; local 55 c1 = (cc1 * count * count) >> 12; 58 ssim_n = (2 * sum_s * sum_r + c1) * ((int64_t) 2 * count * sum_sxr - 61 ssim_d = (sum_s * sum_s + sum_r * sum_r + c1) *
|
/external/llvm/unittests/IR/ |
MetadataTest.cpp | 91 Value *const c1 = n1; local 92 MDNode *n2 = MDNode::get(Context, c1); 96 MDNode *n5 = MDNode::getIfExists(Context, c1);
|
/external/mesa3d/src/mesa/swrast/ |
s_zoom.c | 54 GLint c0, c1, r0, r1; local 60 * Compute destination columns: [c0, c1) 63 c1 = imageX + (GLint) ((spanX + width - imageX) * ctx->Pixel.ZoomX); 64 if (c1 < c0) { 66 GLint tmp = c1; 67 c1 = c0; 71 c1 = CLAMP(c1, fb->_Xmin, fb->_Xmax); 72 if (c0 == c1) { 94 *x1 = c1; [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_base.cpp | 176 int c1 = tolower(format[i+1]); local 179 if( c1 != c2 )
|
/external/openssl/crypto/bn/ |
bn_mul.c | 396 int n=n2/2,c1,c2; local 431 c1=bn_cmp_part_words(a,&(a[n]),tna,n-tna); 434 switch (c1*3+c2) 503 /* t[32] holds (a[0]-a[1])*(b[1]-b[0]), c1 is the sign 508 c1=(int)(bn_add_words(t,r,&(r[n2]),n2)); 512 c1-=(int)(bn_sub_words(&(t[n2]),t,&(t[n2]),n2)); 517 c1+=(int)(bn_add_words(&(t[n2]),&(t[n2]),t,n2)); 523 * c1 holds the carry bits 525 c1+=(int)(bn_add_words(&(r[n]),&(r[n]),&(t[n2]),n2)); 526 if (c1) 554 int c1,c2,neg; local 761 int c1,c2; local [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/skia/tests/ |
GpuColorFilterTest.cpp | 63 const SkColor c1 = SkColorSetARGB(200, 200, 200, 200); local 65 const GrColor gr_c1 = SkColor2GrColor(c1); 76 { kR, gr_white, c1, SkXfermode::kClear_Mode, kRGBA, gr_black }, 79 { kRGBA, gr_c2, c1, SkXfermode::kSrc_Mode, kRGBA, gr_c1 }, 80 { kA, gr_c1, c1, SkXfermode::kSrc_Mode, kRGBA, gr_c1 },
|
ImageDecodingTest.cpp | 123 // "c1" is the result of premultiplying the color of the unpremultiplied 125 const SkPMColor c1 = premultiply_unpmcolor(*bm8888Unpremul.getAddr32(i, j)); local 127 int da = SkAbs32(SkGetPackedA32(c0) - SkGetPackedA32(c1)); 128 int dr = SkAbs32(SkGetPackedR32(c0) - SkGetPackedR32(c1)); 129 int dg = SkAbs32(SkGetPackedG32(c0) - SkGetPackedG32(c1)); 130 int db = SkAbs32(SkGetPackedB32(c0) - SkGetPackedB32(c1));
|
/external/skia/tools/ |
skdiff.cpp | 143 static inline bool colors_match_thresholded(SkPMColor c0, SkPMColor c1, const int threshold) { 144 int da = SkGetPackedA32(c0) - SkGetPackedA32(c1); 145 int dr = SkGetPackedR32(c0) - SkGetPackedR32(c1); 146 int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1); 147 int db = SkGetPackedB32(c0) - SkGetPackedB32(c1); 180 SkPMColor c1 = *dr->fComparison.fBitmap.getAddr32(x, y); local 181 SkPMColor outputDifference = diffFunction(c0, c1); 182 uint32_t thisA = SkAbs32(SkGetPackedA32(c0) - SkGetPackedA32(c1)); 183 uint32_t thisR = SkAbs32(SkGetPackedR32(c0) - SkGetPackedR32(c1)); 184 uint32_t thisG = SkAbs32(SkGetPackedG32(c0) - SkGetPackedG32(c1)); [all...] |
/external/valgrind/main/memcheck/tests/ |
varinfo5so.c | 126 typedef struct { short c1; char* c2[3]; } XX; member in struct:__anon28316 137 croak(1 + (char*)(&a[3].xyzzy[x*y].c1)); 141 return a[3].xyzzy[x*y].c1;
|
/hardware/qcom/display/msm8960/libqdutils/ |
qdMetaData.h | 51 uint16_t c1[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
|
/hardware/qcom/display/msm8974/libqdutils/ |
qdMetaData.h | 51 uint16_t c1[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
|
/hardware/qcom/display/msm8x26/libqdutils/ |
qdMetaData.h | 51 uint16_t c1[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
|
/ndk/sources/host-tools/make-3.81/glob/ |
fnmatch.c | 336 size_t c1 = 0; local 344 if (c1 == CHAR_CLASS_MAX_LENGTH) 363 str[c1++] = c; 365 str[c1] = '\0';
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_poly.cpp | 97 double c0,c1,c2,c3; local 123 c1=d/a; 131 k0=min4_c0*c3c3through4_min_c2-c1*c1; 132 k1=c1*c3+min4_c0; 145 mn=lz*c3through4-c1/2.0; 169 double c0,c1,c2,c3; local 195 c1=d/a; 203 k0=min4_c0*c3c3through4_min_c2-c1*c1; [all...] |
/packages/apps/Camera2/jni/feature_stab/db_vlvm/ |
db_utilities_poly.cpp | 97 double c0,c1,c2,c3; local 123 c1=d/a; 131 k0=min4_c0*c3c3through4_min_c2-c1*c1; 132 k1=c1*c3+min4_c0; 145 mn=lz*c3through4-c1/2.0; 169 double c0,c1,c2,c3; local 195 c1=d/a; 203 k0=min4_c0*c3c3through4_min_c2-c1*c1; [all...] |
/packages/apps/Gallery2/jni/filters/ |
kmeans.h | 189 T * c1 = initialPicks; local 194 ret = calculateNewCentroids<T, N>(k, values, len, dimension, stride, c1, c2); 195 temp = c1; 196 c1 = c2; 202 set<T, T>(finalCentroids, c1, dimension);
|
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_utilities_poly.cpp | 97 double c0,c1,c2,c3; local 123 c1=d/a; 131 k0=min4_c0*c3c3through4_min_c2-c1*c1; 132 k1=c1*c3+min4_c0; 145 mn=lz*c3through4-c1/2.0; 169 double c0,c1,c2,c3; local 195 c1=d/a; 203 k0=min4_c0*c3c3through4_min_c2-c1*c1; [all...] |