HomeSort by relevance Sort by last modified time
    Searched refs:coordinate (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cubemap_normalize.cpp 59 ir_variable *var = new(mem_ctx) ir_variable(ir->coordinate->type,
60 "coordinate", ir_var_auto);
63 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, ir->coordinate,
92 ir->coordinate = new(mem_ctx) ir_expression(ir_binop_mul,
93 ir->coordinate->type,
brw_fs_visitor.cpp 750 fs_visitor::emit_texture_gen4(ir_texture *ir, fs_reg dst, fs_reg coordinate,
762 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
763 emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen + i), coordinate);
764 coordinate.reg_offset++;
785 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
786 emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen + i), coordinate);
787 coordinate.reg_offset++;
794 for (int i = 0; i < ir->coordinate->type->vector_elements; i++) {
795 emit(BRW_OPCODE_MOV, fs_reg(MRF, base_mrf + mlen + i), coordinate);
796 coordinate.reg_offset++
1178 fs_reg coordinate = this->result; local
1296 fs_reg coordinate = emit_texcoord(ir, sampler, texunit); local
    [all...]
brw_fs.h 310 fs_inst *emit_texture_gen4(ir_texture *ir, fs_reg dst, fs_reg coordinate,
312 fs_inst *emit_texture_gen5(ir_texture *ir, fs_reg dst, fs_reg coordinate,
314 fs_inst *emit_texture_gen7(ir_texture *ir, fs_reg dst, fs_reg coordinate,
brw_vec4_visitor.cpp 1844 src_reg coordinate; local
    [all...]
  /external/mesa3d/src/glsl/
lower_texture_projection.cpp 72 ir->coordinate = new(mem_ctx) ir_expression(ir_binop_mul,
73 ir->coordinate->type,
74 ir->coordinate,
ir_clone.cpp 236 if (this->coordinate)
237 new_tex->coordinate = this->coordinate->clone(mem_ctx, ht);
ir_rvalue_visitor.cpp 53 handle_rvalue(&ir->coordinate);
ir_hv_accept.cpp 190 if (this->coordinate) {
191 s = this->coordinate->accept(v);
opt_tree_grafting.cpp 268 if (do_graft(&ir->coordinate) ||
ir.h 1399 ir_rvalue *coordinate; member in class:ir_texture
    [all...]
ir_print_visitor.cpp 249 ir->coordinate->accept(this);
  /frameworks/base/location/java/android/location/
Location.java 181 * Converts a coordinate to a String representation. The outputType
183 * The coordinate must be a valid double between -180.0 and 180.0.
188 * @throws IllegalArgumentException if coordinate is less than
193 public static String convert(double coordinate, int outputType) {
194 if (coordinate < -180.0 || coordinate > 180.0 ||
195 Double.isNaN(coordinate)) {
196 throw new IllegalArgumentException("coordinate=" + coordinate);
207 if (coordinate < 0)
    [all...]
  /external/icu/icu4c/source/layout/
GlyphDefinitionTables.h 69 le_int16 coordinate; member in struct:CaretValueFormat1Table
79 le_int16 coordinate; member in struct:CaretValueFormat3Table
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
Constants.java 186 public static boolean isValidCoordinate(final int coordinate) {
189 return coordinate >= 0;
  /external/mesa3d/docs/
MESA_window_pos.spec 32 coordinate with the RasterPos command, the modelview matrix, projection
34 desired window coordinate is outside of the window's bounds one must
44 position to a specific window coordinate prior to calling DrawPixels,
97 color, color index and texture coordinate update the current raster
MESA_texture_array.spec 75 coordinate.
134 reflects the fact that the R coordinate is not always used.)
278 "Let s(x,y) be the function that associates an s texture coordinate
448 texture coordinate, clamped to the range [0, 1]. For texture lookups
450 <q> texture coordinate, clamped to the range [0, 1]. Then the
553 coordinate mappings. The "coordinates used" column indicate the
554 input values used for each coordinate of the texture lookup, the
558 -- Section 3.11.6.2 "TXP: Project coordinate and map to color"
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/HighGUI/GDAL_IO/
gdal-image.cpp 107 * Given a pixel coordinate and the size of the input image, compute the pixel location
110 cv::Point2d world2dem( cv::Point2d const& coordinate, const cv::Size& dem_size ){
115 double demRatioX = ((dem_tr.x - coordinate.x)/(dem_tr.x - dem_bl.x));
116 double demRatioY = 1-((dem_tr.y - coordinate.y)/(dem_tr.y - dem_bl.y));
126 * Convert a pixel coordinate to world coordinates
134 // compute LERP of each coordinate
138 // compute the actual Lat/Lon coordinate of the interpolated coordinate
198 // convert the pixel coordinate to lat/lon coordinates
199 cv::Point2d coordinate = pixel2world( x, y, image.size() ) local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gdef-table.hh 102 return HB_DIRECTION_IS_HORIZONTAL (direction) ? font->em_scale_x (coordinate) : font->em_scale_y (coordinate);
113 SHORT coordinate; /* X or Y value, in design units */ member in struct:OT::CaretValueFormat1
152 font->em_scale_x (coordinate) + (this+deviceTable).get_x_delta (font) :
153 font->em_scale_y (coordinate) + (this+deviceTable).get_y_delta (font);
164 SHORT coordinate; /* X or Y value, in design units */ member in struct:OT::CaretValueFormat3
237 * --in increasing coordinate order */
  /external/mesa3d/docs/OLD/
MESA_sprite_point.spec 46 The lower-left corner has texture coordinate (0,0,r,q).
55 texgen that the r coordinate could be used to select a slice in the
127 vertex window coordinate texture coordinate
135 size. The other vertex attributes (such as the color and fog coordinate)
146 If multiple texture units are present the same texture coordinate is
  /external/ImageMagick/MagickCore/
geometry.c 857 coordinate;
874 c=sscanf(geometry,"%lf%*[ ,]%lf%*[ ,]%lf%*[ ,]%lf",&coordinate.rho,
875 &coordinate.sigma,&coordinate.xi,&coordinate.psi);
879 Special case: coordinate (e.g. 0,0 255,255).
881 geometry_info->rho=coordinate.rho;
882 geometry_info->sigma=coordinate.sigma;
883 geometry_info->xi=coordinate.xi;
884 geometry_info->psi=coordinate.psi
848 coordinate; local
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/widget/
AutoScrollHelper.java 538 int direction, float coordinate, float srcSize, float dstSize) {
541 final float value = getEdgeValue(relativeEdge, srcSize, maximumEdge, coordinate);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AutoScrollHelper.java 537 int direction, float coordinate, float srcSize, float dstSize) {
540 final float value = getEdgeValue(relativeEdge, srcSize, maximumEdge, coordinate);
    [all...]
  /external/clang/www/analyzer/scripts/
expandcollapse.js 122 // Calculate expandableDiv absolute Y coordinate from the top of body.
126 // Calculate the absoute Y coordinate of visible area.
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
MultiSelectManager.java     [all...]
  /external/ImageMagick/www/api/
drawing-wand.php     [all...]

Completed in 532 milliseconds

1 2 3 4 5 6 7