Searched refs:col4 (Results 1 – 4 of 4) sorted by relevance
/external/jpeg/ |
D | jccolor.c | 319 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4) in copyquads() argument 329 } while (--col4 != 0); in copyquads() 360 int col4 = col >> 2; in null_convert() local 361 if (col4 > 0 && ptr_is_quad(inptr) && ptr_is_quad(outptr0) && in null_convert() 368 copyquads(in, out0, out1, out2, col4); in null_convert() 372 col4 <<= 2; in null_convert() 373 inptr += col4 * 3; /* we read this 3 times per in copyquads */ in null_convert() 374 outptr0 += col4; in null_convert() 375 outptr1 += col4; in null_convert() 376 outptr2 += col4; in null_convert()
|
/external/qemu/distrib/jpeg-6b/ |
D | jccolor.c | 412 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4) in copyquads() argument 422 } while (--col4 != 0); in copyquads() 453 int col4 = col >> 2; in null_convert() local 454 if (col4 > 0 && ptr_is_quad(inptr) && ptr_is_quad(outptr0) && in null_convert() 461 copyquads(in, out0, out1, out2, col4); in null_convert() 465 col4 <<= 2; in null_convert() 466 inptr += col4 * 3; /* we read this 3 times per in copyquads */ in null_convert() 467 outptr0 += col4; in null_convert() 468 outptr1 += col4; in null_convert() 469 outptr2 += col4; in null_convert()
|
/external/icu4c/test/intltest/ |
D | apicoll.cpp | 297 RuleBasedCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local 352 col4 = new RuleBasedCollator(rule2, status); in TestRuleBasedColl() 358 UnicodeString rule4 = col4->getRules(); in TestRuleBasedColl() 361 uint8_t *clonedrule4 = col4->cloneRuleData(length4, status); in TestRuleBasedColl() 374 delete col4; in TestRuleBasedColl() 874 Collator* col4 = col1->clone(); in TestOperators() local 876 doAssert((*col1 == *col4), "Cloned collation objects not equal"); in TestOperators() 877 doAssert((*col3 != *col4), "Two different table collations compared equal"); in TestOperators() 879 doAssert((*col4 != *col5), "Two cloned collations compared equal"); in TestOperators() 915 delete col4; in TestOperators()
|
/external/icu4c/test/cintltst/ |
D | capitst.c | 467 UCollator *col1, *col2, *col3, *col4; in TestRuleBasedColl() local 515 col4=ucol_openRules(rule2, u_strlen(rule2), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status); in TestRuleBasedColl() 520 rule4= ucol_getRules(col4, &tempLength); in TestRuleBasedColl() 526 ucol_close(col4); in TestRuleBasedColl()
|