| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | wide-int.h | 438 <int_traits <T2>::precision> > result_type; 459 <int_traits <T1>::precision> > result_type; 469 STATIC_ASSERT (int_traits <T1>::precision == int_traits <T2>::precision); 473 <int_traits <T1>::precision> > result_type; 653 unsigned int precision; 666 : val (val_in), len (len_in), precision (precision_in) 679 return precision; 789 unsigned int precision) 790 : storage (x, precision) 798 generic_wide_int <storage>::to_shwi (unsigned int precision) const [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | wide-int.h | 438 <int_traits <T2>::precision> > result_type; 459 <int_traits <T1>::precision> > result_type; 469 STATIC_ASSERT (int_traits <T1>::precision == int_traits <T2>::precision); 473 <int_traits <T1>::precision> > result_type; 653 unsigned int precision; 666 : val (val_in), len (len_in), precision (precision_in) 679 return precision; 789 unsigned int precision) 790 : storage (x, precision) 798 generic_wide_int <storage>::to_shwi (unsigned int precision) const [all …]
|
| /OK3568_Linux_fs/kernel/drivers/firmware/efi/libstub/ |
| H A D | vsprintf.c | 315 int precision; /* min. # of digits for integers; max in vsnprintf() local 357 precision = -1; in vsnprintf() 360 precision = get_int(&fmt, &args); in vsnprintf() 361 if (precision >= 0) in vsnprintf() 385 precision = INT_MAX; in vsnprintf() 389 precision = len = 1; in vsnprintf() 395 if (precision < 0) in vsnprintf() 396 precision = INT_MAX; in vsnprintf() 399 s = precision < 6 ? "" : "(null)"; in vsnprintf() 403 precision = len = utf16s_utf8nlen((const u16 *)s, precision); in vsnprintf() [all …]
|
| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | vsprintf.c | 158 int base, int size, int precision, int type) in number() argument 220 if (i > precision) in number() 221 precision = i; in number() 223 size -= precision; in number() 245 while (i <= --precision) in number() 257 int precision, int flags) in string() argument 264 len = strnlen(s, precision); in string() 277 int precision, int flags) in string16() argument 280 int utf16_len = utf16_strnlen(str, precision); in string16() 298 int precision, int flags) in mac_address_string() argument [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/boot/ |
| H A D | printf.c | 41 static char *number(char *str, long num, int base, int size, int precision, in number() argument 85 if (i > precision) in number() 86 precision = i; in number() 87 size -= precision; in number() 104 while (i < precision--) in number() 124 int precision; /* min. # of digits for integers; max in vsprintf() local 171 precision = -1; in vsprintf() 175 precision = skip_atoi(&fmt); in vsprintf() 179 precision = va_arg(args, int); in vsprintf() 181 if (precision < 0) in vsprintf() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-kernel/systemtap/systemtap/ |
| H A D | 0001-PR28778-gcc-warning-tweak-for-sprintf-precision-para.patch | 7 Subject: [PATCH] PR28778: gcc warning tweak for sprintf precision parameter 9 A precision=-1 sentinel value got interpreted as UINT_MAX in a 29 - len = strnlen(ptr, precision); 30 + len = strnlen(ptr, clamp_t(size_t, precision, 0, STP_BUFFER_SIZE)); 32 else if (precision > 0) 33 len = precision; 34 @@ -410,7 +410,7 @@ _stp_vsprint_memory_size(const char * ptr, int width, int precision, 38 - len = strnlen(ptr, precision); 39 + len = strnlen(ptr, clamp_t(size_t, precision, 0, STP_BUFFER_SIZE)); 41 else if (precision > 0) [all …]
|
| /OK3568_Linux_fs/kernel/arch/alpha/boot/ |
| H A D | stdio.c | 43 static char * number(char * str, unsigned long long num, int base, int size, int precision, int typ… in number() argument 82 if (i > precision) in number() 83 precision = i; in number() 84 size -= precision; in number() 101 while (i < precision--) in number() 121 int precision; /* min. # of digits for integers; max in vsprintf() local 161 precision = -1; in vsprintf() 165 precision = skip_atoi(&fmt); in vsprintf() 169 precision = va_arg(args, int); in vsprintf() 171 if (precision < 0) in vsprintf() [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/boot/ |
| H A D | stdio.c | 79 static char * number(char * str, unsigned long long num, int base, int size, int precision, int typ… in number() argument 118 if (i > precision) in number() 119 precision = i; in number() 120 size -= precision; in number() 137 while (i < precision--) in number() 157 int precision; /* min. # of digits for integers; max in vsprintf() local 197 precision = -1; in vsprintf() 201 precision = skip_atoi(&fmt); in vsprintf() 205 precision = va_arg(args, int); in vsprintf() 207 if (precision < 0) in vsprintf() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/detail/ |
| H A D | lcast_precision.hpp | 135 unsigned long const precision = 2UL + digits * 30103UL / 100000UL; in lcast_get_precision() 140 precision > limits::digits10 + 0UL && in lcast_get_precision() 141 precision <= streamsize_max + 0UL in lcast_get_precision() 143 return precision; in lcast_get_precision() 148 unsigned int const precision = limits::digits10 + 1U; in lcast_get_precision() 149 BOOST_ASSERT(precision <= streamsize_max + 0UL); in lcast_get_precision() 150 return precision; in lcast_get_precision() 171 stream.precision(lcast_get_precision<T>()); in lcast_set_precision() 179 stream.precision(s > t ? s : t); in lcast_set_precision()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/ |
| H A D | index_testing.h | 139 … int checks, float& precision, const Distance& distance, int nn = 1, int skipMatches = 0) 148 …precision = search_with_ground_truth(index, inputData, testData, matches, nn, checks, time, dist, … 156 … float precision, int& checks, const Distance& distance, int nn = 1, int skipMatches = 0) 173 if (p2>precision) { 179 while (p2<precision) { 188 if (fabs(p2-precision)>SEARCH_EPS) { 195 while (fabs(realPrecision-precision)>SEARCH_EPS) { 197 if (realPrecision<precision) { 239 float precision = precisions[pindex]; variable 269 precision = precisions[i]; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/acpi/acpica/ |
| H A D | utprint.c | 32 u8 base, s32 width, s32 precision, u8 type); 204 u8 base, s32 width, s32 precision, u8 type) in acpi_ut_format_number() argument 259 if (i > precision) { in acpi_ut_format_number() 260 precision = i; in acpi_ut_format_number() 263 width -= precision; in acpi_ut_format_number() 289 while (i <= --precision) { in acpi_ut_format_number() 323 s32 precision; in vsnprintf() local 388 precision = -1; in vsnprintf() 393 precision = (s32)number; in vsnprintf() 396 precision = va_arg(args, int); in vsnprintf() [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/nwfpe/ |
| H A D | softfloat-specialize | 71 The pattern for a default generated single-precision NaN. 78 Returns 1 if the single-precision floating-point value `a' is a NaN; 91 Returns 1 if the single-precision floating-point value `a' is a signaling 104 Returns the result of converting the single-precision floating-point NaN 124 precision floating-point format. 136 Takes two single-precision floating-point values `a' and `b', one of which 163 The pattern for a default generated double-precision NaN. 170 Returns 1 if the double-precision floating-point value `a' is a NaN; 183 Returns 1 if the double-precision floating-point value `a' is a signaling 198 Returns the result of converting the double-precision floating-point NaN [all …]
|
| /OK3568_Linux_fs/kernel/arch/m68k/fpsp040/ |
| H A D | util.S | 96 | If the instruction is fsgldiv of fsglmul, the rounding precision must be 98 | precision instruction, the rounding precision is then set to the force 99 | precision. 109 beql ovff_sgl |force precision is single 111 beql ovff_dbl |force precision is double 136 | Inst is either fsgldiv or fsglmul. Force extended precision. 149 | The precision is in the fpcr. 152 bfextu FPCR_MODE(%a6){#0:#2},%d0 |set round precision 164 | This sets the round precision according to the destination size. 170 | ;is the rounding precision [all …]
|
| H A D | x_store.S | 100 | dest_dbl --- write double precision value to user space 104 | a1 -> source in extended precision 110 |Changes extended precision to double precision. 133 subw #0x3fff,%d0 |subtract extended precision bias 136 addw #0x3ff,%d0 |add double precision bias 166 movel #0x8,%d0 |byte count for double precision number
|
| /OK3568_Linux_fs/buildroot/package/efl/ |
| H A D | 0011-gl_drm-Support-external-dmabuf.patch | 23 " * through cpp first (in which case the precision must be manually added).\n" 31 "precision highp float;\n" 33 "precision mediump float;\n" 54 precision highp float; 56 precision mediump float; 85 " * through cpp first (in which case the precision must be manually added).\n" 93 "precision highp float;\n" 95 "precision mediump float;\n" 116 precision highp float; 118 precision mediump float;
|
| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | waveaudio.c | 161 unsigned precision = ft->encoding.bits_per_sample; in negotiate_format() local 162 if (precision > 32) in negotiate_format() 163 precision = 32; in negotiate_format() 164 else if (precision < 8) in negotiate_format() 165 precision = 8; in negotiate_format() 167 while (precision > 0) in negotiate_format() 169 …error = check_format(pfmt, recording, dev, ft->signal.channels, precision, (unsigned)ft->signal.ra… in negotiate_format() 172 precision = (precision - 1) & ~(7u); in negotiate_format() 283 ft->signal.precision = fmt.Samples.wValidBitsPerSample; in start()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/ |
| H A D | random.tcc | 474 const std::streamsize __precision = __os.precision(); in operator <<() 478 __os.precision(std::numeric_limits<_RealType>::max_digits10); in operator <<() 484 __os.precision(__precision); in operator <<() 671 const std::streamsize __precision = __os.precision(); in operator <<() 675 __os.precision(std::numeric_limits<_RealType>::max_digits10); in operator <<() 688 __os.precision(__precision); in operator <<() 759 const std::streamsize __precision = __os.precision(); in operator <<() 763 __os.precision(std::numeric_limits<_RealType>::max_digits10); in operator <<() 771 __os.precision(__precision); in operator <<() 826 const std::streamsize __precision = __os.precision(); in operator <<() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/ |
| H A D | random.tcc | 474 const std::streamsize __precision = __os.precision(); in operator <<() 478 __os.precision(std::numeric_limits<_RealType>::max_digits10); in operator <<() 484 __os.precision(__precision); in operator <<() 671 const std::streamsize __precision = __os.precision(); in operator <<() 675 __os.precision(std::numeric_limits<_RealType>::max_digits10); in operator <<() 688 __os.precision(__precision); in operator <<() 759 const std::streamsize __precision = __os.precision(); in operator <<() 763 __os.precision(std::numeric_limits<_RealType>::max_digits10); in operator <<() 771 __os.precision(__precision); in operator <<() 826 const std::streamsize __precision = __os.precision(); in operator <<() [all …]
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | vsprintf.c | 444 signed int precision:16; /* # of digits/chars */ member 463 int precision = spec.precision; in number() local 510 if (i > precision) in number() 511 precision = i; in number() 513 field_width -= precision; in number() 551 while (i <= --precision) { in number() 581 spec.precision = -1; in special_hex_number() 638 int lim = spec.precision; in string_nocheck() 680 if (spec.precision == -1) in error_string() 681 spec.precision = 2 * sizeof(void *); in error_string() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/arm/nwfpe/ |
| H A D | nwfpe.rst | 28 Arithmetic. As many as four formats are supported: single precision, 29 double precision, extended double precision, and quadruple precision. 31 conversions to and from decimal. We use only the single precision, 32 double precision and extended double precision formats. The port of
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | average.h | 58 unsigned long precision = _precision; \ 67 (val << precision)) >> weight_rcp : \ 68 (val << precision)); \
|
| /OK3568_Linux_fs/kernel/drivers/soc/amlogic/ |
| H A D | meson-clk-measure.c | 540 unsigned int *precision) in meson_measure_best_id() argument 549 *precision = (2 * 1000000) / duration; in meson_measure_best_id() 560 unsigned int precision = 0; in clk_msr_show() local 563 val = meson_measure_best_id(clk_msr_id, &precision); in clk_msr_show() 567 seq_printf(s, "%d\t+/-%dHz\n", val, precision); in clk_msr_show() 576 unsigned int precision = 0; in clk_msr_summary_show() local 586 val = meson_measure_best_id(&msr_table[i], &precision); in clk_msr_summary_show() 591 msr_table[i].name, val, precision); in clk_msr_summary_show()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/timers/ |
| H A D | freq-step.c | 40 static double precision; variable 224 precision = get_sample(&sample) / 2.0; in init_test() 226 1e9 * precision); in init_test() 228 if (precision > MAX_PRECISION) in init_test() 230 1e9 * precision, 1e9 * MAX_PRECISION); in init_test()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/ |
| H A D | random.tcc | 932 const std::streamsize __precision = __os.precision(); in operator <<() 936 __os.precision(std::numeric_limits<_RealType>::max_digits10); in operator <<() 942 __os.precision(__precision); in operator <<() 993 const std::streamsize __precision = __os.precision(); in operator <<() 996 __os.precision(std::numeric_limits<double>::max_digits10); in operator <<() 1002 __os.precision(__precision); in operator <<() 1074 const std::streamsize __precision = __os.precision(); in operator <<() 1077 __os.precision(std::numeric_limits<double>::max_digits10); in operator <<() 1083 __os.precision(__precision); in operator <<() 1188 const std::streamsize __precision = __os.precision(); in operator <<() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/ |
| H A D | random.tcc | 932 const std::streamsize __precision = __os.precision(); in operator <<() 936 __os.precision(std::numeric_limits<_RealType>::max_digits10); in operator <<() 942 __os.precision(__precision); in operator <<() 993 const std::streamsize __precision = __os.precision(); in operator <<() 996 __os.precision(std::numeric_limits<double>::max_digits10); in operator <<() 1002 __os.precision(__precision); in operator <<() 1074 const std::streamsize __precision = __os.precision(); in operator <<() 1077 __os.precision(std::numeric_limits<double>::max_digits10); in operator <<() 1083 __os.precision(__precision); in operator <<() 1188 const std::streamsize __precision = __os.precision(); in operator <<() [all …]
|