Home
last modified time | relevance | path

Searched refs:nearest (Results 1 – 25 of 176) sorted by relevance

12345678

/external/valgrind/none/tests/s390x/
Drounding-6.stdout.exp1 cfebr 1.250000 -> 1 cc = 2 [-> nearest even]
5 cfebr 1.500000 -> 2 cc = 2 [-> nearest even]
9 cfebr 2.500000 -> 2 cc = 2 [-> nearest even]
13 cfebr 1.750000 -> 2 cc = 2 [-> nearest even]
17 cfebr -1.250000 -> -1 cc = 1 [-> nearest even]
21 cfebr -1.500000 -> -2 cc = 1 [-> nearest even]
25 cfebr -2.500000 -> -2 cc = 1 [-> nearest even]
29 cfebr -1.750000 -> -2 cc = 1 [-> nearest even]
33 cfebr 0.000000 -> 0 cc = 0 [-> nearest even]
37 cgebr 1.250000 -> 1 cc = 2 [-> nearest even]
[all …]
Dfixbr.stdout.exp1 fixbr 1.25000 -> 1 [-> nearest even]
5 fixbr 1.50000 -> 2 [-> nearest even]
9 fixbr 2.50000 -> 2 [-> nearest even]
13 fixbr 1.75000 -> 2 [-> nearest even]
17 fixbr -1.25000 -> -1 [-> nearest even]
21 fixbr -1.50000 -> -2 [-> nearest even]
25 fixbr -2.50000 -> -2 [-> nearest even]
29 fixbr -1.75000 -> -2 [-> nearest even]
33 fixbr 0.00000 -> 0 [-> nearest even]
/external/tensorflow/tensorflow/tools/api/golden/
Dtensorflow.keras.preprocessing.image.pbtxt21 …', \'fill_mode\', \'cval\'], varargs=None, keywords=None, defaults=[\'0\', \'nearest\', \'0.0\'], "
37 …\', \'interpolation\'], varargs=None, keywords=None, defaults=[\'False\', \'None\', \'nearest\'], "
45 …\', \'cval\'], varargs=None, keywords=None, defaults=[\'1\', \'2\', \'0\', \'nearest\', \'0.0\'], "
49 …\', \'cval\'], varargs=None, keywords=None, defaults=[\'1\', \'2\', \'0\', \'nearest\', \'0.0\'], "
53 …\', \'cval\'], varargs=None, keywords=None, defaults=[\'1\', \'2\', \'0\', \'nearest\', \'0.0\'], "
57 …\', \'cval\'], varargs=None, keywords=None, defaults=[\'1\', \'2\', \'0\', \'nearest\', \'0.0\'], "
Dtensorflow.keras.preprocessing.image.-image-data-generator.pbtxt7 …se\', \'1e-06\', \'0.0\', \'0.0\', \'0.0\', \'0.0\', \'0.0\', \'0.0\', \'nearest\', \'0.0\', \'Fal…
19 …', \'categorical\', \'32\', \'True\', \'None\', \'None\', \'\', \'png\', \'False\', \'nearest\'], "
/external/python/cpython3/Tools/pynche/
DColorDB.py100 def nearest(self, red, green, blue): member in ColorDB
105 nearest = -1
113 if nearest == -1 or distance < nearest:
114 nearest = distance
263 nearest = colordb.nearest(r, g, b) variable
265 print('found nearest color', nearest, 'in', t1-t0, 'seconds')
DChipViewer.py109 nearest = colordb.nearest(red, green, blue)
110 nearest_tuple = colordb.find_byname(nearest)
117 self.__selected.set_message(nearest)
121 self.__nearest.set_message(nearest)
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
DPolynomialFunctionLagrangeForm.java166 int nearest = 0; in evaluate() local
178 nearest = i; in evaluate()
184 double value = y[nearest]; in evaluate()
201 if (nearest < 0.5*(n-i+1)) { in evaluate()
202 value += c[nearest]; // fork down in evaluate()
204 nearest--; in evaluate()
205 value += d[nearest]; // fork up in evaluate()
/external/python/cpython2/Tools/pynche/
DColorDB.py101 def nearest(self, red, green, blue): member in ColorDB
106 nearest = -1
114 if nearest == -1 or distance < nearest:
115 nearest = distance
268 nearest = colordb.nearest(r, g, b) variable
270 print 'found nearest color', nearest, 'in', t1-t0, 'seconds'
DChipViewer.py109 nearest = colordb.nearest(red, green, blue)
110 nearest_tuple = colordb.find_byname(nearest)
117 self.__selected.set_message(nearest)
121 self.__nearest.set_message(nearest)
/external/libpng/intel/
Dfilter_sse2_intrinsics.c272 __m128i pa,pb,pc,smallest,nearest; in png_read_filter_row_paeth3_sse2() local
293 nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth3_sse2()
298 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth3_sse2()
309 __m128i pa,pb,pc,smallest,nearest; in png_read_filter_row_paeth3_sse2() local
329 nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth3_sse2()
334 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth3_sse2()
361 __m128i pa,pb,pc,smallest,nearest; in png_read_filter_row_paeth4_sse2() local
391 nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth4_sse2()
396 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth4_sse2()
/external/libpng/contrib/intel/
Dfilter_sse2_intrinsics.c270 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth3_sse2() local
275 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth3_sse2()
305 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth3_sse2() local
310 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth3_sse2()
364 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth4_sse2() local
369 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth4_sse2()
/external/pdfium/third_party/libpng16/contrib/intel/
Dfilter_sse2_intrinsics.c270 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth3_sse2() local
275 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth3_sse2()
305 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth3_sse2() local
310 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth3_sse2()
364 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, in png_read_filter_row_paeth4_sse2() local
369 d = _mm_add_epi8(d, nearest); in png_read_filter_row_paeth4_sse2()
/external/tensorflow/tensorflow/docs_src/programmers_guide/
Dembedding.md38 flexible measure of object similarity. One common use is to find nearest
40 three nearest neighbors for each word and the corresponding angles:
94 points and see a list of nearest neighbors.
130 [metadata](#metadata) for that point. You can also inspect nearest-neighbor
131 subsets. Clicking on a point causes the right pane to list the nearest
132 neighbors, along with distances to the current point. The nearest-neighbor
139 - After clicking on a point, its nearest neighbors are also selected.
148 ![Selection of nearest neighbors](https://www.tensorflow.org/images/embedding-nearest-points.png "S…
150 *Selection of the nearest neighbors of “important” in a word embedding dataset.*
153 filtered the 100 nearest neighbors of “politics” and projected them onto the
/external/deqp/external/vulkancts/mustpass/1.0.0/
Dvk-default.txt35182 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.min_filter.nearest
35184 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mag_filter.nearest
35185 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.equal_min_3_max_3
35186 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_min_1
35187 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_max_4
35188 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_2_1
35189 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_2_5
35190 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_3_1
35191 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_3_7
35229 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4b4a4_unorm_pack16.min_filter.nearest
[all …]
/external/deqp/android/cts/nyc/
Dvk-master.txt35189 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.min_filter.nearest
35191 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mag_filter.nearest
35192 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.equal_min_3_max_3
35193 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_min_1
35194 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_max_4
35195 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_2_1
35196 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_2_5
35197 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_3_1
35198 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_3_7
35236 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4b4a4_unorm_pack16.min_filter.nearest
[all …]
/external/deqp/android/cts/nyc/src/
Dvk-master.txt32717 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.min_filter.nearest
32719 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mag_filter.nearest
32720 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.equal_min_3_max_3
32721 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_min_1
32722 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_max_4
32723 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_2_1
32724 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_2_5
32725 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_3_1
32726 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_3_7
32764 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4b4a4_unorm_pack16.min_filter.nearest
[all …]
/external/deqp/external/vulkancts/mustpass/1.0.0/src/
Dmaster.txt32710 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.min_filter.nearest
32712 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mag_filter.nearest
32713 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.equal_min_3_max_3
32714 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_min_1
32715 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_max_4
32716 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_2_1
32717 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_2_5
32718 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_3_1
32719 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4_unorm_pack8.mipmap.nearest.lod.select_bias_3_7
32757 dEQP-VK.pipeline.sampler.view_type.1d.format.r4g4b4a4_unorm_pack16.min_filter.nearest
[all …]
/external/gemmlowp/doc/
Dless-than-8-bit.md182 fraction, rounding to nearest.
214 ### Round-to-nearest rounding: unbiased in principle but not in practice
216 The simplest fix is to avoid the bias in 2. by rounding-to-nearest instead of
226 to achieve rounding-to-nearest (while the above rounding towards 0 corresponded
229 In principle, rounding-to-nearest is unbiased and optimal in various ways.
240 different from 0. That rounding-to-nearest is "unbiased" only means that over a
251 instance if we have to round the value 3.8 to the nearest integer, we can round
265 rounding-to-nearest --- one can check that it is 2x higher.
271 Still, for large enough GEMM depth, that is better than rounding-to-nearest
274 ### Switching between rounding-to-nearest and probabilistic rounding
[all …]
/external/compiler-rt/lib/builtins/
Dfp_trunc_impl.inc11 // IEEE-754 floating-point type in the default (round to nearest, ties to even)
87 // Round to nearest
123 // Round to nearest
/external/libvpx/libvpx/vp8/common/
Dfindnearmv.c23 void vp8_find_near_mvs(MACROBLOCKD *xd, const MODE_INFO *here, int_mv *nearest, in vp8_find_near_mvs() argument
118 nearest->as_int = near_mvs[CNT_NEAREST].as_int; in vp8_find_near_mvs()
/external/python/cpython2/Demo/tkinter/guido/
Dkill.py45 e.widget.select_set(e.widget.nearest(e.y))
49 self.kill(e.widget.get(e.widget.nearest(e.y)))
Dsvkill.py58 e.widget.select_set(e.widget.nearest(e.y))
62 self.kill(e.widget.get(e.widget.nearest(e.y)))
Dmbox.py206 itop = scanbox.nearest(0)
225 itop = scanbox.nearest(0)
/external/eigen/Eigen/src/Core/
DGlobalFunctions.h84 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(round,scalar_round_op,nearest integer,\sa Eigen::floor DOXCOMMA E…
85 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(floor,scalar_floor_op,nearest integer not greater than the giben …
86 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(ceil,scalar_ceil_op,nearest integer not less than the giben value…
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Round.pbtxt3 summary: "Rounds the values of a tensor to the nearest integer, element-wise."

12345678