Home
last modified time | relevance | path

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

/external/dng_sdk/source/
Ddng_color_spec.cpp69 : fChannels (negative.ColorChannels ()) in dng_color_spec()
97 if (fChannels > 1) in dng_color_spec()
100 if (!profile || !profile->IsValid (fChannels)) in dng_color_spec()
122 fCameraCalibration1.SetIdentity (fChannels); in dng_color_spec()
123 fCameraCalibration2.SetIdentity (fChannels); in dng_color_spec()
129 if (negative.CameraCalibration1 ().Rows () == fChannels && in dng_color_spec()
130 negative.CameraCalibration1 ().Cols () == fChannels) in dng_color_spec()
137 if (negative.CameraCalibration2 ().Rows () == fChannels && in dng_color_spec()
138 negative.CameraCalibration2 ().Cols () == fChannels) in dng_color_spec()
147 fAnalogBalance = dng_matrix (fChannels, fChannels); in dng_color_spec()
[all …]
Ddng_color_spec.h49 uint32 fChannels;
92 return fChannels; in Channels()
/external/skia/tests/
DExtendedSkColorTypeTests.cpp52 SkColorChannelFlag fChannels; member
84 REPORTER_ASSERT(reporter, test.fChannels == actualChannels); in raster_tests()
98 SkColor4f expected = get_trans_black_expected_color(test.fChannels); in raster_tests()
108 SkColor4f expected = get_opaque_white_expected_color(test.fChannels); in raster_tests()
256 f32Expected.erase(get_opaque_white_expected_color(test.fChannels)); in gpu_tests()
/external/skqp/src/sksl/
DSkSLJIT.cpp1400 memcpy(out, fChannels, sizeof(fChannels)); in getVectorLValue()
1610 out[i] = LLVMBuildLoad(builder, fChannels[i], "variable reference"); in compileVectorVariableReference()
1666 fChannels[0] = LLVMBuildAlloca(builder, fFloat32VectorType, "rVec"); in compileStageFunctionVector()
1667 LLVMBuildStore(builder, params.get()[4], fChannels[0]); in compileStageFunctionVector()
1668 fChannels[1] = LLVMBuildAlloca(builder, fFloat32VectorType, "gVec"); in compileStageFunctionVector()
1669 LLVMBuildStore(builder, params.get()[5], fChannels[1]); in compileStageFunctionVector()
1670 fChannels[2] = LLVMBuildAlloca(builder, fFloat32VectorType, "bVec"); in compileStageFunctionVector()
1671 LLVMBuildStore(builder, params.get()[6], fChannels[2]); in compileStageFunctionVector()
1672 fChannels[3] = LLVMBuildAlloca(builder, fFloat32VectorType, "aVec"); in compileStageFunctionVector()
1673 LLVMBuildStore(builder, params.get()[7], fChannels[3]); in compileStageFunctionVector()
[all …]
DSkSLJIT.h330 LLVMValueRef fChannels[CHANNELS]; variable