Home
last modified time | relevance | path

Searched refs:y_val (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/cudacodec/src/cuda/
Drgb_to_yv12.cu86 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/
Dlcssa-ssa-promoter.ll47 %y_val = load i32, i32* @y, align 4
48 %icmp = icmp eq i32 %y_val, 0
/external/autotest/frontend/tko/
Dgraphing_utils.py257 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/
DSkMagnifierImageFilter.cpp357 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/
Dparser.cc392 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 …]