Home
last modified time | relevance | path

Searched refs:x_val (Results 1 - 4 of 4) sorted by relevance

/third_party/skia/src/effects/imagefilters/
H A DSkMagnifierImageFilter.cpp265 int x_val = SkTPin(bounds.x() + SkScalarFloorToInt(x_interp), 0, inputBM.width() - 1); in onFilterImage() local
268 *dptr = *inputBM.getAddr32(x_val, y_val); in onFilterImage()
/third_party/node/deps/v8/src/parsing/
H A Dparser.cc158 double x_val = (*x)->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()
196 uint32_t value = DoubleToUint32(x_val) >> shif in ShortcutNumericLiteralBinaryExpression()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cCopyImageTests.cpp5467 const GLuint x_val = x_vals[x]; 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()
5633 const GLuint x_val = x_vals[x]; 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 Dlp_state_fs.c578 LLVMValueRef x_val; in fs_fb_fetch() local
580 x_val = LLVMBuildAdd(builder, lp_build_const_int32(gallivm, x), x_offset, ""); in fs_fb_fetch()
581 x_val = LLVMBuildMul(builder, x_val, lp_build_const_int32(gallivm, out_format_desc->block.bits / 8), ""); in fs_fb_fetch()
583 x_val = lp_build_const_int32(gallivm, x * (out_format_desc->block.bits / 8)); in fs_fb_fetch()
591 offsets[i] = LLVMBuildAdd(builder, x_val, y_val, ""); in fs_fb_fetch()

Completed in 16 milliseconds