Searched defs:linear (Results 51 - 75 of 109) sorted by relevance

12345

/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.h50 LP_TEX_LAYOUT_LINEAR, /**< the tile data is in linear layout */
64 * linear layout (for texture sampling) and another in a tiled layout (for
65 * render targets). We keep track of whether each image tile is linear
108 struct llvmpipe_texture_image linear[LP_MAX_TEXTURE_LEVELS]; member in struct:llvmpipe_resource
/external/skia/tests/
H A DApplyGammaTest.cpp20 /** convert 0..1 linear value to 0..1 srgb */
21 static float linear_to_srgb(float linear) { argument
22 if (linear <= 0.0031308) {
23 return linear * 12.92f;
25 return 1.055f * powf(linear, 1.f / 2.4f) - 0.055f;
29 /** convert 0..1 srgb value to 0..1 linear */
H A DSRGBMipMapTest.cpp21 /** convert 0..1 srgb value to 0..1 linear */
30 /** convert 0..1 linear value to 0..1 srgb */
31 float linear_to_srgb(float linear) { argument
32 if (linear <= 0.0031308) {
33 return linear * 12.92f;
35 return 1.055f * powf(linear, 1.f / 2.4f) - 0.055f;
85 // Fill texture with a dither of black and 60% sRGB (~ 32.5% linear) gray. Although there is
148 // 2) Draw texture to L32 surface (should generate/use linear mips)
165 error, "re-render as linear");
H A DSRGBReadWritePixelsTest.cpp18 /** convert 0..1 srgb value to 0..1 linear */
27 /** convert 0..1 linear value to 0..1 srgb */
28 float linear_to_srgb(float linear) { argument
29 if (linear <= 0.0031308) {
30 return linear * 12.92f;
32 return 1.055f * powf(linear, 1.f / 2.4f) - 0.055f;
97 static bool check_srgb_to_linear_conversion(uint32_t srgb, uint32_t linear, float error) { argument
98 return check_conversion<srgb_to_linear>(srgb, linear, error);
101 static bool check_linear_to_srgb_conversion(uint32_t linear, uint32_t srgb, float error) { argument
102 return check_conversion<linear_to_srgb>(linear, srg
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DArray2DRowFieldMatrix.java18 package org.apache.commons.math.linear;
25 import org.apache.commons.math.linear.MatrixVisitorException;
H A DArray2DRowRealMatrix.java18 package org.apache.commons.math.linear;
23 import org.apache.commons.math.linear.MatrixVisitorException;
29 * LU decomposition</a> to support linear system
H A DArrayFieldVector.java17 package org.apache.commons.math.linear;
H A DBigMatrix.java18 package org.apache.commons.math.linear;
267 * @throws org.apache.commons.math.linear.InvalidMatrixException if
276 *@throws org.apache.commons.math.linear.InvalidMatrixException if
308 * Returns the solution vector for a linear system with coefficient
314 * @throws org.apache.commons.math.linear.InvalidMatrixException if this matrix is not square or is singular
319 * Returns a matrix of (column) solution vectors for linear systems with
323 * @param b matrix of constant vectors forming RHS of linear systems to
327 * @throws org.apache.commons.math.linear.InvalidMatrixException if this matrix is not square or is singular
H A DFieldMatrix.java18 package org.apache.commons.math.linear;
23 import org.apache.commons.math.linear.MatrixVisitorException;
H A DRealMatrixImpl.java18 package org.apache.commons.math.linear;
23 import org.apache.commons.math.linear.MatrixVisitorException;
29 * LU decomposition</a> to support linear system
H A DSparseFieldVector.java17 package org.apache.commons.math.linear;
H A DAbstractFieldMatrix.java18 package org.apache.commons.math.linear;
26 import org.apache.commons.math.linear.MatrixVisitorException;
H A DAbstractRealMatrix.java18 package org.apache.commons.math.linear;
21 import org.apache.commons.math.linear.MatrixVisitorException;
965 * Uses <a href="http://www.damtp.cam.ac.uk/user/fdl/people/sd/lectures/nummeth98/linear.htm">
H A DArrayRealVector.java17 package org.apache.commons.math.linear;
H A DBigMatrixImpl.java18 package org.apache.commons.math.linear;
28 * LU decompostion</a> to support linear system
1087 * Returns a matrix of (column) solution vectors for linear systems with
1091 * @param b array of constants forming RHS of linear systems to
1114 * Returns a matrix of (column) solution vectors for linear systems with
1118 * @param b array of constants forming RHS of linear systems to
1133 * Returns a matrix of (column) solution vectors for linear systems with
1137 * @param b matrix of constant vectors forming RHS of linear systems to
1206 * Uses <a href="http://www.damtp.cam.ac.uk/user/fdl/people/sd/lectures/nummeth98/linear.htm">
H A DMatrixUtils.java18 package org.apache.commons.math.linear;
H A DOpenMapRealVector.java17 package org.apache.commons.math.linear;
H A DRealMatrix.java18 package org.apache.commons.math.linear;
20 import org.apache.commons.math.linear.MatrixVisitorException;
844 * Returns the solution vector for a linear system with coefficient
857 * Returns a matrix of (column) solution vectors for linear systems with
861 * @param b matrix of constant vectors forming RHS of linear systems to
/external/clang/test/OpenMP/
H A Dsimd_codegen.cpp43 #pragma omp simd linear(k : 3)
67 // Update of the privatized version of linear variable!
78 // Update linear vars after loop, as the loop was operating on a private version.
85 #pragma omp simd linear(lin : get_val()), linear(g_ptr)
87 // Init linear private var.
93 // Remember linear step.
111 // Linear start and step are used to calculate current value of the linear variable.
132 // Linear start and step are used to calculate final value of the linear variables.
488 // CHECK-LABEL: define {{.*void}} @{{.*}}linear{{
489 void linear(float *a) { function
[all...]
/external/dng_sdk/source/
H A Ddng_host.h100 // Do we want to force saving to a linear DNG?
289 /// Setter for flag determining whether to force saving a linear DNG file.
290 /// \param linear If true, we should force saving a linear DNG file.
292 void SetSaveLinearDNG (bool linear) argument
294 fSaveLinearDNG = linear;
297 /// Getter for flag determining whether to save a linear DNG file.
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_program.h36 unsigned linear : 1; member in struct:nv50_varying
/external/skia/src/core/
H A DSkPM4fPriv.h68 float linear; local
70 linear = srgb / 12.92f;
72 linear = powf((srgb + 0.055f) / 1.055f, 2.4f);
74 assert_unit(linear);
75 return linear;
107 if (!src) { return true; } // A null src color space means linear gamma, dst gamut.
/external/syslinux/gpxe/src/arch/i386/image/
H A Dnbi.c50 unsigned long linear; /**< 32-bit entry point */ member in union:imgheader::__anon20060
346 image, imgheader->execaddr.linear );
359 : "D" ( imgheader->execaddr.linear ),
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
H A DSimplexTableau.java18 package org.apache.commons.math.optimization.linear;
30 import org.apache.commons.math.linear.Array2DRowRealMatrix;
31 import org.apache.commons.math.linear.MatrixUtils;
32 import org.apache.commons.math.linear.RealMatrix;
33 import org.apache.commons.math.linear.RealVector;
99 * Build a tableau for a linear problem.
100 * @param f linear objective function
101 * @param constraints linear constraints
/external/ltp/utils/benchmark/ebizzy-0.3/
H A Debizzy.c70 static unsigned int linear; variable
182 linear = 1;
206 printf("linear %u\n", linear);
404 if (linear)

Completed in 484 milliseconds

12345