/kernel/linux/linux-6.6/drivers/gpu/drm/ttm/ |
H A D | ttm_resource.c | 320 const struct ttm_place *places, in ttm_resource_places_compat() 331 const struct ttm_place *heap = &places[i]; in ttm_resource_places_compat() 319 ttm_resource_places_compat(struct ttm_resource *res, const struct ttm_place *places, unsigned num_placement) ttm_resource_places_compat() argument
|
/third_party/protobuf/python/ |
H A D | mox.py | 835 def __init__(self, float_value, places=7): 840 places: The number of decimal places to round to. 844 self._places = places
|
/third_party/python/Lib/ |
H A D | _pydecimal.py | 1869 decimal places using the rounding mode for the current 2656 def _round(self, places, rounding): 2666 if places <= 0: 2670 ans = self._rescale(self.adjusted()+1-places, rounding) 2676 ans = ans._rescale(ans.adjusted()+1-places, rounding) 2764 # p places (or fewer in the case of underflow) will round 3237 places = p - self._ln_exp_bound() + 2 # at least p+3 places 3239 coeff = _dlog(c, e, places) 3243 places [all...] |
/third_party/toybox/toys/pending/ |
H A D | bc.c | 1230 void bc_num_truncate(BcNum *n, size_t places) { in bc_num_truncate() argument 1232 if (!places) return; in bc_num_truncate() 1234 n->rdx -= places; in bc_num_truncate() 1237 n->len -= places; in bc_num_truncate() 1238 memmove(n->num, n->num + places, n->len); in bc_num_truncate() 1243 static void bc_num_extend(BcNum *n, size_t places) { in bc_num_extend() argument 1245 size_t len = n->len + places; in bc_num_extend() 1247 if (!places) return; in bc_num_extend() 1251 memmove(n->num + places, n->num, n->len); in bc_num_extend() 1252 memset(n->num, 0, places); in bc_num_extend() 1286 bc_num_shift(BcNum *n, size_t places) bc_num_shift() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Utility.java | 579 // This part of the loop places the next byte into the local in RLEStringToByteArray() 1037 static public String hex(long i, int places) { in hex() argument 1044 if (result.length() < places) { in hex() 1045 result = "0000000000000000".substring(result.length(),places) + result; in hex()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Utility.java | 582 // This part of the loop places the next byte into the local in RLEStringToByteArray() 972 static public String hex(long i, int places) { in hex() argument 979 if (result.length() < places) { in hex() 980 result = "0000000000000000".substring(result.length(),places) + result; in hex()
|
/third_party/benchmark/tools/gbench/ |
H A D | report.py | 1192 unittest_instance.assertAlmostEqual(m1['time'], m2['time'], places=4) 1193 unittest_instance.assertAlmostEqual(m1['cpu'], m2['cpu'], places=4)
|
/third_party/python/Lib/test/ |
H A D | test_cmath.py | 154 self.assertAlmostEqual(cmath.pi, pi_expected, places=9, 156 self.assertAlmostEqual(cmath.e, e_expected, places=9, 612 # test complex values that are close to within 12 decimal places 623 # test values near zero that are near to within three decimal places
|
H A D | test_random.py | 729 self.assertAlmostEqual(a,e,places=14) 1051 self.assertAlmostEqual(s1/N, mu, places=2, 1053 self.assertAlmostEqual(s2/(N-1), sigmasqrd, places=2,
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/ |
H A D | TransliteratorInputMethod.java | 607 * event both places.
|
/third_party/python/Doc/ |
H A D | make.bat | 54 rem Search for HHC in likely places
|
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | bindec.S | 54 | of decimal places needed to insure LEN integer digits 330 | of decimal places needed to insure LEN integer digits 765 roxrl #1,%d3 |the number of places 794 | And are moved into their proper places in FP_SCR1. If digit e4 855 roxrl #1,%d3 |the number of places
|
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | bindec.S | 54 | of decimal places needed to insure LEN integer digits 330 | of decimal places needed to insure LEN integer digits 765 roxrl #1,%d3 |the number of places 794 | And are moved into their proper places in FP_SCR1. If digit e4 855 roxrl #1,%d3 |the number of places
|
/kernel/linux/linux-5.10/drivers/gpu/drm/ttm/ |
H A D | ttm_bo.c | 1044 static bool ttm_bo_places_compat(const struct ttm_place *places, in ttm_bo_places_compat() argument 1052 const struct ttm_place *heap = &places[i]; in ttm_bo_places_compat()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_barycentric/ |
H A D | vktFragmentShadingBarycentricTests.cpp | 610 const uint8_t places = static_cast<uint8_t>(components / 4); in verify() local 615 s << "Expected mask:" << std::setfill('0') << std::hex << std::setw(places) << expected << std::endl; in verify() 621 s << std::setw(places) << retrieved[n] << ' '; in verify()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_xmp.cpp | 287 // Round to fractional four decimal places. in EncodeGPSCoordinate() 1439 uint32 places, in Set_real64() 1448 sprintf (s, "+%0.*f", (unsigned) places, (double) x); in Set_real64() 1452 sprintf (s, "%0.*f", (unsigned) places, (double) x); in Set_real64() 1436 Set_real64(const char *ns, const char *path, real64 x, uint32 places, bool trim, bool usePlus) Set_real64() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_barycentric/ |
H A D | vktFragmentShadingBarycentricTests.cpp | 615 const uint8_t places = static_cast<uint8_t>(components / 4); in verify() local 620 s << "Expected mask:" << std::setfill('0') << std::hex << std::setw(places) << expected << std::endl; in verify() 626 s << std::setw(places) << retrieved[n] << ' '; in verify()
|
/third_party/gn/src/gn/ |
H A D | variables.cc | 1027 # specific set, while avoid duplicating the settings in two places.
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 1735 Normally there are three places that prepended text could come from.
|
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 1735 Normally there are three places that prepended text could come from.
|
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/src/ |
H A D | fplsp.S | 10843 bfffo %d0{&0:&32}, %d2 # how many places to shift? 10864 bfffo %d1{&0:&32}, %d2 # how many places to shift?
|
/kernel/linux/linux-6.6/arch/m68k/ifpsp060/src/ |
H A D | fplsp.S | 10843 bfffo %d0{&0:&32}, %d2 # how many places to shift? 10864 bfffo %d1{&0:&32}, %d2 # how many places to shift?
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 1108 % for display in the outlines, and in other places. Thus, we have to
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | [all...] |