Home
last modified time | relevance | path

Searched refs:coordinates (Results 1 – 25 of 262) sorted by relevance

1234567891011

/external/python/cpython3/Doc/library/
Dcolorsys.rst18 0 and 1, but the I and Q coordinates can be positive or negative. In all other
19 spaces, the coordinates are all between 0 and 1.
32 Convert the color from RGB coordinates to YIQ coordinates.
37 Convert the color from YIQ coordinates to RGB coordinates.
42 Convert the color from RGB coordinates to HLS coordinates.
47 Convert the color from HLS coordinates to RGB coordinates.
52 Convert the color from RGB coordinates to HSV coordinates.
57 Convert the color from HSV coordinates to RGB coordinates.
/external/python/cpython2/Doc/library/
Dcolorsys.rst17 0 and 1, but the I and Q coordinates can be positive or negative. In all other
18 spaces, the coordinates are all between 0 and 1.
31 Convert the color from RGB coordinates to YIQ coordinates.
36 Convert the color from YIQ coordinates to RGB coordinates.
41 Convert the color from RGB coordinates to HLS coordinates.
46 Convert the color from HLS coordinates to RGB coordinates.
51 Convert the color from RGB coordinates to HSV coordinates.
56 Convert the color from HSV coordinates to RGB coordinates.
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Where.pbtxt9 This operation returns the coordinates of true elements in `input`. The
10 coordinates are returned in a 2-D tensor where the first dimension (rows)
12 represents the coordinates of the true elements. Keep in mind, the shape of
21 # 'input' has two true values, so output has two coordinates.
22 # 'input' has rank of 2, so coordinates have two indices.
32 # 'input' has 5 true values, so output has 5 coordinates.
33 # 'input' has rank of 3, so coordinates have three indices.
46 # 'input' has 5 nonzero values, so output has 5 coordinates.
47 # 'input' has rank of 3, so coordinates have three indices.
60 # 'input' has 5 nonzero magnitude values, so output has 5 coordinates.
[all …]
Dapi_def_ExtractGlimpse.pbtxt34 indicates if the offset coordinates are centered relative to
43 indicates if the offset coordinates are normalized.
75 * If the coordinates are normalized but not centered, 0.0 and 1.0
78 * If the coordinates are both normalized and centered, they range from
79 -1.0 to 1.0. The coordinates (-1.0, -1.0) correspond to the upper
82 * If the coordinates are not normalized they are interpreted as
Dapi_def_DrawBoundingBoxes.pbtxt26 boxes specified by the locations in `boxes`. The coordinates of the each
28 bounding box coordinates are floats in `[0.0, 1.0]` relative to the width and
32 box is `[0.1, 0.2, 0.5, 0.9]`, the upper-left and bottom-right coordinates of
33 the bounding box will be `(40, 10)` to `(180, 50)` (in (x,y) coordinates).
Dapi_def_CropAndResizeGradBoxes.pbtxt20 specifies the coordinates of a box in the `box_ind[i]` image and is specified
21 in normalized coordinates `[y1, x1, y2, x2]`. A normalized coordinate value of
24 `[0, image_height - 1] in image height coordinates. We do allow y1 > y2, in
26 image. The width dimension is treated similarly. Normalized coordinates
Dapi_def_CropAndResizeGradImage.pbtxt13 specifies the coordinates of a box in the `box_ind[i]` image and is specified
14 in normalized coordinates `[y1, x1, y2, x2]`. A normalized coordinate value of
17 `[0, image_height - 1] in image height coordinates. We do allow y1 > y2, in
19 image. The width dimension is treated similarly. Normalized coordinates
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderVertexSpacing.cpp230 std::vector<_tess_coordinate_cartesian> coordinates; in getEdgesForQuadsTessellation() local
240 coordinates.push_back(new_coordinate); in getEdgesForQuadsTessellation()
276 …for (std::vector<_tess_coordinate_cartesian>::const_iterator coordinate_iterator = coordinates.beg… in getEdgesForQuadsTessellation()
277 coordinate_iterator != coordinates.end(); coordinate_iterator++) in getEdgesForQuadsTessellation()
340 std::find(coordinates.begin(), coordinates.end(), corner_coordinate); in getEdgesForQuadsTessellation()
344 if (iterator != coordinates.end()) in getEdgesForQuadsTessellation()
346 coordinates.erase(iterator); in getEdgesForQuadsTessellation()
439 for (std::vector<_tess_coordinate_cartesian>::const_iterator iterator = coordinates.begin(); in getEdgesForQuadsTessellation()
440 iterator != coordinates.end(); iterator++) in getEdgesForQuadsTessellation()
493 std::find(coordinates.begin(), coordinates.end(), coordinate); in getEdgesForQuadsTessellation()
[all …]
/external/tensorflow/tensorflow/python/tpu/
Ddevice_assignment.py37 coordinates = core_assignment[replica, logical_core, :]
38 task_id = topology.task_ordinal_at_coordinates(coordinates)
129 def coordinates(self, replica, logical_core): member in DeviceAssignment
155 coordinates = self.coordinates(replica, logical_core)
156 return self._topology.tpu_device_ordinal_at_coordinates(coordinates)
160 coordinates = self.coordinates(replica, logical_core)
161 return self._topology.cpu_device_name_at_coordinates(coordinates, job=job)
165 coordinates = self.coordinates(replica, logical_core)
166 return self._topology.tpu_device_name_at_coordinates(coordinates, job=job)
/external/skia/include/core/
DSkFontArguments.h21 const Coordinate* coordinates; member
44 fVariationDesignPosition.coordinates = in setAxes()
58 fVariationDesignPosition.coordinates = position.coordinates; in setVariationDesignPosition()
69 return reinterpret_cast<const Axis*>(fVariationDesignPosition.coordinates); in getAxes()
/external/skqp/include/core/
DSkFontArguments.h21 const Coordinate* coordinates; member
44 fVariationDesignPosition.coordinates = in setAxes()
58 fVariationDesignPosition.coordinates = position.coordinates; in setVariationDesignPosition()
69 return reinterpret_cast<const Axis*>(fVariationDesignPosition.coordinates); in getAxes()
/external/eigen/unsupported/test/
Dcxx11_tensor_generator.cpp17 float operator()(const array<Eigen::DenseIndex, 1>& coordinates) const { in operator ()()
18 return coordinates[0]; in operator ()()
37 float operator()(const array<Eigen::DenseIndex, 2>& coordinates) const { in operator ()()
38 return 3 * coordinates[0] + 11 * coordinates[1]; in operator ()()
/external/fonttools/Tests/ttLib/tables/
D_f_v_a_r_test.py63 inst.coordinates = {"wght": weight, "wdth": width}
173 inst.coordinates = {"wght": 0.7, "wdth": 0.5}
181 inst.coordinates = {"wght": 0.7, "wdth": 0.5}
190 self.assertEqual({"wght": 0.7, "wdth": 0.5}, inst.coordinates)
197 self.assertEqual({"wght": 0.7, "wdth": 0.5}, inst.coordinates)
205 inst.coordinates = {"wght": 0.7, "wdth": 0.5}
224 inst.coordinates = {"wght": 0.7, "wdth": 0.5}
247 self.assertEqual({"wght": 0.7, "wdth": 0.5}, inst.coordinates)
259 self.assertEqual({"wght": 0.7, "wdth": 0.5}, inst.coordinates)
/external/ImageMagick/MagickCore/
Ddraw.c773 coordinates, in ConvertPrimitiveToPath() local
795 coordinates=0; in ConvertPrimitiveToPath()
806 if (coordinates <= 0) in ConvertPrimitiveToPath()
811 coordinates=(ssize_t) primitive_info[i].coordinates; in ConvertPrimitiveToPath()
817 coordinates--; in ConvertPrimitiveToPath()
818 if ((code == MoveToCode) || (coordinates <= 0) || in ConvertPrimitiveToPath()
830 if (coordinates > 0) in ConvertPrimitiveToPath()
1351 coordinates; in DrawBoundingRectangles() local
1427 coordinates=(ssize_t) primitive_info[0].coordinates; in DrawBoundingRectangles()
1428 primitive_info[coordinates].primitive=UndefinedPrimitive; in DrawBoundingRectangles()
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py415 ("x", self.coordinates[j][0]),
416 ("y", self.coordinates[j][1]),
443 coordinates = GlyphCoordinates()
451 coordinates.append((safeEval(attrs["x"]), safeEval(attrs["y"])))
458 self.coordinates = coordinates
460 self.endPtsOfContours = [len(coordinates)-1]
462 self.coordinates.extend (coordinates)
464 self.endPtsOfContours.append(len(self.coordinates)-1)
501 return len(self.coordinates), len(self.endPtsOfContours)
541 self.coordinates = coordinates = GlyphCoordinates.zeros(nCoordinates)
[all …]
DTupleVariation.py33 def __init__(self, axes, coordinates): argument
35 self.coordinates = coordinates[:]
39 return "<TupleVariation %s %s>" % (axes, self.coordinates)
42 return self.coordinates == other.coordinates and self.axes == other.axes
46 for i, point in enumerate(self.coordinates):
57 for c in self.coordinates:
83 for i, delta in enumerate(self.coordinates):
117 self.coordinates[point] = (x, y)
121 self.coordinates[cvt] = value
150 numPointsInGlyph = len(self.coordinates)
[all …]
D_f_v_a_r.py160 self.coordinates = {}
165 fixedCoord = floatToFixed(self.coordinates[axis], 16)
176 self.coordinates[axis] = fixedToFloat(value, 16)
203 value=self.coordinates[axis.axisTag])
219 self.coordinates[elementAttrs["axis"]] = safeEval(elementAttrs["value"])
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
DEuclideanIntegerPoint.java109 final int[] coordinates = getPoint(); in toString() local
110 for (int i = 0; i < coordinates.length; i++) { in toString()
111 buff.append(coordinates[i]); in toString()
112 if (i < coordinates.length - 1) { in toString()
/external/mesa3d/docs/specs/OLD/
DMESA_sprite_point.spec53 texture coordinates. The r and q coordinates may have been computed
74 texture and appropriate texture r coordinates could be used to
125 texture coordinates are computed as follows:
134 point's 3rd and 4th texture coordinates and r is half the point's
/external/mesa3d/src/gallium/docs/source/
Dresources.rst83 1D surface accessed with normalized coordinates.
92 - Must use normalized coordinates
107 - Must use unnormalized coordinates
114 D3D11: not supported (only PIPE_TEXTURE_2D with normalized coordinates is supported)
118 2D surface accessed with normalized coordinates.
126 - Must use normalized coordinates
143 Mipmap dimensions are reduced in all 3 coordinates.
148 - Must use normalized coordinates
174 - Must use normalized coordinates
/external/skqp/gm/
Dfontscalerdistortable.cpp56 SkFontArguments::VariationPosition::Coordinate coordinates[] = {{tag, styleValue}}; in onDraw() local
58 { coordinates, SK_ARRAY_COUNT(coordinates) }; in onDraw()
/external/skia/gm/
Dfontscalerdistortable.cpp57 SkFontArguments::VariationPosition::Coordinate coordinates[] = {{tag, styleValue}}; in onDraw() local
59 { coordinates, SK_ARRAY_COUNT(coordinates) }; in onDraw()
/external/skqp/tests/
DFontMgrFontConfigTest.cpp69 coordinates[] = {{tag, styleValue}}; in DEF_TEST() local
71 position = {coordinates, SK_ARRAY_COUNT(coordinates)}; in DEF_TEST()
/external/skia/tests/
DFontMgrFontConfigTest.cpp69 coordinates[] = {{tag, styleValue}}; in DEF_TEST() local
71 position = {coordinates, SK_ARRAY_COUNT(coordinates)}; in DEF_TEST()
/external/tensorflow/tensorflow/compiler/xla/
Dtext_literal_reader.cc81 std::vector<absl::string_view> coordinates; in ReadAllLines() local
102 coordinates = absl::StrSplit(coordinates_string, ','); in ReadAllLines()
104 for (absl::string_view piece : coordinates) { in ReadAllLines()

1234567891011