Home
last modified time | relevance | path

Searched refs:ox (Results 1 – 25 of 227) sorted by relevance

12345678910

/external/mesa3d/src/mesa/math/
Dm_xform_tmp.h88 const GLfloat ox = from[0]; in TAG() local
89 to[i][0] = m0 * ox + m12; in TAG()
90 to[i][1] = m1 * ox + m13; in TAG()
91 to[i][2] = m2 * ox + m14; in TAG()
92 to[i][3] = m3 * ox + m15; in TAG()
132 const GLfloat ox = from[0]; in TAG() local
133 to[i][0] = m0 * ox + m12; in TAG()
134 to[i][1] = m1 * ox + m13; in TAG()
153 const GLfloat ox = from[0]; in TAG() local
154 to[i][0] = m0 * ox + m12; in TAG()
[all …]
/external/ImageMagick/MagickCore/
Dvision.c275 ox, in ConnectedComponentsImage() local
302 ox=offset; in ConnectedComponentsImage()
303 status=GetMatrixElement(equivalences,ox,0,&obj); in ConnectedComponentsImage()
304 while (obj != ox) in ConnectedComponentsImage()
306 ox=obj; in ConnectedComponentsImage()
307 status=GetMatrixElement(equivalences,ox,0,&obj); in ConnectedComponentsImage()
316 if (ox < oy) in ConnectedComponentsImage()
318 status=SetMatrixElement(equivalences,oy,0,&ox); in ConnectedComponentsImage()
319 root=ox; in ConnectedComponentsImage()
323 status=SetMatrixElement(equivalences,ox,0,&oy); in ConnectedComponentsImage()
[all …]
/external/arm-optimized-routines/test/testcases/directed/
Dexpf.tst11 func=expf op1=7f7fffff result=7f800000 errno=ERANGE status=ox
18 func=expf op1=42cffff8 result=7f800000 errno=ERANGE status=ox
19 func=expf op1=42d00008 result=7f800000 errno=ERANGE status=ox
Dexp2f.tst11 func=exp2f op1=7f7fffff result=7f800000 errno=ERANGE status=ox
18 func=exp2f op1=43000000 result=7f800000 errno=ERANGE status=ox
19 func=exp2f op1=43000001 result=7f800000 errno=ERANGE status=ox
Dpowf.tst119 func=powf op1=00000001 op2=bf800000 result=7f800000 errno=ERANGE status=ox
207 func=powf op1=351738cd op2=c0c55691 result=7f800000 errno=ERANGE status=ox
208 func=powf op1=42836035 op2=41a99f40 result=7f800000 errno=ERANGE status=ox
212 func=powf op1=28f0e770 op2=c035b4ca result=7f800000 errno=ERANGE status=ox
215 func=powf op1=3a2f1163 op2=c1422d45 result=7f800000 errno=ERANGE status=ox
216 func=powf op1=434f5cf3 op2=41851272 result=7f800000 errno=ERANGE status=ox
217 func=powf op1=2e0e27a4 op2=c06b13f5 result=7f800000 errno=ERANGE status=ox
219 func=powf op1=21c80729 op2=c00a04ab result=7f800000 errno=ERANGE status=ox
221 func=powf op1=2d173e0b op2=c05ee797 result=7f800000 errno=ERANGE status=ox
222 func=powf op1=452edf9a op2=4132dd7f result=7f800000 errno=ERANGE status=ox
[all …]
Dexp2.tst12 func=exp2 op1=7fefffff.ffffffff result=7ff00000.00000000 errno=ERANGE status=ox
28 func=exp2 op1=40900000.00000000 result=7ff00000.00000000 errno=ERANGE status=ox
Dexp.tst12 func=exp op1=7fefffff.ffffffff result=7ff00000.00000000 errno=ERANGE status=ox
28 func=exp op1=40862e42.fefa39f0 result=7ff00000.00000000 errno=ERANGE status=ox
/external/deqp/modules/egl/
DteglPreservingSwapTests.cpp209 const int ox = width/2; in render() local
215 const int x1i = (int)(((float)px/2.0f) * x1 + (float)ox); in render()
218 const int x2i = (int)(((float)px/2.0f) * x2 + (float)ox); in render()
256 const int ox = target->getWidth()/2; in render() local
262 const int x1i = (int)((px/2.0) * x1 + ox); in render()
265 const int x2i = (int)((px/2.0) * x2 + ox); in render()
498 const int ox = width/2; in iterate() local
504 const int x1i = (int)(((float)px/2.0f) * postSwapX1 + (float)ox); in iterate()
507 const int x2i = (int)(((float)px/2.0f) * postSwapX2 + (float)ox); in iterate()
/external/python/cpython2/Modules/
Dmathmodule.c760 PyObject *ox, *oy; in math_2() local
762 if (! PyArg_UnpackTuple(args, funcname, 2, 2, &ox, &oy)) in math_2()
764 x = PyFloat_AsDouble(ox); in math_2()
1356 PyObject *ox, *oy; in math_fmod() local
1358 if (! PyArg_UnpackTuple(args, "fmod", 2, 2, &ox, &oy)) in math_fmod()
1360 x = PyFloat_AsDouble(ox); in math_fmod()
1390 PyObject *ox, *oy; in math_hypot() local
1392 if (! PyArg_UnpackTuple(args, "hypot", 2, 2, &ox, &oy)) in math_hypot()
1394 x = PyFloat_AsDouble(ox); in math_hypot()
1437 PyObject *ox, *oy; in math_pow() local
[all …]
/external/tensorflow/tensorflow/core/grappler/costs/
Dop_level_cost_estimator.cc622 int64 ox = GetOutputSize(ix, kx, sx, padding); in ConvolutionDimensionsFromInputs() local
633 batch, ix, iy, iz, kx, ky, oz, ox, oy, sx, sy, padding}; in ConvolutionDimensionsFromInputs()
640 VLOG(1) << "Output Dims:" << ox << "," << oy; in ConvolutionDimensionsFromInputs()
662 ops *= conv_dims.ox * conv_dims.oy; in CountConv2DOperations()
955 ops *= conv_dims.ox * conv_dims.oy; in CountConv2DBackpropInputOperations()
1012 ops *= conv_dims.ox * conv_dims.oy; in CountConv2DBackpropFilterOperations()
1192 output = DescribeTensor(DT_FLOAT, {dims.batch, dims.oz, dims.ox, dims.oy}); in PredictFusedConv2DBiasActivation()
1194 output = DescribeTensor(DT_FLOAT, {dims.batch, dims.ox, dims.oy, dims.oz}); in PredictFusedConv2DBiasActivation()
1475 int64 ox = GetOutputSize(ix, kx, sx, padding); in OpDimensionsFromInputs() local
1480 batch, ix, iy, iz, kx, ky, oz, ox, oy, sx, sy, padding}; in OpDimensionsFromInputs()
[all …]
Dop_level_cost_estimator.h72 int64 ox; // Output size x. member
Dop_level_cost_estimator_test.cc199 int iz2, int kx, int ky, int ox, in DescribeFusedConv2DBiasActivation() argument
228 DescribeTensor4D(batch, ox, oy, oz, side_input); in DescribeFusedConv2DBiasActivation()
230 DescribeTensor4D(batch, oz, ox, oy, side_input); in DescribeFusedConv2DBiasActivation()
509 EXPECT_EQ(ho, dims.ox); in ValidateOpDimensionsFromImputs()
/external/skqp/src/gpu/
DGrXferProcessor.h87 void setOffset(int ox, int oy) { fOffset.set(ox, oy); } in setOffset() argument
/external/skia/src/gpu/
DGrXferProcessor.h87 void setOffset(int ox, int oy) { fOffset.set(ox, oy); } in setOffset() argument
/external/freetype/include/freetype/internal/
Dcffotypes.h97 FT_F26Dot6 ox, oy; /* offsets */ member
/external/skqp/src/core/
DSkBlurMask.cpp362 int ox = dx >> 1; in ProfileLookup() local
363 if (ox < 0) { in ProfileLookup()
364 ox = 0; in ProfileLookup()
367 return profile[ox]; in ProfileLookup()
/external/skia/src/core/
DSkBlurMask.cpp362 int ox = dx >> 1; in ProfileLookup() local
363 if (ox < 0) { in ProfileLookup()
364 ox = 0; in ProfileLookup()
367 return profile[ox]; in ProfileLookup()
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc4052 U4 ox = rand(); //NOLINT in BinaryOpOriginTest() local
4054 T *x = GetPoisonedO<T>(0, ox, 0); in BinaryOpOriginTest()
4061 EXPECT_EQ(true, __msan_origin_is_descendant_or_same(origin, ox) || in BinaryOpOriginTest()
4074 *x = *GetPoisonedO<T>(0, ox); in BinaryOpOriginTest()
4079 EXPECT_POISONED_O(*z, ox); in BinaryOpOriginTest()
4080 EXPECT_ORIGIN(ox, __msan_get_origin(z)); in BinaryOpOriginTest()
4156 int ox = __LINE__; in MemCpyTest() local
4162 __msan_set_origin(x, N * sizeof(T), ox); in MemCpyTest()
4167 EXPECT_POISONED_O(y[0], ox); in MemCpyTest()
4168 EXPECT_POISONED_O(y[N/2], ox); in MemCpyTest()
[all …]
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Dc9404bb475d3920979b335cec1a9c84b.0000899c.honggfuzz.cov41 …b�8:S^?�rܪ�+�� ��L���(�B3��{�_"zfN �ͨdl�q�]�Gx�,*��|\�Z�c��V �L.��box��"C���#��ϻK6^p�/��…
42 …b�8:S^?�rܪ�+�� ��L���(�B3��{�_"zfN �ͨdl�q�]�Gx�,*��|\�Z�c��V �L.��box��"C���#��ϻK6^p�/��…
43 …b�8:S^?�rܪ�+�� ��L���(�B3��{�_"zfN �ͨdl�q�]�Gx�,*��|\�Z�c��V �L.��box��"C���#��ϻK6^p�/��…
D9fcc205dbd0dc35f9289e5947d3037d9.0000899c.honggfuzz.cov41 …b�8:S^?�rܪ�+�� ��L���(�B3��{�_"zfN �ͨdl�q�]�Gx�,*��|\�Z�c��V �L.��box��"C���#��ϻK6^p�/��…
42 …b�8:S^?�rܪ�+�� ��L���(�B3��{�_"zfN �ͨdl�q�]�Gx�,*��|\�Z�c��V �L.��box��"C���#��ϻK6^p�/��…
43 …b�8:S^?�rܪ�+�� ��L���(�B3��{�_"zfN �ͨdl�q�]�Gx�,*��|\�Z�c��V �L.��box��"C���#��ϻK6^p�/��…
/external/freetype/src/truetype/
Dttobjs.h180 FT_F26Dot6 ox, oy; /* offsets */ member
/external/freetype/src/autofit/
Dafhints.c359 point->ox / 64.0, in af_glyph_hints_dump_points()
864 point->ox = point->x = FT_MulFix( vec->x, x_scale ) + x_delta; in af_glyph_hints_reload()
1301 ou = point->ox; in af_glyph_hints_align_strong_points()
1529 point->v = point->ox; in af_glyph_hints_align_weak_points()
Dafhints.h247 FT_Pos ox, oy; /* original, scaled position */ member
/external/deqp/framework/referencerenderer/
DrrRasterizer.cpp762 const deInt64 ox = samplePos[sampleNdx*2 + 0]; in rasterizeMultiSample() local
767 e01[sampleNdx][fragNdx] = evaluateEdge(m_edge01, sx[fragNdx] + ox, sy[fragNdx] + oy); in rasterizeMultiSample()
768 e12[sampleNdx][fragNdx] = evaluateEdge(m_edge12, sx[fragNdx] + ox, sy[fragNdx] + oy); in rasterizeMultiSample()
769 e20[sampleNdx][fragNdx] = evaluateEdge(m_edge20, sx[fragNdx] + ox, sy[fragNdx] + oy); in rasterizeMultiSample()
/external/python/cpython3/Modules/
Dmathmodule.c1002 PyObject *ox, *oy; in math_2() local
1004 if (! PyArg_UnpackTuple(args, funcname, 2, 2, &ox, &oy)) in math_2()
1006 x = PyFloat_AsDouble(ox); in math_2()

12345678910