Searched refs:coords (Results 51 - 75 of 251) sorted by relevance

1234567891011

/external/python/cpython2/Tools/pynche/
H A DStripViewer.py124 coords = self._canvas.coords(self._TAG)
125 assert coords
126 return coords[0]
156 coords = self._canvas.coords(self._TAG)
157 assert coords
158 return coords[0] + self._ARROWWIDTH
237 coords = self.__canvas.coords(chipnu
[all...]
/external/python/cpython3/Tools/pynche/
H A DStripViewer.py124 coords = list(self._canvas.coords(self._TAG))
125 assert coords
126 return coords[0]
156 coords = list(self._canvas.coords(self._TAG))
157 assert coords
158 return coords[0] + self._ARROWWIDTH
237 coords = self.__canvas.coords(chipnu
[all...]
/external/mesa3d/src/gallium/drivers/ilo/shader/
H A Dilo_shader_fs.c569 struct toy_src *coords, int num_coords,
583 tc_MOV(tc, SAMPLER_PARAM(i), coords[i]);
589 tc_MOV(tc, SAMPLER_PARAM(i), coords[i]);
595 tc_MOV(tc, SAMPLER_PARAM(i), coords[i]);
601 tc_MOV(tc, SAMPLER_PARAM(i), coords[i]);
611 tc_MOV(tc, SAMPLER_PARAM(i), coords[i]);
620 tc_MOV(tc, tdst_d(SAMPLER_PARAM(i)), coords[i]);
642 struct toy_src *coords, int num_coords,
656 tc_MOV(tc, SAMPLER_PARAM(i), coords[i]);
663 tc_MOV(tc, SAMPLER_PARAM(1 + i), coords[
567 fs_add_sampler_params_gen6(struct toy_compiler *tc, int msg_type, int base_mrf, int param_size, struct toy_src *coords, int num_coords, struct toy_src bias_or_lod, struct toy_src ref_or_si, struct toy_src *ddx, struct toy_src *ddy, int num_derivs) argument
640 fs_add_sampler_params_gen7(struct toy_compiler *tc, int msg_type, int base_mrf, int param_size, struct toy_src *coords, int num_coords, struct toy_src bias_or_lod, struct toy_src ref_or_si, struct toy_src *ddx, struct toy_src *ddy, int num_derivs) argument
724 struct toy_src coords[4], ddx[4], ddy[4], bias_or_lod, ref_or_si; local
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-var.h93 int *coords, /* OUT */
H A Dhb-ot-shape-private.hh81 const int *coords,
86 map.compile (plan.map, coords, num_coords);
80 compile(hb_ot_shape_plan_t &plan, const int *coords, unsigned int num_coords) argument
H A Dhb-ot-var-hvar-table.hh116 int *coords, unsigned int coord_count) const
119 return (this+varStore).get_delta (varidx, coords, coord_count);
115 get_advance_var(hb_codepoint_t glyph, int *coords, unsigned int coord_count) const argument
H A Dhb-font.cc1164 font->coords = nullptr;
1167 unsigned int size = parent->num_coords * sizeof (parent->coords[0]);
1168 font->coords = (int *) malloc (size);
1169 if (unlikely (!font->coords))
1172 memcpy (font->coords, parent->coords, size);
1206 nullptr, /* coords */
1262 free (font->coords);
1618 int *coords, /* 2.14 normalized */
1621 free (font->coords);
1617 _hb_font_adopt_var_coords_normalized(hb_font_t *font, int *coords, unsigned int coords_length) argument
1664 hb_font_set_var_coords_design(hb_font_t *font, const float *coords, unsigned int coords_length) argument
1685 hb_font_set_var_coords_normalized(hb_font_t *font, const int *coords, unsigned int coords_length) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderDiscardTests.cpp167 inline void evalDiscardNever (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); }
168 inline void evalDiscardDynamic (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); if (c.coords.x()+c.coords.y() > 0.0f) c.discard(); }
172 c.color.xyz() = c.coords.swizzle(0,1,2);
173 if (c.texture2D(0, c.coords.swizzle(0,1) * 0.25f + 0.5f).x() < 0.7f)
/external/deqp/modules/gles2/functional/
H A Des2fShaderDiscardTests.cpp170 inline void evalDiscardNever (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); }
171 inline void evalDiscardDynamic (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); if (c.coords.x()+c.coords.y() > 0.0f) c.discard(); }
175 c.color.xyz() = c.coords.swizzle(0,1,2);
176 if (c.texture2D(0, c.coords.swizzle(0,1) * 0.25f + 0.5f).x() < 0.7f)
H A Des2fShaderIndexingTests.cpp108 void evalArrayCoordsFloat (ShaderEvalContext& c) { c.color.x() = 1.875f * c.coords.x(); }
109 void evalArrayCoordsVec2 (ShaderEvalContext& c) { c.color.xy() = 1.875f * c.coords.swizzle(0,1); }
110 void evalArrayCoordsVec3 (ShaderEvalContext& c) { c.color.xyz() = 1.875f * c.coords.swizzle(0,1,2); }
111 void evalArrayCoordsVec4 (ShaderEvalContext& c) { c.color = 1.875f * c.coords; }
281 vtx << " ${PRECISION} ${VAR_TYPE} coords = ${VAR_TYPE}(a_coords);\n";
284 vtx << " var[i] = ${VAR_TYPE}(coords);\n";
285 vtx << " coords = coords * 0.5;\n";
291 vtx << " ${PRECISION} ${VAR_TYPE} coords = ${VAR_TYPE}(a_coords);\n";
294 vtx << " var[i] = ${VAR_TYPE}(coords);\
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderDiscardTests.cpp150 inline void evalDiscardNever (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); }
151 inline void evalDiscardDynamic (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); if (c.coords.x()+c.coords.y() > 0.0f) c.discard(); }
155 c.color.xyz() = c.coords.swizzle(0,1,2);
156 if (c.texture2D(0, c.coords.swizzle(0,1) * 0.25f + 0.5f).x() < 0.7f)
/external/freetype/src/truetype/
H A Dttgxvar.h225 /* coords :: */
233 /* `coords' holds the same values. */
304 FT_Fixed* coords; member in struct:GX_BlendRec_
385 FT_Fixed* coords );
390 FT_Fixed* coords );
395 FT_Fixed* coords );
404 FT_Fixed* coords );
437 FT_Fixed* *coords,
H A Dttgxvar.c902 /* ignore this region if coords are out of range */
1711 FT_Fixed* coords,
1739 FT_Fixed coord = coords[i];
1807 FT_Fixed* coords,
1829 design[i] = coords[i];
2122 mmvar->namedstyle[i].coords = next_coords;
2233 c = ns->coords;
2286 ft_var_to_normalized( face, num_axes, ns->coords, nsc );
2335 c = ns->coords;
2367 mmvar->namedstyle[n].coords
1709 ft_var_to_normalized( TT_Face face, FT_UInt num_coords, FT_Fixed* coords, FT_Fixed* normalized ) argument
1805 ft_var_to_design( TT_Face face, FT_UInt num_coords, FT_Fixed* coords, FT_Fixed* design ) argument
2401 tt_set_mm_blend( TT_Face face, FT_UInt num_coords, FT_Fixed* coords, FT_Bool set_design_coords ) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c67 * Generate code to fetch a texel from a texture at int coords (x, y, z).
139 /* convert x,y,z coords to linear offset from start of texture, in bytes */
153 * Simply AND the texture coords with !use_border. This will cause
154 * coords which are out of bounds to become zero. Zero's guaranteed
509 only potentially matters for very large coords */
725 LLVMValueRef *coords,
756 x = lp_build_sample_wrap_nearest(bld, coords[0], width_vec,
763 y = lp_build_sample_wrap_nearest(bld, coords[1], height_vec,
770 z = lp_build_sample_wrap_nearest(bld, coords[2], depth_vec,
780 z = lp_build_add(&bld->int_coord_bld, coords[
719 lp_build_sample_image_nearest(struct lp_build_sample_context *bld, LLVMValueRef size, LLVMValueRef row_stride_vec, LLVMValueRef img_stride_vec, LLVMValueRef data_ptr, LLVMValueRef mipoffsets, LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef colors_out[4]) argument
864 lp_build_sample_image_linear(struct lp_build_sample_context *bld, boolean is_gather, LLVMValueRef size, LLVMValueRef linear_mask, LLVMValueRef row_stride_vec, LLVMValueRef img_stride_vec, LLVMValueRef data_ptr, LLVMValueRef mipoffsets, LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef colors_out[4]) argument
1502 lp_build_sample_mipmap(struct lp_build_sample_context *bld, unsigned img_filter, unsigned mip_filter, boolean is_gather, LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef ilevel0, LLVMValueRef ilevel1, LLVMValueRef lod_fpart, LLVMValueRef *colors_out) argument
1644 lp_build_sample_mipmap_both(struct lp_build_sample_context *bld, LLVMValueRef linear_mask, unsigned mip_filter, LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef ilevel0, LLVMValueRef ilevel1, LLVMValueRef lod_fpart, LLVMValueRef lod_positive, LLVMValueRef *colors_out) argument
1793 lp_build_sample_common(struct lp_build_sample_context *bld, unsigned texture_index, unsigned sampler_index, LLVMValueRef *coords, const struct lp_derivatives *derivs, LLVMValueRef lod_bias, LLVMValueRef explicit_lod, LLVMValueRef *lod_pos_or_zero, LLVMValueRef *lod_fpart, LLVMValueRef *ilevel0, LLVMValueRef *ilevel1) argument
2147 lp_build_sample_general(struct lp_build_sample_context *bld, unsigned sampler_unit, boolean is_gather, LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef lod_positive, LLVMValueRef lod_fpart, LLVMValueRef ilevel0, LLVMValueRef ilevel1, LLVMValueRef *colors_out) argument
2304 lp_build_fetch_texel(struct lp_build_sample_context *bld, unsigned texture_unit, const LLVMValueRef *coords, LLVMValueRef explicit_lod, const LLVMValueRef *offsets, LLVMValueRef *colors_out) argument
2434 lp_build_sample_nop(struct gallivm_state *gallivm, struct lp_type type, const LLVMValueRef *coords, LLVMValueRef texel_out[4]) argument
2457 lp_build_sample_soa_code(struct gallivm_state *gallivm, const struct lp_static_texture_state *static_texture_state, const struct lp_static_sampler_state *static_sampler_state, struct lp_sampler_dynamic_state *dynamic_state, struct lp_type type, unsigned sample_key, unsigned texture_index, unsigned sampler_index, LLVMValueRef context_ptr, LLVMValueRef thread_data_ptr, const LLVMValueRef *coords, const LLVMValueRef *offsets, const struct lp_derivatives *derivs, LLVMValueRef lod, LLVMValueRef texel_out[4]) argument
3109 LLVMValueRef coords[5]; local
3231 const LLVMValueRef *coords = params->coords; local
[all...]
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_tgsi.c130 struct ureg_src coords,
136 ureg_MAD(ureg, tmp, coords, const0, const1);
147 struct ureg_src coords,
175 ureg_scalar(coords, TGSI_SWIZZLE_Y),
178 ureg_scalar(coords, TGSI_SWIZZLE_X),
181 ureg_MUL(ureg, temp2, ureg_src(temp1), ureg_scalar(coords, TGSI_SWIZZLE_Z));
198 struct ureg_src coords,
225 ureg_MUL(ureg, temp0, ureg_scalar(coords, TGSI_SWIZZLE_Y),
228 ureg_scalar(coords, TGSI_SWIZZLE_X),
238 ureg_MUL(ureg, temp2, ureg_scalar(coords, TGSI_SWIZZLE_
129 vs_normalize_coords(struct ureg_program *ureg, struct ureg_src coords, struct ureg_src const0, struct ureg_src const1) argument
143 linear_gradient(struct ureg_program *ureg, struct ureg_dst out, struct ureg_src pos, struct ureg_src sampler, struct ureg_src coords, struct ureg_src const0124, struct ureg_src matrow0, struct ureg_src matrow1, struct ureg_src matrow2) argument
194 radial_gradient(struct ureg_program *ureg, struct ureg_dst out, struct ureg_src pos, struct ureg_src sampler, struct ureg_src coords, struct ureg_src const0124, struct ureg_src matrow0, struct ureg_src matrow1, struct ureg_src matrow2) argument
382 xrender_tex(struct ureg_program *ureg, struct ureg_dst dst, struct ureg_src coords, struct ureg_src sampler, struct ureg_src imm0, boolean repeat_none, boolean swizzle, boolean set_alpha) argument
541 struct ureg_src coords, const0124, matrow0, matrow1, matrow2; local
[all...]
/external/skia/src/pdf/
H A DSkPDFGradientShader.cpp635 auto coords = sk_make_sp<SkPDFArray>(); local
637 coords->reserve(6);
644 coords->appendScalar(pt1.fX);
645 coords->appendScalar(pt1.fY);
646 coords->appendScalar(r1);
648 coords->appendScalar(pt2.fX);
649 coords->appendScalar(pt2.fY);
650 coords->appendScalar(r2);
652 coords->reserve(6);
655 coords
[all...]
/external/skqp/src/pdf/
H A DSkPDFGradientShader.cpp635 auto coords = sk_make_sp<SkPDFArray>(); local
637 coords->reserve(6);
644 coords->appendScalar(pt1.fX);
645 coords->appendScalar(pt1.fY);
646 coords->appendScalar(r1);
648 coords->appendScalar(pt2.fX);
649 coords->appendScalar(pt2.fY);
650 coords->appendScalar(r2);
652 coords->reserve(6);
655 coords
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_attrib_tmp.h936 TAG(TexCoordP1ui)(GLenum type, GLuint coords) argument
940 ATTR_UI(ctx, 1, type, 0, VBO_ATTRIB_TEX0, coords);
944 TAG(TexCoordP1uiv)(GLenum type, const GLuint *coords) argument
948 ATTR_UI(ctx, 1, type, 0, VBO_ATTRIB_TEX0, coords[0]);
952 TAG(TexCoordP2ui)(GLenum type, GLuint coords) argument
956 ATTR_UI(ctx, 2, type, 0, VBO_ATTRIB_TEX0, coords);
960 TAG(TexCoordP2uiv)(GLenum type, const GLuint *coords) argument
964 ATTR_UI(ctx, 2, type, 0, VBO_ATTRIB_TEX0, coords[0]);
968 TAG(TexCoordP3ui)(GLenum type, GLuint coords) argument
972 ATTR_UI(ctx, 3, type, 0, VBO_ATTRIB_TEX0, coords);
976 TexCoordP3uiv(GLenum type, const GLuint *coords) argument
984 TexCoordP4ui(GLenum type, GLuint coords) argument
992 TexCoordP4uiv(GLenum type, const GLuint *coords) argument
1000 MultiTexCoordP1ui(GLenum target, GLenum type, GLuint coords) argument
1009 MultiTexCoordP1uiv(GLenum target, GLenum type, const GLuint *coords) argument
1018 MultiTexCoordP2ui(GLenum target, GLenum type, GLuint coords) argument
1027 MultiTexCoordP2uiv(GLenum target, GLenum type, const GLuint *coords) argument
1036 MultiTexCoordP3ui(GLenum target, GLenum type, GLuint coords) argument
1045 MultiTexCoordP3uiv(GLenum target, GLenum type, const GLuint *coords) argument
1054 MultiTexCoordP4ui(GLenum target, GLenum type, GLuint coords) argument
1063 MultiTexCoordP4uiv(GLenum target, GLenum type, const GLuint *coords) argument
1072 NormalP3ui(GLenum type, GLuint coords) argument
1080 NormalP3uiv(GLenum type, const GLuint *coords) argument
[all...]
/external/eigen/unsupported/test/
H A Dcxx11_tensor_map.cpp208 array<ptrdiff_t, 3> coords; local
209 coords[0] = i;
210 coords[1] = j;
211 coords[2] = k;
212 mat5(coords) = val;
/external/tensorflow/tensorflow/contrib/image/kernels/
H A Dsegmentation_ops.h253 operator()(const Eigen::array<Eigen::DenseIndex, 1>& coords) const {
254 return coords[0];
286 operator()(const Eigen::array<Eigen::DenseIndex, 1>& coords) const {
287 if (is_nonzero<T>(images_[coords[0]])) {
290 return union_find_.find(coords[0]) + 1;
/external/deqp/framework/common/
H A DtcuTexCompareVerifier.cpp880 const CubeFaceFloatCoords& coords,
886 const int size0 = texture.getLevelFace(baseLevelNdx, coords.face).getWidth();
887 const int size1 = texture.getLevelFace(baseLevelNdx+1, coords.face).getWidth();
889 const Vec2 uBounds0 = computeNonNormalizedCoordBounds(sampler.normalizedCoords, size0, coords.s, prec.coordBits.x(), prec.uvwBits.x());
890 const Vec2 uBounds1 = computeNonNormalizedCoordBounds(sampler.normalizedCoords, size1, coords.s, prec.coordBits.x(), prec.uvwBits.x());
891 const Vec2 vBounds0 = computeNonNormalizedCoordBounds(sampler.normalizedCoords, size0, coords.t, prec.coordBits.y(), prec.uvwBits.y());
892 const Vec2 vBounds1 = computeNonNormalizedCoordBounds(sampler.normalizedCoords, size1, coords.t, prec.coordBits.y(), prec.uvwBits.y());
924 const CubeFaceIntCoords c00 = remapCubeEdgeCoords(CubeFaceIntCoords(coords.face, IVec2(i0+0, j0+0)), size0);
925 const CubeFaceIntCoords c10 = remapCubeEdgeCoords(CubeFaceIntCoords(coords.face, IVec2(i0+1, j0+0)), size0);
926 const CubeFaceIntCoords c01 = remapCubeEdgeCoords(CubeFaceIntCoords(coords
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dsizeofpack.cpp169 using coords = typename coords_alias<Order, MemoryTag>::type;
173 coords<sizeof...(Args), MemTag>>::type
/external/freetype/include/freetype/internal/
H A Dpshints.h159 * coords ::
167 * `coords[0]' is the absolute stem position (lowest coordinate);
168 * `coords[1]' is the length.
175 * the real stem position is `coords[0]+coords[1]'.
181 FT_Fixed* coords );
200 * coords ::
215 FT_Fixed* coords );
449 * coords ::
456 * There are `2*count' elements in the `coords' arra
[all...]
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemImageValidator.cpp119 << "1: " << refData.coords[0] << "\n"
120 << "2: " << refData.coords[1] << "\n"
121 << "3: " << refData.coords[2] << "\n"
122 << "4: " << refData.coords[3] << "\n"
/external/freetype/src/tools/ftfuzzer/
H A Dftfuzzer.cc223 vector<FT_Fixed> coords( variations->num_axis );
227 coords[i] = ( variations->axis[i].minimum +
231 FT_UInt( coords.size() ),
232 coords.data() ) )

Completed in 1017 milliseconds

1234567891011