/third_party/mesa3d/src/intel/vulkan/ |
D | anv_formats.c | 62 #define fmt1(__vk_fmt, __hw_fmt) \ macro 149 fmt1(VK_FORMAT_R4G4B4A4_UNORM_PACK16, ISL_FORMAT_A4B4G4R4_UNORM), 151 fmt1(VK_FORMAT_R5G6B5_UNORM_PACK16, ISL_FORMAT_B5G6R5_UNORM), 153 fmt1(VK_FORMAT_R5G5B5A1_UNORM_PACK16, ISL_FORMAT_A1B5G5R5_UNORM), 155 fmt1(VK_FORMAT_A1R5G5B5_UNORM_PACK16, ISL_FORMAT_B5G5R5A1_UNORM), 156 fmt1(VK_FORMAT_R8_UNORM, ISL_FORMAT_R8_UNORM), 157 fmt1(VK_FORMAT_R8_SNORM, ISL_FORMAT_R8_SNORM), 158 fmt1(VK_FORMAT_R8_USCALED, ISL_FORMAT_R8_USCALED), 159 fmt1(VK_FORMAT_R8_SSCALED, ISL_FORMAT_R8_SSCALED), 160 fmt1(VK_FORMAT_R8_UINT, ISL_FORMAT_R8_UINT), [all …]
|
/third_party/ffmpeg/libavformat/ |
D | format.c | 134 const AVInputFormat *fmt1 = NULL; in av_probe_input_format3() local 162 while ((fmt1 = av_demuxer_iterate(&i))) { in av_probe_input_format3() 163 if (fmt1->flags & AVFMT_EXPERIMENTAL) in av_probe_input_format3() 165 if (!is_opened == !(fmt1->flags & AVFMT_NOFILE) && strcmp(fmt1->name, "image2")) in av_probe_input_format3() 168 if (fmt1->read_probe) { in av_probe_input_format3() 169 score = fmt1->read_probe(&lpd); in av_probe_input_format3() 171 … av_log(NULL, AV_LOG_TRACE, "Probing %s score:%d size:%d\n", fmt1->name, score, lpd.buf_size); in av_probe_input_format3() 172 if (fmt1->extensions && av_match_ext(lpd.filename, fmt1->extensions)) { in av_probe_input_format3() 186 } else if (fmt1->extensions) { in av_probe_input_format3() 187 if (av_match_ext(lpd.filename, fmt1->extensions)) in av_probe_input_format3() [all …]
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/ |
D | SingleSubst.java | 9 private final HeaderFmt1 fmt1; field in SingleSubst 19 fmt1 = new HeaderFmt1(data, headerSize(), dataIsCanonical); in SingleSubst() 23 fmt1 = null; in SingleSubst() 37 return fmt1.coverage; in coverage() 47 return fmt1; in fmt1Table() 78 fmt1Builder = new HeaderFmt1.Builder(ligSubst.fmt1); in Builder()
|
/third_party/ffmpeg/libavcodec/ |
D | v4l2_context.c | 86 struct v4l2_format *fmt1 = &ctx->format; in v4l2_resolution_changed() local 88 fmt1->fmt.pix_mp.width != fmt2->fmt.pix_mp.width || in v4l2_resolution_changed() 89 fmt1->fmt.pix_mp.height != fmt2->fmt.pix_mp.height in v4l2_resolution_changed() 91 fmt1->fmt.pix.width != fmt2->fmt.pix.width || in v4l2_resolution_changed() 92 fmt1->fmt.pix.height != fmt2->fmt.pix.height; in v4l2_resolution_changed() 97 v4l2_get_width(fmt1), v4l2_get_height(fmt1), in v4l2_resolution_changed()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | BigNumberFormatTest.java | 39 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() local 42 expect(fmt1, n, "1.234E3"); in TestExponent() 44 expect(fmt1, "1.234E3", n); in TestExponent() 45 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent()
|
D | ListFormatterTest.java | 281 ListFormatter fmt1 = ListFormatter.getInstance(loc, type, width); in TestCreateStyled() local 292 String result = fmt1.format(Arrays.asList(inputs)); in TestCreateStyled()
|
D | NumberRegressionTests.java | 1032 DecimalFormat fmt1 = new DecimalFormat(pattern, symbols); in Test4122840() local 1034 String result1 = fmt1.format(1.111); in Test4122840() 1063 fmt2.setMaximumFractionDigits(fmt1.getMinimumFractionDigits()); in Test4122840() 1064 fmt2.setMinimumFractionDigits(fmt1.getMaximumFractionDigits()); in Test4122840() 1065 fmt2.setRoundingIncrement(fmt1.getRoundingIncrement()); in Test4122840()
|
D | RbnfTest.java | 119 RuleBasedNumberFormat fmt1 = (RuleBasedNumberFormat)fmt0.clone(); in TestCoverage() local 124 if (!fmt0.equals(fmt1)) { in TestCoverage()
|
D | NumberFormatTest.java | 1193 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() local 1196 expect2(fmt1, n, "1.234E3"); in TestExponent() 1198 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent() 3808 DecimalFormat fmt1 = new DecimalFormat("#0"); in TestFormatToCharacterIteratorThread() local 3809 DecimalFormat fmt2 = (DecimalFormat)fmt1.clone(); in TestFormatToCharacterIteratorThread() 3814 Thread t1 = new Thread(new FormatCharItrTestThread(fmt1, 1, res1)); in TestFormatToCharacterIteratorThread() 5761 NumberFormat fmt1 = NumberFormat.getCurrencyInstance(loc1); 5762 fmt1.setCurrency(cur); 5763 String actualSetCurrency = fmt1.format(amount);
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | BigNumberFormatTest.java | 36 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() local 39 expect(fmt1, n, "1.234E3"); in TestExponent() 41 expect(fmt1, "1.234E3", n); in TestExponent() 42 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent()
|
D | ListFormatterTest.java | 357 ListFormatter fmt1 = ListFormatter.getInstance(loc, type, width); in TestCreateStyled() local 368 String result = fmt1.format(Arrays.asList(inputs)); in TestCreateStyled()
|
D | NumberRegressionTests.java | 1029 DecimalFormat fmt1 = new DecimalFormat(pattern, symbols); in Test4122840() local 1031 String result1 = fmt1.format(1.111); in Test4122840() 1060 fmt2.setMaximumFractionDigits(fmt1.getMinimumFractionDigits()); in Test4122840() 1061 fmt2.setMinimumFractionDigits(fmt1.getMaximumFractionDigits()); in Test4122840() 1062 fmt2.setRoundingIncrement(fmt1.getRoundingIncrement()); in Test4122840()
|
D | RbnfTest.java | 116 RuleBasedNumberFormat fmt1 = (RuleBasedNumberFormat)fmt0.clone(); in TestCoverage() local 121 if (!fmt0.equals(fmt1)) { in TestCoverage()
|
D | NumberFormatTest.java | 1190 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() local 1193 expect2(fmt1, n, "1.234E3"); in TestExponent() 1195 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent() 3805 DecimalFormat fmt1 = new DecimalFormat("#0"); in TestFormatToCharacterIteratorThread() local 3806 DecimalFormat fmt2 = (DecimalFormat)fmt1.clone(); in TestFormatToCharacterIteratorThread() 3811 Thread t1 = new Thread(new FormatCharItrTestThread(fmt1, 1, res1)); in TestFormatToCharacterIteratorThread() 5761 NumberFormat fmt1 = NumberFormat.getCurrencyInstance(loc1); 5762 fmt1.setCurrency(cur); 5763 String actualSetCurrency = fmt1.format(amount);
|
/third_party/icu/icu4c/source/test/intltest/ |
D | tchcfmt.cpp | 476 ChoiceFormat fmt1(limits, closures, fmts, 6); in TestClosures() local 489 fmt1.toPattern(str); in TestClosures() 498 if (fmt1 != fmt2) { in TestClosures() 544 ChoiceFormat* FMT[] = { &fmt1, &fmt2 }; in TestClosures()
|
D | tmsgfmt.cpp | 1420 MessageFormat* fmt1 = new MessageFormat( formatStr, status ); in _testCopyConstructor2() local 1425 if (fmt1 == NULL) { in _testCopyConstructor2() 1430 fmt2 = new MessageFormat( *fmt1 ); in _testCopyConstructor2() 1431 result = fmt1->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2() 1438 fmt3 = fmt1->clone(); in _testCopyConstructor2() 1450 result = fmt1->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2() 1456 delete fmt1; in _testCopyConstructor2()
|
D | tzregts.cpp | 962 SimpleDateFormat fmt1(UnicodeString(u"z"), status); in Test4176686() local 967 fmt1.setTimeZone(z1); // Format uses standard zone in Test4176686() 997 "DateFormat.format(std)/std zone", fmt1.format(std, i), "GMT+1:30", in Test4176686() 998 "DateFormat.format(dst)/std zone", fmt1.format(dst, j), "GMT+1:30", in Test4176686()
|
D | dtfmttst.cpp | 3683 SimpleDateFormat fmt1(UnicodeString(u"y-M-d"), Locale("ar"), status); in Test6338() local 3688 str1 = fmt1.format(dt1, str1); in Test6338() 3691 UDate dt11 = fmt1.parse(str1, status); in Test6338() 3695 str11 = fmt1.format(dt11, str11); in Test6338() 3989 …SimpleDateFormat *fmt1 = new SimpleDateFormat(UnicodeString("GGG yyyy-MM-dd'T'HH:mm:ss'Z"), status… in TestISOEra() local 3992 if (fmt1 != NULL) { in TestISOEra() 3993 delete fmt1; in TestISOEra() 4002 UDate dt1 = fmt1->parse(in, status); in TestISOEra() 4007 out = fmt1->format(dt1, out); in TestISOEra() 4017 delete fmt1; in TestISOEra()
|
D | numrgts.cpp | 1699 DecimalFormat *fmt1 = new DecimalFormat(pattern, *symbols, status); in Test4122840() local 1704 result1 = fmt1->format(1.111, result1, pos); in Test4122840() 1739 const UChar *currency = fmt1->getCurrency(); in Test4122840() 1765 delete fmt1; in Test4122840()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-cff1-table.hh | 213 …Encoding1 *fmt1 = c->allocate_size<Encoding1> (Encoding1::min_size + Encoding1_Range::static_size … in serialize() local 214 if (unlikely (!fmt1)) return_trace (false); in serialize() 215 fmt1->nRanges () = code_ranges.length; in serialize() 220 fmt1->ranges[i].first = code_ranges[i].code; in serialize() 221 fmt1->ranges[i].nLeft = code_ranges[i].glyph; in serialize() 481 …Charset1 *fmt1 = c->allocate_size<Charset1> (Charset1::min_size + Charset1_Range::static_size * si… in serialize() local 482 if (unlikely (!fmt1)) return_trace (false); in serialize() 487 fmt1->ranges[i].first = sid_ranges[i].code; in serialize() 488 fmt1->ranges[i].nLeft = sid_ranges[i].glyph; in serialize()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcBlendEquationAdvancedTests.cpp | 519 FBOSentry(const glw::Functions& gl, int width, int height, glw::GLenum fmt0, glw::GLenum fmt1); 523 void init(int width, int height, glw::GLenum fmt0, glw::GLenum fmt1); 534 …try(const glw::Functions& gl, int width, int height, glw::GLenum fmt0, glw::GLenum fmt1) : m_gl(gl) in FBOSentry() argument 536 init(width, height, fmt0, fmt1); in FBOSentry() 545 void FBOSentry::init(int width, int height, glw::GLenum fmt0, glw::GLenum fmt1) in init() argument 555 if (fmt1 != GL_NONE) in init() 558 m_gl.renderbufferStorage(GL_RENDERBUFFER, fmt1, width, height); in init()
|
/third_party/python/Modules/_decimal/tests/ |
D | deccheck.py | 1041 fmt1 = rand_format(chr(random.randrange(0, 128)), 'EeGgn') 1043 for fmt in (fmt1, fmt2): 1054 fmt1 = rand_format(chr(random.randrange(0, 128)), 'Ff%') 1056 for fmt in (fmt1, fmt2):
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/ |
D | TimeZoneRegressionTest.java | 865 DateFormat fmt1 = new SimpleDateFormat("z"); in Test4176686() local 866 fmt1.setTimeZone(z1); // Format uses standard zone in Test4176686() 894 "DateFormat.format(std)/std zone", fmt1.format(std), "GMT+1:30", in Test4176686() 895 "DateFormat.format(dst)/std zone", fmt1.format(dst), "GMT+1:30", in Test4176686()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
D | TimeZoneRegressionTest.java | 862 DateFormat fmt1 = new SimpleDateFormat("z"); in Test4176686() local 863 fmt1.setTimeZone(z1); // Format uses standard zone in Test4176686() 891 "DateFormat.format(std)/std zone", fmt1.format(std), "GMT+1:30", in Test4176686() 892 "DateFormat.format(dst)/std zone", fmt1.format(dst), "GMT+1:30", in Test4176686()
|
/third_party/python/Modules/ |
D | _testbuffer.c | 2470 fmtcmp(const char *fmt1, const char *fmt2) in fmtcmp() argument 2472 if (fmt1 == NULL) { in fmtcmp() 2476 return fmt1 == NULL || strcmp(fmt1, "B") == 0; in fmtcmp() 2478 return strcmp(fmt1, fmt2) == 0; in fmtcmp()
|