| /prebuilts/go/darwin-x86/src/fmt/ |
| print.go | 43 // Precision returns the value of the precision option and whether it has been set. 44 Precision() (prec int, ok bool) 150 func (p *pp) Precision() (prec int, ok bool) { return p.fmt.prec, p.fmt.precPresent } 289 // too large to be used as a formatting width or precision. 393 // fmtFloat formats a float. The default precision for each verb 993 // without precision or width or argument indices. 1040 // Do we have precision? 1050 // Negative precision arguments don't make sense
|
| /prebuilts/go/linux-x86/src/fmt/ |
| print.go | 43 // Precision returns the value of the precision option and whether it has been set. 44 Precision() (prec int, ok bool) 150 func (p *pp) Precision() (prec int, ok bool) { return p.fmt.prec, p.fmt.precPresent } 289 // too large to be used as a formatting width or precision. 393 // fmtFloat formats a float. The default precision for each verb 993 // without precision or width or argument indices. 1040 // Do we have precision? 1050 // Negative precision arguments don't make sense
|
| /external/deqp/external/openglcts/modules/gl/ |
| gl4cDirectStateAccessSamplersTests.cpp | 306 if (de::abs(expected_value - value) > 0.015625f /* Precision */) 336 if ((de::abs(expected_value[0] - value[0]) > 0.015625f /* Precision */) || 337 (de::abs(expected_value[1] - value[1]) > 0.015625f /* Precision */) || 338 (de::abs(expected_value[2] - value[2]) > 0.015625f /* Precision */) || 339 (de::abs(expected_value[3] - value[3]) > 0.015625f /* Precision */))
|
| /external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
| esextcTessellationShaderXFB.cpp | 287 "precision highp float;\n" 322 "precision highp float;\n" 367 "precision highp float;\n" 441 "precision highp float;\n" 479 "precision highp float;\n"
|
| /external/deqp/modules/gles2/functional/ |
| es2fNegativeStateApiTests.cpp | 222 GLint precision[1] = { -1 }; 225 glGetShaderPrecisionFormat (-1, GL_MEDIUM_FLOAT, &range[0], &precision[0]); 227 glGetShaderPrecisionFormat (GL_VERTEX_SHADER, -1, &range[0], &precision[0]); 229 glGetShaderPrecisionFormat (-1, -1, &range[0], &precision[0]); 234 glGetShaderPrecisionFormat (GL_VERTEX_SHADER, GL_MEDIUM_FLOAT, &range[0], &precision[0]);
|
| /external/icu/icu4c/source/i18n/unicode/ |
| fmtable.h | 129 * full precision of the input in decimal format, even when it exceeds 302 * possible loss of precision. If the type is kObject and the 326 * it fits within a long, then no precision is lost. If it is of 483 * the full precision and range of the original input, unconstrained by 578 * The full precision and range of the input number will be retained,
|
| /external/llvm/lib/Target/AMDGPU/ |
| AMDGPUAsmPrinter.cpp | 54 // precision, and leaves single precision to flush all and does not report 58 // FIXME: It seems some instructions do not support single precision denormals 63 // instructions to run at the double precision rate for the device so it's 64 // probably best to just report no single precision denormals.
|
| /external/llvm/lib/Target/Mips/ |
| MipsRegisterInfo.td | 155 /// Mips Single point precision FPU Registers 163 /// Mips Double point precision FPU Registers (aliased 164 /// with the single precision to hold 64 bit values) 170 /// Mips Double point precision FPU Registers in MFP64 mode. 383 // FIXME: Remove double precision registers from this set.
|
| /external/mesa3d/docs/specs/ |
| MESA_shader_integer_functions.txt | 79 * extended integer precision math, including add with carry, subtract 276 (add support for single-precision frexp and ldexp functions) 283 The function frexp() splits each single-precision floating-point number in 298 The function ldexp() builds a single-precision floating-point number from 304 If this product is too large to be represented as a single-precision
|
| /external/mesa3d/src/compiler/glsl/ |
| ast.h | 456 ast_precision_none = 0, /**< Absence of precision qualifier. */ 626 /** Precision of the type (highp/medium/lowp). */ 627 unsigned precision:2; member in struct:ast_type_qualifier 859 /** For precision statements, this is the given precision; otherwise none. */ [all...] |
| /external/skqp/include/private/ |
| GrTypesPriv.h | 164 * vary the internal precision based on the qualifiers. These currently only apply to float types ( 172 // Default precision is a special tag that means "whatever the default for the program/type 174 // scenarios where kDefault is not allowed (as the default precision for a program, or for 427 // temporarily accepting (but ignoring) precision modifiers on the new types; this will be killed [all...] |
| /external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
| MipsInstrFPU.td | 67 // S32 - single precision in 16 32bit even fp registers 68 // single precision in 32 32bit fp registers in SingleOnly mode 69 // S64 - single precision in 32 64bit fp registers (In64BitMode) 70 // D32 - double precision in 16 32bit even fp registers 71 // D64 - double precision in 32 64bit fp registers (In64BitMode)
|
| /external/tcpdump/ |
| print-ntp.c | 82 * |LI | VN |Mode | Stratum | Poll | Precision | 120 int precision:8; member in struct:ntpdata 242 /* Can't ND_TCHECK bp->precision bitfield so bp->distance + 0 instead */ 244 ND_PRINT((ndo, ", precision %d", bp->precision));
|
| /external/tensorflow/tensorflow/python/framework/ |
| dtypes.py | 35 * `tf.float16`: 16-bit half-precision floating-point. 36 * `tf.float32`: 32-bit single-precision floating-point. 37 * `tf.float64`: 64-bit double-precision floating-point. 39 * `tf.complex64`: 64-bit single-precision complex. 40 * `tf.complex128`: 128-bit double-precision complex.
|
| /packages/apps/ExactCalculator/src/com/android/calculator2/ |
| Evaluator.java | 72 * precision. 79 * initiate a background computation to higher precision, as if we had generated placeholder 85 * a significantly higher precision. Thus we almost always round correctly towards zero. (Fully 90 * higher precision, since the original evaluation precluded a domain error that could result in 133 * Called in response to a reevaluation request, once more precision is available. 137 public void onReevaluate(long index); // More precision is now available; please redraw. 142 * This provides information we need to calculate the "preferred precision offset" used 242 // Initial evaluation precision. Enough to guarantee that we can compute the short 250 // always to better than IEEE double precision at identifying nonzeros. And then some. 403 * Represents either an error or a result computed to an initial evaluation precision [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|
| /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Analysis/Analyses/ |
| FormatString.h | 161 // to be copied by os_log. The precision indicates the number of bytes to 455 OptionalAmount Precision; 501 Precision = Amt; 502 Precision.setUsesDotPrefix(); 506 return Precision;
|