/third_party/flutter/skia/third_party/externals/icu/cast/ |
D | cast-removed-resources.txt | 2 postalCodeData.res 3 currencyNumericCodes.res 4 windowsZones.res 6 coll/am.res 7 coll/ar.res 8 coll/bg.res 9 coll/bn.res 10 coll/ca.res 11 coll/cs.res 12 coll/de_AT.res [all …]
|
/third_party/flutter/skia/third_party/externals/icu/flutter/ |
D | flutter-removed-resources.txt | 11 af.res 12 ak.res 13 am.res 14 an.res 15 ar.res 16 ar_001.res 17 ar_AE.res 18 ar_BH.res 19 ar_DJ.res 20 ar_DZ.res [all …]
|
/third_party/glib/glib/tests/ |
D | test-printf.c | 36 gint res; in test_retval_and_trunc() local 38 res = g_snprintf (buf, 0, "abc"); in test_retval_and_trunc() 39 g_assert_cmpint (res, ==, 3); in test_retval_and_trunc() 41 res = g_snprintf (NULL, 0, "abc"); in test_retval_and_trunc() 42 g_assert_cmpint (res, ==, 3); in test_retval_and_trunc() 44 res = g_snprintf (buf, 5, "abc"); in test_retval_and_trunc() 45 g_assert_cmpint (res, ==, 3); in test_retval_and_trunc() 47 res = g_snprintf (buf, 1, "abc"); in test_retval_and_trunc() 48 g_assert_cmpint (res, ==, 3); in test_retval_and_trunc() 52 res = g_snprintf (buf, 2, "abc"); in test_retval_and_trunc() [all …]
|
/third_party/jerryscript/tests/jerry/ |
D | string-prototype-split.js | 15 var res = "".split(); variable 16 assert (res[0] === ""); 18 res = "foo".split(); 19 assert (res[0] === "foo"); 22 res = str.split(""); 24 assert (res.length === 17); 25 for (var i = 0; i < res.length; i++) 27 assert (res[i] === str[i]); 30 res = str.split("", "foo"); 31 assert (res.length === 0); [all …]
|
D | string-prototype-slice.js | 16 var res; variable 18 res = str.slice(); 19 assert (res === "universe"); 21 res = str.slice(1, 6); 22 assert (res === "niver"); 24 res = str.slice("a", "-4"); 25 assert (res === "univ"); 27 res = str.slice(-5); 28 assert (res === "verse"); 30 res = str.slice(-12, undefined); [all …]
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | audiopanorama.c | 324 gint16 res[4]; in GST_START_TEST() local 327 do_panorama (in, sizeof (in), res, sizeof (res)); in GST_START_TEST() 330 GST_INFO ("real %+5d %+5d %+5d %+5d", res[0], res[1], res[2], res[3]); in GST_START_TEST() 331 fail_unless (memcmp (res, out, sizeof (res)) == 0); in GST_START_TEST() 342 gint16 res[4]; in GST_START_TEST() local 345 do_panorama (in, sizeof (in), res, sizeof (res)); in GST_START_TEST() 348 GST_INFO ("real %+5d %+5d %+5d %+5d", res[0], res[1], res[2], res[3]); in GST_START_TEST() 349 fail_unless (memcmp (res, out, sizeof (res)) == 0); in GST_START_TEST() 360 gint16 res[4]; in GST_START_TEST() local 363 do_panorama (in, sizeof (in), res, sizeof (res)); in GST_START_TEST() [all …]
|
/third_party/uboot/u-boot-2020.01/drivers/bios_emulator/x86emu/ |
D | prim_ops.c | 132 static void set_parity_flag(u32 res) in set_parity_flag() argument 134 CONDITIONAL_SET_FLAG(PARITY(res & 0xFF), F_PF); in set_parity_flag() 137 static void set_szp_flags_8(u8 res) in set_szp_flags_8() argument 139 CONDITIONAL_SET_FLAG(res & 0x80, F_SF); in set_szp_flags_8() 140 CONDITIONAL_SET_FLAG(res == 0, F_ZF); in set_szp_flags_8() 141 set_parity_flag(res); in set_szp_flags_8() 144 static void set_szp_flags_16(u16 res) in set_szp_flags_16() argument 146 CONDITIONAL_SET_FLAG(res & 0x8000, F_SF); in set_szp_flags_16() 147 CONDITIONAL_SET_FLAG(res == 0, F_ZF); in set_szp_flags_16() 148 set_parity_flag(res); in set_szp_flags_16() [all …]
|
/third_party/uboot/u-boot-2020.01/board/gdsys/common/ |
D | phy.c | 121 int res; in process_setupcmd() local 133 res = miiphy_read(bus, addr, reg, &orig_data); in process_setupcmd() 134 if (res) in process_setupcmd() 142 res = miiphy_write(bus, addr, reg, data); in process_setupcmd() 145 res = miiphy_read(bus, addr, reg, &orig_data); in process_setupcmd() 146 if (res) in process_setupcmd() 149 res = -1; in process_setupcmd() 151 orig_data, res ? "FAIL" : "PASS"); in process_setupcmd() 154 res = -1; in process_setupcmd() 156 while ((res != 0) && (get_timer(start) < timeout)) { in process_setupcmd() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/ |
D | pesparse.c | 48 mpegts_parse_pes_header (const guint8 * data, gsize length, PESHeader * res) in mpegts_parse_pes_header() argument 56 g_assert (res != NULL); in mpegts_parse_pes_header() 69 memset (res, 0, sizeof (PESHeader)); in mpegts_parse_pes_header() 70 res->PTS = -1; in mpegts_parse_pes_header() 71 res->DTS = -1; in mpegts_parse_pes_header() 72 res->ESCR = -1; in mpegts_parse_pes_header() 74 res->stream_id = val32 & 0x000000ff; in mpegts_parse_pes_header() 76 res->packet_length = GST_READ_UINT16_BE (data); in mpegts_parse_pes_header() 77 if (res->packet_length) in mpegts_parse_pes_header() 78 res->packet_length += 6; in mpegts_parse_pes_header() [all …]
|
/third_party/boost/boost/stacktrace/detail/ |
D | addr2line_impls.hpp | 115 std::string res; in addr2line() local 119 res = loc.name(); in addr2line() 121 res.resize(16); in addr2line() 122 int rlin_size = ::readlink("/proc/self/exe", &res[0], res.size() - 1); in addr2line() 123 while (rlin_size == static_cast<int>(res.size() - 1)) { in addr2line() 124 res.resize(res.size() * 4); in addr2line() 125 rlin_size = ::readlink("/proc/self/exe", &res[0], res.size() - 1); in addr2line() 128 res.clear(); in addr2line() 129 return res; in addr2line() 131 res.resize(rlin_size); in addr2line() [all …]
|
/third_party/mingw-w64/mingw-w64-crt/math/x86/ |
D | fastmath.h | 21 double res; in __fast_sqrt() local 22 asm __volatile__ ("fsqrt" : "=t" (res) : "0" (x)); in __fast_sqrt() 23 return res; in __fast_sqrt() 28 long double res; in __fast_sqrtl() local 29 asm __volatile__ ("fsqrt" : "=t" (res) : "0" (x)); in __fast_sqrtl() 30 return res; in __fast_sqrtl() 35 float res; in __fast_sqrtf() local 36 asm __volatile__ ("fsqrt" : "=t" (res) : "0" (x)); in __fast_sqrtf() 37 return res; in __fast_sqrtf() 43 double res; in __fast_log() local [all …]
|
/third_party/boost/libs/test/test/writing-test-ts/ |
D | assertion-construction-test.cpp | 243 predicate_result const& res = EXPR_TYPE( 1 ).evaluate(); in BOOST_AUTO_TEST_CASE() local 244 BOOST_TEST( res ); in BOOST_AUTO_TEST_CASE() 245 BOOST_TEST( res.message().is_empty() ); in BOOST_AUTO_TEST_CASE() 249 predicate_result const& res = EXPR_TYPE( 0 ).evaluate(); in BOOST_AUTO_TEST_CASE() local 250 BOOST_TEST( !res ); in BOOST_AUTO_TEST_CASE() 251 BOOST_TEST( res.message() == " ['0' evaluates to false]" ); in BOOST_AUTO_TEST_CASE() 255 predicate_result const& res = EXPR_TYPE( true ).evaluate(); in BOOST_AUTO_TEST_CASE() local 256 BOOST_TEST( res ); in BOOST_AUTO_TEST_CASE() 257 BOOST_TEST( res.message().is_empty() ); in BOOST_AUTO_TEST_CASE() 261 predicate_result const& res = EXPR_TYPE( 1.5 ).evaluate(); in BOOST_AUTO_TEST_CASE() local [all …]
|
/third_party/boost/boost/vmd/detail/ |
D | sequence_elem.hpp | 175 #define BOOST_VMD_DETAIL_SEQUENCE_ELEM_GET_RESULT_TYPE_TUPLE(res) \ argument 179 BOOST_PP_TUPLE_ELEM(0,res) \ 183 #define BOOST_VMD_DETAIL_SEQUENCE_ELEM_GET_RESULT_TYPE_ONLY(res) \ argument 184 BOOST_PP_TUPLE_ELEM(0,res) \ 187 #define BOOST_VMD_DETAIL_SEQUENCE_ELEM_GET_RESULT_DATA_TUPLE(res) \ argument 191 BOOST_PP_TUPLE_ELEM(0,res) \ 195 #define BOOST_VMD_DETAIL_SEQUENCE_ELEM_GET_RESULT_DATA_ONLY(res) \ argument 196 BOOST_PP_TUPLE_ELEM(1,res) \ 205 #define BOOST_VMD_DETAIL_SEQUENCE_ELEM_GET_RESULT_DATA(res,nm) \ argument 212 (res) \ [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/frag/ |
D | fp16.desktop.invalid.frag | 58 f16vec4 res; 59 res = radians(v4); 60 res = degrees(v4); 61 res = sin(v4); 62 res = cos(v4); 63 res = tan(v4); 64 res = asin(v4); 65 res = atan(v4, v3.xyzz); 66 res = atan(v4); 67 res = sinh(v4); [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-no-opt/frag/ |
D | fp16.invalid.desktop.frag | 58 f16vec4 res; 59 res = radians(v4); 60 res = degrees(v4); 61 res = sin(v4); 62 res = cos(v4); 63 res = tan(v4); 64 res = asin(v4); 65 res = atan(v4, v3.xyzz); 66 res = atan(v4); 67 res = sinh(v4); [all …]
|
/third_party/boost/libs/date_time/test/gregorian/ |
D | testgreg_wstream.cpp | 20 std::wstring res, ws; in main() 31 res = L"2003-Aug-21"; in main() 32 check("date operator<<", wss.str() == res); in main() 35 check("date to_simple_string", ws == res); in main() 37 res = L"20030821"; in main() 38 check("date to_iso_string", ws == res); in main() 40 res = L"2003-08-21"; in main() 41 check("date to_iso_extended_string", ws == res); in main() 43 check("date to_sql_string", ws == res); in main() 47 res = L"2003-Aug-21"; in main() [all …]
|
/third_party/lwip/test/unit/mdns/ |
D | test_mdns.c | 374 err_t res; in START_TEST() local 378 res = mdns_domain_add_label(&domain, "multi", 5); in START_TEST() 379 fail_unless(res == ERR_OK); in START_TEST() 380 res = mdns_domain_add_label(&domain, "cast", 4); in START_TEST() 381 fail_unless(res == ERR_OK); in START_TEST() 382 res = mdns_domain_add_label(&domain, NULL, 0); in START_TEST() 383 fail_unless(res == ERR_OK); in START_TEST() 393 err_t res; in START_TEST() local 397 res = mdns_domain_add_label(&domain, "multi", 5); in START_TEST() 398 fail_unless(res == ERR_OK); in START_TEST() [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl-no-opt/frag/ |
D | fp16.invalid.desktop.frag | 61 f16vec4 res; 62 res = radians(v4); 63 res = degrees(v4); 64 res = sin(v4); 65 res = cos(v4); 66 res = tan(v4); 67 res = asin(v4); 68 res = atan(v4, v3.xyzz); 69 res = atan(v4); 70 res = sinh(v4); [all …]
|
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/ |
D | assembler_test.js | 48 let res = a.assemble(); variable 49 assert.equal(res[0], 0x07230203); 62 let res = a.assemble(); 64 assert.lengthOf(res, 11); 65 assert.equal(res[5], (6 /* word count */ << 16) | 16 /* opcode */); 66 assert.equal(res[6], 1 /* %main */); 67 assert.equal(res[7], 17 /* LocalSize */); 68 assert.equal(res[8], 2); 69 assert.equal(res[9], 3); 70 assert.equal(res[10], 4); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/ |
D | assembler_test.js | 48 let res = a.assemble(); variable 49 assert.equal(res[0], 0x07230203); 62 let res = a.assemble(); 64 assert.lengthOf(res, 11); 65 assert.equal(res[5], (6 /* word count */ << 16) | 16 /* opcode */); 66 assert.equal(res[6], 1 /* %main */); 67 assert.equal(res[7], 17 /* LocalSize */); 68 assert.equal(res[8], 2); 69 assert.equal(res[9], 3); 70 assert.equal(res[10], 4); [all …]
|
/third_party/iowow/src/utils/tests/ |
D | iwutils_test1.c | 28 IWXSTR *res = 0; in test_iwu_replace_into() local 31 iwrc rc = iwu_replace(&res, data, strlen(data), keys, 5, _replace_mapper1, 0); in test_iwu_replace_into() 33 CU_ASSERT_PTR_NOT_NULL_FATAL(res); in test_iwu_replace_into() 34 fprintf(stderr, "\n%s", iwxstr_ptr(res)); in test_iwu_replace_into() 35 CU_ASSERT_STRING_EQUAL(iwxstr_ptr(res), "What I said about my Mother?!!"); in test_iwu_replace_into() 36 iwxstr_destroy(res); in test_iwu_replace_into() 43 char **res = iwpool_split_string(pool, " foo , bar:baz,,z,", ",:", true); in test_iwpool_split_string() local 44 CU_ASSERT_PTR_NOT_NULL_FATAL(res); in test_iwpool_split_string() 46 for (; res[i]; ++i) { in test_iwpool_split_string() 49 CU_ASSERT_STRING_EQUAL(res[i], "foo"); in test_iwpool_split_string() [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/comp/ |
D | glsl.std450.comp | 6 float res; 27 res = round(f32.x); 28 res = roundEven(f32.x); 29 res = trunc(f32.x); 30 res = abs(f32.x); 32 res = sign(f32.x); 34 res = floor(f32.x); 35 res = ceil(f32.x); 36 res = fract(f32.x); 37 res = radians(f32.x); [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl-no-opt/comp/ |
D | glsl.std450.fxconly.comp | 6 float res; 27 res = round(f32.x); 28 //res = roundEven(f32.x); 29 res = trunc(f32.x); 30 res = abs(f32.x); 32 res = sign(f32.x); 34 res = floor(f32.x); 35 res = ceil(f32.x); 36 res = fract(f32.x); 37 res = radians(f32.x); [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-no-opt/comp/ |
D | glsl.std450.comp | 6 float res; 27 res = round(f32.x); 28 res = roundEven(f32.x); 29 res = trunc(f32.x); 30 res = abs(f32.x); 32 res = sign(f32.x); 34 res = floor(f32.x); 35 res = ceil(f32.x); 36 res = fract(f32.x); 37 res = radians(f32.x); [all …]
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-no-opt/frag/ |
D | fp16.invalid.desktop.frag | 65 f16vec4 res = radians(v4); 66 res = degrees(v4); 67 res = sin(v4); 68 res = cos(v4); 69 res = tan(v4); 70 res = asin(v4); 71 res = atan(v4, v3.xyzz); 72 res = atan(v4); 73 res = sinh(v4); 74 res = cosh(v4); [all …]
|