/external/python/cpython3/Objects/ |
D | genobject.c | 297 gen_close_iter(PyObject *yf) in gen_close_iter() argument 302 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in gen_close_iter() 303 retval = gen_close((PyGenObject *)yf, NULL); in gen_close_iter() 309 if (_PyObject_LookupAttrId(yf, &PyId_close, &meth) < 0) { in gen_close_iter() 310 PyErr_WriteUnraisable(yf); in gen_close_iter() 326 PyObject *yf = NULL; in _PyGen_yf() local 343 yf = f->f_stacktop[-1]; in _PyGen_yf() 344 Py_INCREF(yf); in _PyGen_yf() 347 return yf; in _PyGen_yf() 354 PyObject *yf = _PyGen_yf(gen); in gen_close() local [all …]
|
/external/starlark-go/starlark/ |
D | eval.go | 739 yf, err := y.finiteFloat() 743 return x + yf, nil 779 yf, err := y.finiteFloat() 783 return x - yf, nil 817 yf, err := y.finiteFloat() 821 return x * yf, nil 855 yf, err := y.finiteFloat() 859 if yf == 0.0 { 862 return xf / yf, nil 877 yf, err := y.finiteFloat() [all …]
|
/external/e2fsprogs/tests/t_uninit_bg_rm/ |
D | expect | 4 fsck -yf -N test_filesys test.img 15 fsck -yf -N test_filesys test.img
|
/external/deqp/modules/gles2/functional/ |
D | es2fDepthRangeTests.cpp | 231 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight(); in iterate() local 238 float d = depthRangeTransform(triQuadInterpolate(xf, yf, m_depthCoord), m_zNear, m_zFar); in iterate() 249 float rd = 1.0f - (xh + yf) * 0.5f; in iterate() 250 float d = depthRangeTransform(triQuadInterpolate(xf, yf, m_depthCoord), m_zNear, m_zFar); in iterate() 381 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight(); in iterate() local 382 float d = depthRangeTransform(triQuadInterpolate(xf, yf, m_depthCoord), m_zNear, m_zFar); in iterate()
|
D | es2fShaderBuiltinVarTests.cpp | 338 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); in iterate() local 339 const float z = (xf + yf) / 2.0f; in iterate() 430 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); in iterate() local 431 const float oow = ((xf + yf) < 1.0f) in iterate() 432 … ? projectedTriInterpolate(tcu::Vec3(w[0], w[1], w[2]), tcu::Vec3(w[0], w[1], w[2]), xf, yf) in iterate() 433 …rojectedTriInterpolate(tcu::Vec3(w[3], w[2], w[1]), tcu::Vec3(w[3], w[2], w[1]), 1.0f-xf, 1.0f-yf); in iterate() 546 const float yf = (float(h-yo-1)+0.5f) / float(h); in iterate() local 547 const tcu::Vec4 color (xf, yf, 0.0f, 1.0f); in iterate()
|
/external/deqp/modules/gles3/functional/ |
D | es3fFragDepthTests.cpp | 238 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight(); in iterate() local 245 float d = m_evalFunc(Vec2(xf, yf)); in iterate() 256 float rd = 1.0f - (xh + yf) * 0.5f; in iterate() 257 float d = m_evalFunc(Vec2(xf, yf)); in iterate() 407 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight(); in iterate() local 408 float d = m_evalFunc(Vec2(xf, yf)); in iterate()
|
D | es3fShaderBuiltinVarTests.cpp | 356 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); in iterate() local 357 const float z = (xf + yf) / 2.0f; in iterate() 451 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); in iterate() local 452 const float oow = ((xf + yf) < 1.0f) in iterate() 453 … ? projectedTriInterpolate(tcu::Vec3(w[0], w[1], w[2]), tcu::Vec3(w[0], w[1], w[2]), xf, yf) in iterate() 454 …rojectedTriInterpolate(tcu::Vec3(w[3], w[2], w[1]), tcu::Vec3(w[3], w[2], w[1]), 1.0f-xf, 1.0f-yf); in iterate() 570 const float yf = (float(h-yo-1)+0.5f) / float(h); in iterate() local 571 const tcu::Vec4 color (xf, yf, 0.0f, 1.0f); in iterate()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcFragDepthTests.cpp | 236 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight(); in iterate() local 243 float d = m_evalFunc(Vec2(xf, yf)); in iterate() 254 float rd = 1.0f - (xh + yf) * 0.5f; in iterate() 255 float d = m_evalFunc(Vec2(xf, yf)); in iterate() 392 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight(); in iterate() local 393 float d = m_evalFunc(Vec2(xf, yf)); in iterate()
|
/external/e2fsprogs/tests/f_summary_counts/ |
D | script | 2 SECOND_FSCK_OPT=-yf
|
/external/llvm-project/llvm/test/Transforms/InstCombine/AMDGPU/ |
D | fmul_legacy.ll | 51 %yf = sitofp i32 %y to float 52 %call = call float @llvm.amdgcn.fmul.legacy(float %xf, float %yf)
|
/external/libaom/libaom/third_party/libyuv/source/ |
D | scale_argb.cc | 282 int yf = (y >> 8) & 255; in ScaleARGBBilinearDown() local 283 InterpolateRow(row, src, src_stride, clip_src_width, yf); in ScaleARGBBilinearDown() 430 int yf = (y >> 8) & 255; in ScaleARGBBilinearUp() local 431 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf); in ScaleARGBBilinearUp() 646 int yf = (y >> 8) & 255; in ScaleYUVToARGBBilinearUp() local 647 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf); in ScaleYUVToARGBBilinearUp()
|
/external/e2fsprogs/tests/f_convert_bmap/ |
D | script | 9 FSCK_OPT=-yf 13 SECOND_FSCK_OPT=-yf
|
/external/e2fsprogs/tests/f_extent_too_deep/ |
D | script | 9 FSCK_OPT=-yf 13 SECOND_FSCK_OPT=-yf
|
/external/e2fsprogs/tests/f_compress_extent_tree_level/ |
D | script | 9 FSCK_OPT=-yf 13 SECOND_FSCK_OPT=-yf
|
/external/e2fsprogs/tests/ |
D | run_e2fsck | 9 FSCK_OPT=-yf 13 SECOND_FSCK_OPT=-yf
|
/external/e2fsprogs/tests/f_collapse_extent_tree/ |
D | script | 9 FSCK_OPT=-yf 13 SECOND_FSCK_OPT=-yf
|
/external/angle/src/tests/gl_tests/ |
D | PointSpritesTest.cpp | 106 int yf = static_cast<int>(floorf(s2p(pointY + v * pointWidth))); in testPointCoordAndPointSizeCompliance() local 108 float t = 0.5f + (yf + 0.5f - yw) / maxPointSize; in testPointCoordAndPointSizeCompliance() 111 EXPECT_PIXEL_NEAR(xf, yf, color[0], color[1], color[2], color[3], 4); in testPointCoordAndPointSizeCompliance()
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | scale_argb.cc | 353 int yf = (y >> 8) & 255; in ScaleARGBBilinearDown() local 354 InterpolateRow(row, src, src_stride, clip_src_width, yf); in ScaleARGBBilinearDown() 518 int yf = (y >> 8) & 255; in ScaleARGBBilinearUp() local 519 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf); in ScaleARGBBilinearUp() 746 int yf = (y >> 8) & 255; in ScaleYUVToARGBBilinearUp() local 747 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf); in ScaleYUVToARGBBilinearUp()
|
/external/e2fsprogs/tests/f_convert_bmap_sparse/ |
D | script | 9 FSCK_OPT=-yf 13 SECOND_FSCK_OPT=-yf
|
/external/e2fsprogs/tests/f_convert_bmap_and_extent/ |
D | script | 9 FSCK_OPT=-yf 13 SECOND_FSCK_OPT=-yf
|
/external/e2fsprogs/tests/r_min_itable/ |
D | expect | 8 fsck -yf -N test_filesys test.img
|
/external/e2fsprogs/tests/r_move_inode_int_extent/ |
D | expect | 8 fsck -yf -E fixes_only -N test_filesys test.img
|
/external/libyuv/files/source/ |
D | scale_argb.cc | 379 int yf = (y >> 8) & 255; in ScaleARGBBilinearDown() local 380 InterpolateRow(row, src, src_stride, clip_src_width, yf); in ScaleARGBBilinearDown() 565 int yf = (y >> 8) & 255; in ScaleARGBBilinearUp() local 566 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf); in ScaleARGBBilinearUp() 806 int yf = (y >> 8) & 255; in ScaleYUVToARGBBilinearUp() local 807 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf); in ScaleYUVToARGBBilinearUp()
|
/external/openssh/regress/ |
D | ssh-com-keygen.sh | 66 ${SSHKEYGEN} -yf ${OPENSSHPRV} |\
|
/external/one-true-awk/ |
D | run.c | 1125 Awkfloat xf, yf; in assign() local 1148 yf = getfval(y); in assign() 1151 xf += yf; in assign() 1154 xf -= yf; in assign() 1157 xf *= yf; in assign() 1160 if (yf == 0) in assign() 1162 xf /= yf; in assign() 1165 if (yf == 0) in assign() 1167 modf(xf/yf, &v); in assign() 1168 xf = xf - yf * v; in assign() [all …]
|