Home
last modified time | relevance | path

Searched refs:calculated (Results 1 – 25 of 471) sorted by relevance

12345678910>>...19

/third_party/node/test/cctest/
Dtest_node_postmortem_metadata.cc108 auto calculated = reinterpret_cast<uintptr_t>(obj.get()) + in TEST_F() local
110 EXPECT_EQ(expected, calculated); in TEST_F()
120 auto calculated = reinterpret_cast<uintptr_t>(*env) + in TEST_F() local
122 EXPECT_EQ(expected, calculated); in TEST_F()
131 auto calculated = reinterpret_cast<uintptr_t>(*env) + in TEST_F() local
133 EXPECT_EQ(expected, calculated); in TEST_F()
163 auto calculated = in TEST_F() local
165 EXPECT_EQ(expected, calculated); in TEST_F()
201 auto calculated = in TEST_F() local
203 EXPECT_EQ(expected, calculated); in TEST_F()
/third_party/e2fsprogs/lib/ext2fs/
Dcsum.c52 __u32 calculated; in ext2fs_mmp_csum_verify() local
57 calculated = ext2fs_mmp_csum(fs, mmp); in ext2fs_mmp_csum_verify()
59 return ext2fs_le32_to_cpu(mmp->mmp_checksum) == calculated; in ext2fs_mmp_csum_verify()
94 __u32 flag, calculated; in ext2fs_superblock_csum_verify() local
104 calculated = ext2fs_superblock_csum(fs, sb); in ext2fs_superblock_csum_verify()
106 return ext2fs_le32_to_cpu(sb->s_checksum) == calculated; in ext2fs_superblock_csum_verify()
152 __u32 calculated; in ext2fs_ext_attr_block_csum_verify() local
158 retval = ext2fs_ext_attr_block_csum(fs, inum, block, hdr, &calculated); in ext2fs_ext_attr_block_csum_verify()
162 return ext2fs_le32_to_cpu(hdr->h_checksum) == calculated; in ext2fs_ext_attr_block_csum_verify()
328 __u32 calculated; in ext2fs_dirent_csum_verify() local
[all …]
/third_party/abseil-cpp/absl/strings/
Dcharconv.cc328 void EncodeResult(const CalculatedFloat& calculated, bool negative, in EncodeResult() argument
330 if (calculated.exponent == kOverflow) { in EncodeResult()
335 } else if (calculated.mantissa == 0 || calculated.exponent == kUnderflow) { in EncodeResult()
340 *value = FloatTraits<FloatType>::Make(calculated.mantissa, in EncodeResult()
341 calculated.exponent, negative); in EncodeResult()
639 CalculatedFloat calculated = in FromCharsImpl() local
641 EncodeResult(calculated, negative, &result, &value); in FromCharsImpl()
656 CalculatedFloat calculated = in FromCharsImpl() local
658 EncodeResult(calculated, negative, &result, &value); in FromCharsImpl()
671 CalculatedFloat calculated = in FromCharsImpl() local
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dcharconv.cc328 void EncodeResult(const CalculatedFloat& calculated, bool negative, in EncodeResult() argument
330 if (calculated.exponent == kOverflow) { in EncodeResult()
335 } else if (calculated.mantissa == 0 || calculated.exponent == kUnderflow) { in EncodeResult()
340 *value = FloatTraits<FloatType>::Make(calculated.mantissa, in EncodeResult()
341 calculated.exponent, negative); in EncodeResult()
639 CalculatedFloat calculated = in FromCharsImpl() local
641 EncodeResult(calculated, negative, &result, &value); in FromCharsImpl()
656 CalculatedFloat calculated = in FromCharsImpl() local
658 EncodeResult(calculated, negative, &result, &value); in FromCharsImpl()
671 CalculatedFloat calculated = in FromCharsImpl() local
[all …]
/third_party/boost/libs/multiprecision/example/
Dnumeric_limits_snips.cpp335 T calculated = 1.0 + std::numeric_limits<T>::epsilon(); in BOOST_AUTO_TEST_CASE() local
337 BOOST_CHECK_CLOSE_FRACTION(expected, calculated, tolerance); in BOOST_AUTO_TEST_CASE()
357 cpp_dec_float_50 calculated = 2 * boost::math::constants::pi<cpp_dec_float_50>(); in BOOST_AUTO_TEST_CASE() local
359 BOOST_CHECK_CLOSE_FRACTION(expected, calculated, tolerance); in BOOST_AUTO_TEST_CASE()
371 cpp_bin_float_quad calculated = 2 * boost::math::constants::pi<cpp_bin_float_quad>(); in BOOST_AUTO_TEST_CASE() local
373 BOOST_CHECK_CLOSE_FRACTION(expected, calculated, tolerance); in BOOST_AUTO_TEST_CASE()
385 cpp_bin_float_oct calculated = 2 * boost::math::constants::pi<cpp_bin_float_oct>(); in BOOST_AUTO_TEST_CASE() local
387 BOOST_CHECK_CLOSE_FRACTION(expected, calculated, tolerance); in BOOST_AUTO_TEST_CASE()
405 cpp_bin_float_quad calculated = 2 * NaN; in BOOST_AUTO_TEST_CASE() local
407 bool b = expected == calculated; in BOOST_AUTO_TEST_CASE()
[all …]
/third_party/jsoncpp/src/lib_json/
Djson_writer.cpp197 unsigned int calculated = in utf8ToCodepoint() local
201 return calculated < 0x80 ? REPLACEMENT_CHARACTER : calculated; in utf8ToCodepoint()
208 unsigned int calculated = ((firstByte & 0x0F) << 12) | in utf8ToCodepoint() local
214 if (calculated >= 0xD800 && calculated <= 0xDFFF) in utf8ToCodepoint()
217 return calculated < 0x800 ? REPLACEMENT_CHARACTER : calculated; in utf8ToCodepoint()
224 unsigned int calculated = ((firstByte & 0x07) << 18) | in utf8ToCodepoint() local
230 return calculated < 0x10000 ? REPLACEMENT_CHARACTER : calculated; in utf8ToCodepoint()
/third_party/node/doc/guides/
Dnode-postmortem-support.md21 `src/node_postmortem_metadata.cc`, and most of them are calculated at compile
27 are calculated at compile time.
65 sure all Node.js postmortem metadata are calculated correctly.
/third_party/e2fsprogs/e2fsck/
Drecovery.c177 __u32 calculated; in jbd2_descriptor_block_csum_verify() local
186 calculated = jbd2_chksum(j, j->j_csum_seed, buf, j->j_blocksize); in jbd2_descriptor_block_csum_verify()
189 return provided == cpu_to_be32(calculated); in jbd2_descriptor_block_csum_verify()
421 __u32 calculated; in jbd2_commit_block_csum_verify() local
429 calculated = jbd2_chksum(j, j->j_csum_seed, buf, j->j_blocksize); in jbd2_commit_block_csum_verify()
432 return provided == cpu_to_be32(calculated); in jbd2_commit_block_csum_verify()
/third_party/boost/libs/geometry/doc/generated/
Darea.qbk24 …ng the surface. If subject geometry is defined in meters, then area is calculated in square meters.
41 The calculated area
82 The calculated area
Ddistance.qbk39 The calculated comparable distance
76 The calculated comparable distance
116 The calculated distance
160 The calculated distance
Dperimeter.qbk37 The calculated perimeter
79 The calculated perimeter
Dlength.qbk37 The calculated length
77 The calculated length
Dcentroid.qbk71 [[Point &] [Any type fulfilling a Point Concept ] [c] [The calculated centroid will be assigned to …
115 The calculated centroid
155 The calculated centroid
/third_party/skia/third_party/externals/egl-registry/extensions/NV/
DEGL_NV_system_time.txt69 can be calculated by dividing the returned value by the frequency returned
74 calculated from successive eglGetSystemTimeNV calls.
/third_party/EGL/extensions/NV/
DEGL_NV_system_time.txt69 can be calculated by dividing the returned value by the frequency returned
74 calculated from successive eglGetSystemTimeNV calls.
/third_party/gstreamer/gstplugins_good/gst/cutter/
DREADME36 * RMS value is calculated over the whole data buffer, so
38 * RMS value is calculated over all of the channels combined
/third_party/boost/libs/math/doc/sf/
Dbessel_ik.qbk56 There are two sets of test values: spot values calculated using
148 For K[sub v] with /v/ an integer, the result is calculated using the recurrence relation:
152 starting from K[sub 0] and K[sub 1] which are calculated
196 can be calculated by
225 K[sub [nu]](x) is then calculated from the forward
Dpowers.qbk118 calculated using NTL::RR at 1000-bit precision.
168 calculated using NTL::RR at 1000-bit precision.
210 calculated using NTL::RR at 1000-bit precision.
255 calculated using NTL::RR at 1000-bit precision.
299 calculated using NTL::RR at 1000-bit precision.
Dellint_legendre.qbk93 The tests use a mixture of spot test values calculated using the online
194 The tests use a mixture of spot test values calculated using the online
290 The tests use a mixture of spot test values calculated using the online
421 The tests use a mixture of spot test values calculated using
422 values calculated at __WolframAlpha, and random test data generated using
497 The tests use a mixture of spot test values calculated using
498 values calculated at __WolframAlpha, and random test data generated using
571 The tests use a mixture of spot test values calculated using
572 values calculated at __WolframAlpha, and random test data generated using
Dbessel_prime.qbk59 There are two sets of test values: spot values calculated using
88 In the general case, the derivatives are calculated using the relations:
Dlaguerre.qbk87 [[n][The degree /n/ of the last polynomial calculated.]]
115 [[n][The degree of the last polynomial calculated.]]
140 A mixture of spot tests of values calculated using functions.wolfram.com,
/third_party/boost/libs/math/doc/distributions/
Dhypergeometric.qbk143 The PDF can be calculated directly using the formula:
163 positive integer or zero, which can be calculated via:
183 or unnecessary-underflow once the last sub-product has been calculated.
201 The CDF and its complement is calculated by directly summing the PDF's.
212 The quantile is calculated in a similar manner to the CDF: we first guess
218 calculated via:
/third_party/vk-gl-cts/external/openglcts/docs/specs/
DCTS_ARB_shader_ballot.txt79 Call readFirstInvocationARB with calculated color as a default value
85 calculated color as a default value passed as first parameter and
/third_party/boost/libs/math/doc/background/
Derror.qbk4 calculated from:
33 the precision of the calculated value, and then comparing to the actual value:
34 in this case the calculated error may be some fraction of /units in the last place/.
/third_party/json/benchmarks/thirdparty/benchmark/docs/
Dtools.md37 As you can note, the values in `Time` and `CPU` columns are calculated as `(new - old) / |old|`.
73 As you can note, the values in `Time` and `CPU` columns are calculated as `(new - old) / |old|`.
142 As you can note, the values in `Time` and `CPU` columns are calculated as `(new - old) / |old|`.
192 As you can note, the values in `Time` and `CPU` columns are calculated as `(new - old) / |old|`.
242 As you can note, the values in `Time` and `CPU` columns are calculated as `(new - old) / |old|`.

12345678910>>...19