Searched refs:y_val (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/cudacodec/src/cuda/ |
D | rgb_to_yv12.cu | 86 uchar y_val, u_val, v_val; in Gray_to_YV12() local 89 rgb_to_y(pix, pix, pix, y_val); in Gray_to_YV12() 90 y_plane(y, x) = y_val; in Gray_to_YV12() 93 rgb_to_y(pix, pix, pix, y_val); in Gray_to_YV12() 94 y_plane(y, x + 1) = y_val; in Gray_to_YV12() 97 rgb_to_y(pix, pix, pix, y_val); in Gray_to_YV12() 98 y_plane(y + 1, x) = y_val; in Gray_to_YV12() 101 rgb_to_yuv(pix, pix, pix, y_val, u_val, v_val); in Gray_to_YV12() 102 y_plane(y + 1, x + 1) = y_val; in Gray_to_YV12() 123 uchar y_val, u_val, v_val; in RGB_to_YV12() local [all …]
|
/external/llvm/test/Transforms/LICM/ |
D | lcssa-ssa-promoter.ll | 47 %y_val = load i32, i32* @y, align 4 48 %icmp = icmp eq i32 %y_val, 0
|
/external/autotest/frontend/tko/ |
D | graphing_utils.py | 257 titles = ['%s - %s: %f' % (label, x_label, y_val) 258 for x_label, y_val in zip(x_labels, y)] 735 titles = ['%d%% - <%d%%: %d machines' % (bucket[0], bucket[1], y_val) 736 for bucket, y_val in zip(buckets, y)]
|
/external/skia/src/effects/ |
D | SkMagnifierImageFilter.cpp | 357 int y_val = SkTPin(SkScalarFloorToInt(y_interp), 0, height - 1); in onFilterImageDeprecated() local 359 *dptr = sptr[y_val * width + x_val]; in onFilterImageDeprecated()
|
/external/v8/src/parsing/ |
D | parser.cc | 392 double y_val = y->AsLiteral()->raw_value()->AsNumber(); in ShortcutNumericLiteralBinaryExpression() local 398 *x = factory->NewNumberLiteral(x_val + y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 401 *x = factory->NewNumberLiteral(x_val - y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 404 *x = factory->NewNumberLiteral(x_val * y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 407 *x = factory->NewNumberLiteral(x_val / y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 410 int value = DoubleToInt32(x_val) | DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() 415 int value = DoubleToInt32(x_val) & DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() 420 int value = DoubleToInt32(x_val) ^ DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() 425 int value = DoubleToInt32(x_val) << (DoubleToInt32(y_val) & 0x1f); in ShortcutNumericLiteralBinaryExpression() 430 uint32_t shift = DoubleToInt32(y_val) & 0x1f; in ShortcutNumericLiteralBinaryExpression() [all …]
|