Searched refs:y_val (Results 1 - 4 of 4) sorted by relevance
/third_party/skia/src/effects/imagefilters/ |
H A D | SkMagnifierImageFilter.cpp | 266 int y_val = SkTPin(bounds.y() + SkScalarFloorToInt(y_interp), 0, inputBM.height() - 1); in onFilterImage() local 268 *dptr = *inputBM.getAddr32(x_val, y_val); in onFilterImage()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | parser.cc | 159 double y_val = y->AsLiteral()->AsNumber(); in ShortcutNumericLiteralBinaryExpression() local 162 *x = factory()->NewNumberLiteral(x_val + y_val, pos); in ShortcutNumericLiteralBinaryExpression() 165 *x = factory()->NewNumberLiteral(x_val - y_val, pos); in ShortcutNumericLiteralBinaryExpression() 168 *x = factory()->NewNumberLiteral(x_val * y_val, pos); in ShortcutNumericLiteralBinaryExpression() 171 *x = factory()->NewNumberLiteral(base::Divide(x_val, y_val), pos); in ShortcutNumericLiteralBinaryExpression() 174 int value = DoubleToInt32(x_val) | DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() 179 int value = DoubleToInt32(x_val) & DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() 184 int value = DoubleToInt32(x_val) ^ DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression() 190 base::ShlWithWraparound(DoubleToInt32(x_val), DoubleToInt32(y_val)); in ShortcutNumericLiteralBinaryExpression() 195 uint32_t shift = DoubleToInt32(y_val) in ShortcutNumericLiteralBinaryExpression() [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cCopyImageTests.cpp | 5468 const GLuint y_val = y_vals[y]; in ExceedingBoundariesTest() local 5470 const GLenum res = ((0 == x_val) && (0 == y_val) && (0 == z_val)) ? GL_NO_ERROR : GL_INVALID_VALUE; in ExceedingBoundariesTest() 5490 testCase src_test_case = { tex_target, depth, height, x_val, y_val, z_val, 0, 0, 0, res }; in ExceedingBoundariesTest() 5492 testCase dst_test_case = { tex_target, depth, height, 0, 0, 0, x_val, y_val, z_val, res }; in ExceedingBoundariesTest() 5634 const GLuint y_val = y_vals[y]; in InvalidAlignmentTest() local 5635 const GLenum res = ((valid_h == h_val) && (valid_w == w_val) && (0 == x_val) && (0 == y_val)) ? in InvalidAlignmentTest() 5639 testCase dst_test_case = { h_val, w_val, 0, 0, x_val, y_val, res }; in InvalidAlignmentTest() 5641 testCase src_test_case = { h_val, w_val, x_val, y_val, 0, 0, res }; in InvalidAlignmentTest()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_fs.c | 586 LLVMValueRef y_val = lp_build_const_int32(gallivm, y); in fs_fb_fetch() local 588 y_val = LLVMBuildAdd(builder, y_val, y_offset, ""); in fs_fb_fetch() 589 y_val = LLVMBuildMul(builder, y_val, stride, ""); in fs_fb_fetch() 591 offsets[i] = LLVMBuildAdd(builder, x_val, y_val, ""); in fs_fb_fetch()
|
Completed in 18 milliseconds