Searched defs:precision (Results 151 - 175 of 183) sorted by relevance

12345678

/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_trace_implementation_impl_autogen.h474 GLint* precision) {
476 gl_->GetShaderPrecisionFormat(shadertype, precisiontype, range, precision);
471 GetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision) argument
/external/chromium_org/third_party/icu/source/i18n/
H A Ddecimfmt.cpp1621 int32_t sigDigits = precision();
1627 int32_t numFractionDigits = precision();
2024 // Output a digit, if we have any precision left, or a
5643 DecimalFormat::precision() const { function in class:DecimalFormat
/external/chromium_org/v8/src/arm/
H A Dsimulator-arm.cc896 // into the double precision floating point value and return it.
1601 VFPRegPrecision precision = local
1603 int operand_size = (precision == kSinglePrecision) ? 4 : 8;
1609 vd = instr->VFPDRegValue(precision);
1610 if (precision == kSinglePrecision) {
1623 if (precision == kSinglePrecision) {
2881 // Obtain double precision register codes.
2989 // result with too high precision.
3117 VFPRegPrecision precision = kSinglePrecision; local
3119 precision
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp346 glw::GLint precision = -1; local
348 gl.getShaderPrecisionFormat(shaderTypeGL, intPrecisionGL, &range[0], &precision);
647 , precision (PRECISION_LAST)
657 Precision precision; member in struct:deqp::gles3::Functional::ShaderDataSpec
694 const char* precision = m_spec.precision != PRECISION_LAST ? getPrecisionName(m_spec.precision) : DE_NULL; local
704 // Compute precision for inputs.
713 : m_spec.precision;
761 if (precision local
792 if (precision && !isBoolOut) op << precision << " "; local
[all...]
/external/mdnsresponder/mDNSCore/
H A DDNSCommon.c2862 unsigned int precision; member in struct:mDNSprintf_format
2917 if (c == '.') // decode precision
2920 { F.precision = va_arg(arg, unsigned int); c = *++fmt; }
2922 F.precision = (10 * F.precision) + (c - '0');
2951 F.precision = F.fieldWidth;
2952 if (F.sign) --F.precision;
2954 if (F.precision < 1) F.precision = 1;
2956 if (F.precision > mDNS_VACB_Siz
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp2625 synthesizeGLError(GL_INVALID_ENUM, "getShaderPrecisionFormat", "invalid precision type");
2630 GLint precision = 0; local
2631 webContext()->getShaderPrecisionFormat(shaderType, precisionType, range, &precision);
2632 return WebGLShaderPrecisionFormat::create(range[0], range[1], precision);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DlibGLESv2.cpp2752 void __stdcall glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision) argument
2754 EVENT("(GLenum shadertype = 0x%X, GLenum precisiontype = 0x%X, GLint* range = 0x%0.8p, GLint* precision = 0x%0.8p)",
2755 shadertype, precisiontype, range, precision);
2776 // Assume IEEE 754 precision
2779 *precision = 23;
2785 // Some (most) hardware only supports single-precision floating-point numbers,
2789 *precision = 0;
/external/chromium_org/third_party/libxml/src/
H A Dtrio.c458 * D Binary Coded Decimal %D(length,precision) (OS/390)
639 /* The precision qualifier */
640 int precision; member in struct:__anon13369
1178 int precision; local
1259 precision = NO_PRECISION;
1291 /* Skip if no precision */
1295 /* After the first dot we have the precision */
1306 precision = TrioGetPosition(format, &index);
1307 if (precision == NO_POSITION)
1311 precision
2162 TrioWriteNumber(self, number, flags, width, precision, base), trio_class_t *self, trio_uintmax_t number, trio_flags_t flags, int width, int precision, int base argument
2417 TrioWriteString(self, string, flags, width, precision), trio_class_t *self, TRIO_CONST char *string, trio_flags_t flags, int width, int precision argument
2523 TrioWriteWideString(self, wstring, flags, width, precision), trio_class_t *self, TRIO_CONST trio_wchar_t *wstring, trio_flags_t flags, int width, int precision argument
2600 TrioWriteDouble(self, number, flags, width, precision, base), trio_class_t *self, trio_long_double_t number, trio_flags_t flags, int width, int precision, int base argument
3080 int precision; local
3325 precision, local
4431 trio_set_precision(ref, precision), trio_pointer_t ref, int precision argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_structs.h1275 GLuint precision:1; member in struct:brw_instruction::__anon14435::__anon14444
1290 GLuint precision:1; member in struct:brw_instruction::__anon14435::__anon14445
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp125 * In the precision tests we are dealing with functions of different arities.
236 //! Print out an interval with the precision of `fmt`.
251 //! Print out a value with the precision of `fmt`.
266 //! Approximate `value` elementwise to the float precision defined in `fmt`.
585 * point precision and the current variable environment.
1035 * by the current floating point precision.
1661 const double prec = this->precision(ctx, exact, arg0);
1676 virtual double precision (const EvalContext& ctx, double, double) const = 0;
1729 const double prec = this->precision(ctx, exact, x, y);
1744 virtual double precision (cons
1790 double precision (const EvalContext&, double, double, double) const function in class:deqp::gls::BuiltinPrecisionTests::InfixOperator
1958 double precision (const EvalContext&, double, double) const { return 0.0; } function in class:deqp::gls::BuiltinPrecisionTests::Functions::Negate
1997 double precision (const EvalContext& ctx, double ret, double, double den) const function in class:deqp::gls::BuiltinPrecisionTests::Functions::Div
2024 double precision (const EvalContext& ctx, double ret, double x) const function in class:deqp::gls::BuiltinPrecisionTests::Functions::InverseSqrt
2041 double precision (const EvalContext& ctx, double ret, double x) const function in class:deqp::gls::BuiltinPrecisionTests::Functions::ExpFunc
2076 double precision (const EvalContext& ctx, double ret, double x) const function in class:deqp::gls::BuiltinPrecisionTests::Functions::LogFunc
2240 double precision (const EvalContext& ctx, double ret, double arg) const function in class:deqp::gls::BuiltinPrecisionTests::Functions::TrigFunc
2307 double precision (const EvalContext& ctx, double ret, double x) const function in class:deqp::gls::BuiltinPrecisionTests::Functions::ArcTrigFunc
2379 double precision (const EvalContext& ctx, double ret, double, double) const function in class:deqp::gls::BuiltinPrecisionTests::Functions::ATan2
3049 double precision (const EvalContext&, double, double) const { return 0.0; } function in class:deqp::gls::BuiltinPrecisionTests::Functions::PreciseFunc1
3096 double precision (const EvalContext&, double, double) const { return 0.0; } function in class:deqp::gls::BuiltinPrecisionTests::Functions::Round
3118 double precision (const EvalContext&, double, double, double) const { return 0.0; } function in class:deqp::gls::BuiltinPrecisionTests::Functions::PreciseFunc2
3163 double precision (const EvalContext&, double, double, double minVal, double maxVal) const function in class:deqp::gls::BuiltinPrecisionTests::Functions::Clamp
4185 Precision precision; member in struct:deqp::gls::BuiltinPrecisionTests::Context
5191 const Precision precision = Precision(precNdx); local
[all...]
/external/libxml2/
H A Dtrio.c462 * D Binary Coded Decimal %D(length,precision) (OS/390)
643 /* The precision qualifier */
644 int precision; member in struct:__anon25095
1182 int precision; local
1263 precision = NO_PRECISION;
1295 /* Skip if no precision */
1299 /* After the first dot we have the precision */
1310 precision = TrioGetPosition(format, &index);
1311 if (precision == NO_POSITION)
1315 precision
2166 TrioWriteNumber(self, number, flags, width, precision, base), trio_class_t *self, trio_uintmax_t number, trio_flags_t flags, int width, int precision, int base argument
2421 TrioWriteString(self, string, flags, width, precision), trio_class_t *self, TRIO_CONST char *string, trio_flags_t flags, int width, int precision argument
2527 TrioWriteWideString(self, wstring, flags, width, precision), trio_class_t *self, TRIO_CONST trio_wchar_t *wstring, trio_flags_t flags, int width, int precision argument
2604 TrioWriteDouble(self, number, flags, width, precision, base), trio_class_t *self, trio_long_double_t number, trio_flags_t flags, int width, int precision, int base argument
3084 int precision; local
3329 precision, local
4435 trio_set_precision(ref, precision), trio_pointer_t ref, int precision argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_structs.h1275 GLuint precision:1; member in struct:brw_instruction::__anon27846::__anon27855
1290 GLuint precision:1; member in struct:brw_instruction::__anon27846::__anon27856
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc89 GLint precision) {
90 return (rangeMin >= 62) && (rangeMax >= 62) && (precision >= 16);
95 GLint *range, GLint *precision) {
103 *precision = 0;
108 // These values are for an IEEE single-precision floating-point format.
111 *precision = 23;
121 // a stub, so we need to set range and precision as if it weren't
127 range, precision);
137 // If the driver reports a precision for highp float that isn't actually
141 !PrecisionMeetsSpecForHighpFloat(range[0], range[1], *precision)) {
87 PrecisionMeetsSpecForHighpFloat(GLint rangeMin, GLint rangeMax, GLint precision) argument
93 GetShaderPrecisionFormatImpl(GLenum shader_type, GLenum precision_type, GLint *range, GLint *precision) argument
2794 GLint precision = 0; local
9248 GLint precision = 0; local
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp2956 // First check if the field width, precision, and conversion specifier
2963 if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
2969 // FIXME: Technically specifying a precision or field width here
2996 // Check for invalid use of precision
2998 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
3435 // FIXME: Technically specifying a precision or field width here
5764 // FIXME: Force the precision of the source value down so we don't print
5770 unsigned precision = llvm::APFloat::semanticsPrecision(Value.getSemantics()); local
5771 precision = (precision * 5
[all...]
/external/libpng/contrib/libtests/
H A Dpngvalid.c179 int precision)
182 sprintf(number, "%.*f", precision, d);
197 /* Convert a double precision value to fixed point. */
1944 * precision, not the output precision.
2043 * with the precision of the input, not the precision of the output depth.
2046 * bit precision. This only affects those of the following limits that pertain
2145 /* This is the case where the value was calculated at 8-bit precision then
2183 /* This is the case where the value was calculated at 8-bit precision the
178 safecatd(char *buffer, size_t bufsize, size_t pos, double d, int precision) argument
8458 int precision = (outmax >= 1000 ? 6 : 3); local
[all...]
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_format_autogen.h3198 int32_t precision; member in struct:GetShaderPrecisionFormat::Result
3253 COMPILE_ASSERT(offsetof(GetShaderPrecisionFormat::Result, precision) == 12,
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
H A Dglapitemp.h5319 KEYWORD1 void KEYWORD2 NAME(GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision) argument
5321 (void) shadertype; (void) precisiontype; (void) range; (void) precision;
5322 DISPATCH(GetShaderPrecisionFormat, (shadertype, precisiontype, range, precision), (F, "glGetShaderPrecisionFormat(0x%x, 0x%x, %p, %p);\n", shadertype, precisiontype, (const void *) range, (const void *) precision));
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglapi_mapi_tmp.h894 GLAPI void APIENTRY GLAPI_PREFIX(GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision);
7420 GLAPI void APIENTRY GLAPI_PREFIX(GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision) argument
7424 ((void (APIENTRY *)(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision)) _func)(shadertype, precisiontype, range, precision);
H A Dglapi_mapi_tmp_shared.h689 void APIENTRY shared_dispatch_stub_675(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision);
5119 static void APIENTRY noopGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision) argument
5121 (void) shadertype; (void) precisiontype; (void) range; (void) precision;
17528 void APIENTRY shared_dispatch_stub_675(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision) argument
17532 ((void (APIENTRY *)(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision)) _func)(shadertype, precisiontype, range, precision);
/external/valgrind/main/include/vki/
H A Dvki-linux.h318 long precision; /* clock precision (usec) (read only) */ member in struct:vki_timex
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c18523 ** * The %c field now accepts a precision. The character output
18524 ** is repeated by the number of times the precision specifies.
18587 #define FLAG_STRING 4 /* Allow infinity precision */
18719 int precision; /* Precision of the current field */ local
18796 /* Get the precision */
18798 precision = 0;
18801 precision = va_arg(ap,int);
18802 if( precision<0 ) precision = -precision;
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c7519 /* The double-precision datatype used by RTree depends on the
20595 #define FLAG_STRING 4 /* Allow infinity precision */
20711 int precision; /* Precision of the current field */ local
20798 /* Get the precision */
20800 precision = 0;
20804 precision = (int)getIntArg(pArgList);
20806 precision = va_arg(ap,int);
20808 if( precision<0 ) precision = -precision;
[all...]
/external/sqlite/dist/
H A Dsqlite3.c7519 /* The double-precision datatype used by RTree depends on the
20595 #define FLAG_STRING 4 /* Allow infinity precision */
20711 int precision; /* Precision of the current field */ local
20798 /* Get the precision */
20800 precision = 0;
20804 precision = (int)getIntArg(pArgList);
20806 precision = va_arg(ap,int);
20808 if( precision<0 ) precision = -precision;
[all...]

Completed in 7513 milliseconds

12345678