Searched defs:coords (Results 1 - 25 of 124) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeoposition.h50 Coordinates* coords() const { return m_coordinates.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath.h44 /* all coords are absolute, even if segment is relative */
45 const VGfloat *coords; member in struct:path_for_each_data
H A Dvgu.c44 const VGfloat *coords,
50 vg_float_to_datatype(path_datatype(p), common_data, coords, num_coords); local
59 VGfloat coords[4]; local
70 coords[0] = x0;
71 coords[1] = y0;
72 coords[2] = x1;
73 coords[3] = y1;
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
86 VGfloat *coords; local
104 coords
41 vgu_append_float_coords(VGPath path, const VGubyte *cmds, VGint num_cmds, const VGfloat *coords, VGint num_coords) argument
138 VGfloat coords[5]; local
232 VGfloat coords[12]; local
267 VGfloat coords[40]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddrawtex.c69 _mesa_DrawTexfv(const GLfloat *coords) argument
72 draw_texture(ctx, coords[0], coords[1], coords[2], coords[3], coords[4]);
86 _mesa_DrawTexiv(const GLint *coords) argument
89 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1],
90 (GLfloat) coords[
104 _mesa_DrawTexsv(const GLshort *coords) argument
126 _mesa_DrawTexxv(const GLfixed *coords) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.h44 /* all coords are absolute, even if segment is relative */
45 const VGfloat *coords; member in struct:path_for_each_data
/external/mesa3d/src/mesa/main/
H A Ddrawtex.c69 _mesa_DrawTexfv(const GLfloat *coords) argument
72 draw_texture(ctx, coords[0], coords[1], coords[2], coords[3], coords[4]);
86 _mesa_DrawTexiv(const GLint *coords) argument
89 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1],
90 (GLfloat) coords[
104 _mesa_DrawTexsv(const GLshort *coords) argument
126 _mesa_DrawTexxv(const GLfixed *coords) argument
[all...]
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftmm.h165 /* coords :: The design coordinates for this style. */
172 FT_Fixed* coords; member in struct:FT_Var_Named_Style_
290 /* coords :: An array of design coordinates. */
298 FT_Long* coords );
317 /* coords :: An array of design coordinates. */
325 FT_Fixed* coords );
344 /* coords :: The design coordinates array (each element must be */
353 FT_Fixed* coords );
367 FT_Fixed* coords );
/external/chromium_org/third_party/skia/src/gpu/gl/builders/
H A DGrGLFullProgramBuilder.h81 const GrGLProcessor::TransformedCoordsArray& coords,
86 inColor, coords, samplers);
78 emit(const GrProcessorKey& key, const char* outColor, const char* inColor, const GrGLProcessor::TransformedCoordsArray& coords, const GrGLProcessor::TextureSamplerArray& samplers) argument
H A DGrGLFragmentShaderBuilder.cpp127 const GrGLProcessor::TransformedCoordsArray& coords, int index) {
128 if (kVec3f_GrSLType != coords[index].getType()) {
129 SkASSERT(kVec2f_GrSLType == coords[index].getType());
130 return coords[index].getName();
138 coords2D.c_str(), coords[index].c_str(), coords[index].c_str());
126 ensureFSCoords2D( const GrGLProcessor::TransformedCoordsArray& coords, int index) argument
H A DGrGLFullProgramBuilder.cpp115 SkSTArray<2, GrGLProcessor::TransformedCoords> coords(effect.numTransforms());
118 this->emitTransforms(stage, &coords);
131 fEffectEmitter->emit(key, outColor, inColor, coords, samplers);
189 const GrGLShaderVar& coords = local
193 // varying = matrix * coords (logically)
197 vsVaryingName, uniName, coords.c_str());
200 vsVaryingName, uniName, coords.c_str());
/external/freetype/include/
H A Dftmm.h165 /* coords :: The design coordinates for this style. */
172 FT_Fixed* coords; member in struct:FT_Var_Named_Style_
289 /* coords :: An array of design coordinates. */
297 FT_Long* coords );
316 /* coords :: An array of design coordinates. */
324 FT_Fixed* coords );
343 /* coords :: The design coordinates array (each element must be */
352 FT_Fixed* coords );
366 FT_Fixed* coords );
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftmm.h165 /* coords :: The design coordinates for this style. */
172 FT_Fixed* coords; member in struct:FT_Var_Named_Style_
290 /* coords :: An array of design coordinates. */
298 FT_Long* coords );
317 /* coords :: An array of design coordinates. */
325 FT_Fixed* coords );
344 /* coords :: The design coordinates array (each element must be */
353 FT_Fixed* coords );
367 FT_Fixed* coords );
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftmm.h165 /* coords :: The design coordinates for this style. */
172 FT_Fixed* coords; member in struct:FT_Var_Named_Style_
290 /* coords :: An array of design coordinates. */
298 FT_Long* coords );
317 /* coords :: An array of design coordinates. */
325 FT_Fixed* coords );
344 /* coords :: The design coordinates array (each element must be */
353 FT_Fixed* coords );
367 FT_Fixed* coords );
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_llvm_sample.c175 const LLVMValueRef *coords,
190 num_coords, coords,
170 draw_llvm_sampler_soa_emit_fetch_texel(const struct lp_build_sampler_soa *base, struct gallivm_state *gallivm, struct lp_type type, unsigned unit, unsigned num_coords, const LLVMValueRef *coords, const struct lp_derivatives *derivs, LLVMValueRef lod_bias, LLVMValueRef explicit_lod, LLVMValueRef *texel) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_tex_sample.c180 const LLVMValueRef *coords,
191 lp_build_sample_nop(gallivm, type, num_coords, coords, texel);
200 num_coords, coords,
175 lp_llvm_sampler_soa_emit_fetch_texel(const struct lp_build_sampler_soa *base, struct gallivm_state *gallivm, struct lp_type type, unsigned unit, unsigned num_coords, const LLVMValueRef *coords, const struct lp_derivatives *derivs, LLVMValueRef lod_bias, LLVMValueRef explicit_lod, LLVMValueRef *texel) argument
/external/deqp/modules/gles3/functional/
H A Des3fShaderReturnTests.cpp58 inline void evalReturnAlways (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); }
59 inline void evalReturnNever (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(3,2,1); }
60 inline void evalReturnDynamic (ShaderEvalContext& c) { c.color.xyz() = (c.coords.x()+c.coords.y() >= 0.0f) ? c.coords.swizzle(0,1,2) : c.coords.swizzle(3,2,1); }
145 const char* coords = isVertex ? "a_coords" : "v_coords"; local
151 params["COORDS"] = coords;
159 case RETURNMODE_DYNAMIC: params["RETURNCOND"] = string(coords) + ".x+" + coords
201 const char* coords = isVertex ? "a_coords" : "v_coords"; local
247 const char* coords = isVertex ? "a_coords" : "v_coords"; local
[all...]
H A Des3fReadPixelsTests.cpp144 const float coords[] = local
161 GLU_CHECK_CALL(glVertexAttribPointer(coordLoc, 2, GL_FLOAT, GL_FALSE, 0, coords));
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_llvm_sample.c175 const LLVMValueRef *coords,
190 num_coords, coords,
170 draw_llvm_sampler_soa_emit_fetch_texel(const struct lp_build_sampler_soa *base, struct gallivm_state *gallivm, struct lp_type type, unsigned unit, unsigned num_coords, const LLVMValueRef *coords, const struct lp_derivatives *derivs, LLVMValueRef lod_bias, LLVMValueRef explicit_lod, LLVMValueRef *texel) argument
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tex_sample.c180 const LLVMValueRef *coords,
191 lp_build_sample_nop(gallivm, type, num_coords, coords, texel);
200 num_coords, coords,
175 lp_llvm_sampler_soa_emit_fetch_texel(const struct lp_build_sampler_soa *base, struct gallivm_state *gallivm, struct lp_type type, unsigned unit, unsigned num_coords, const LLVMValueRef *coords, const struct lp_derivatives *derivs, LLVMValueRef lod_bias, LLVMValueRef explicit_lod, LLVMValueRef *texel) argument
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrBicubicEffect.cpp62 const TransformedCoordsArray& coords,
85 SkString coords2D = fsBuilder->ensureFSCoords2D(coords, 0);
97 // starting coords are near a texel boundary and accumulations of imgInc would cause us to skip/
57 emitCode(GrGLProgramBuilder* builder, const GrFragmentProcessor& effect, const GrProcessorKey& key, const char* outputColor, const char* inputColor, const TransformedCoordsArray& coords, const TextureSamplerArray& samplers) argument
H A DGrConvolutionEffect.cpp63 const TransformedCoordsArray& coords,
75 SkString coords2D = fsBuilder->ensureFSCoords2D(coords, 0);
58 emitCode(GrGLProgramBuilder* builder, const GrFragmentProcessor&, const GrProcessorKey& key, const char* outputColor, const char* inputColor, const TransformedCoordsArray& coords, const TextureSamplerArray& samplers) argument
H A DGrTextureDomain.cpp199 const TransformedCoordsArray& coords,
205 SkString coords2D = fsBuilder->ensureFSCoords2D(coords, 0);
299 GrCoordSet coords = random->nextBool() ? kLocal_GrCoordSet : kPosition_GrCoordSet; local
305 coords);
194 emitCode(GrGLProgramBuilder* builder, const GrFragmentProcessor& fp, const GrProcessorKey& key, const char* outputColor, const char* inputColor, const TransformedCoordsArray& coords, const TextureSamplerArray& samplers) argument
/external/deqp/modules/gles2/functional/
H A Des2fReadPixelsTests.cpp100 const float coords[] = local
117 GLU_CHECK_CALL(glVertexAttribPointer(coordLoc, 2, GL_FLOAT, GL_FALSE, 0, coords));
H A Des2fShaderReturnTests.cpp63 inline void evalReturnAlways (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); }
64 inline void evalReturnNever (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(3,2,1); }
65 inline void evalReturnDynamic (ShaderEvalContext& c) { c.color.xyz() = (c.coords.x()+c.coords.y() >= 0.0f) ? c.coords.swizzle(0,1,2) : c.coords.swizzle(3,2,1); }
171 const char* coords = isVertex ? "a_coords" : "v_coords"; local
178 params["COORDS"] = coords;
186 case RETURNMODE_DYNAMIC: params["RETURNCOND"] = string(coords) + ".x+" + coords
226 const char* coords = isVertex ? "a_coords" : "v_coords"; local
271 const char* coords = isVertex ? "a_coords" : "v_coords"; local
[all...]
/external/eigen/bench/
H A Dsparse_setter.cpp47 EIGEN_DONT_INLINE Scalar* setinnerrand_eigen(const Coordinates& coords, const Values& vals);
48 EIGEN_DONT_INLINE Scalar* setrand_eigen_dynamic(const Coordinates& coords, const Values& vals);
49 EIGEN_DONT_INLINE Scalar* setrand_eigen_compact(const Coordinates& coords, const Values& vals);
50 EIGEN_DONT_INLINE Scalar* setrand_eigen_sumeq(const Coordinates& coords, const Values& vals);
51 EIGEN_DONT_INLINE Scalar* setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals);
52 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_dense(const Coordinates& coords, const Values& vals);
53 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals);
54 EIGEN_DONT_INLINE Scalar* setrand_scipy(const Coordinates& coords, const Values& vals);
55 EIGEN_DONT_INLINE Scalar* setrand_ublas_mapped(const Coordinates& coords, const Values& vals);
56 EIGEN_DONT_INLINE Scalar* setrand_ublas_coord(const Coordinates& coords, cons
68 Coordinates coords; local
194 setinnerrand_eigen(const Coordinates& coords, const Values& vals) argument
208 setrand_eigen_dynamic(const Coordinates& coords, const Values& vals) argument
222 setrand_eigen_sumeq(const Coordinates& coords, const Values& vals) argument
241 setrand_eigen_compact(const Coordinates& coords, const Values& vals) argument
255 setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals) argument
271 setrand_eigen_google_dense(const Coordinates& coords, const Values& vals) argument
284 setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals) argument
405 setrand_scipy(const Coordinates& coords, const Values& vals) argument
425 setrand_ublas_mapped(const Coordinates& coords, const Values& vals) argument
464 setrand_ublas_genvec(const Coordinates& coords, const Values& vals) argument
[all...]

Completed in 6776 milliseconds

12345