/frameworks/rs/support/java/src/androidx/renderscript/ |
D | ScriptIntrinsicBlend.java | 54 private void blend(int id, Allocation ain, Allocation aout) { 71 blend(0, ain, aout); 91 blend(1, ain, aout); 131 blend(3, ain, aout); 150 blend(4, ain, aout); 169 blend(5, ain, aout); 188 blend(6, ain, aout); 207 blend(7, ain, aout); 226 blend(8, ain, aout); 246 blend(9, ain, aout); [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | ScriptIntrinsicBlend.java | 43 private void blend(int id, Allocation ain, Allocation aout, Script.LaunchOptions opt) { in blend() method in ScriptIntrinsicBlend 71 blend(0, ain, aout, opt); in forEachClear() 102 blend(1, ain, aout, null); in forEachSrc() 166 blend(3, ain, aout, opt); in forEachSrcOver() 196 blend(4, ain, aout, opt); in forEachDstOver() 226 blend(5, ain, aout, opt); in forEachSrcIn() 256 blend(6, ain, aout, opt); in forEachDstIn() 286 blend(7, ain, aout, opt); in forEachSrcOut() 316 blend(8, ain, aout, opt); in forEachDstOut() 348 blend(9, ain, aout, opt); in forEachSrcAtop() [all …]
|
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/ |
D | Convolve5x5.java | 36 private float blend(float v1, float v2, float p) { in blend() method in Convolve5x5 43 float cf1 = blend(f125, -1.f, str); in updateMatrix() 44 float cf2 = blend(f125, -3.f, str); in updateMatrix() 45 float cf3 = blend(f125, -4.f, str); in updateMatrix() 46 float cf4 = blend(f125, 6.f, str); in updateMatrix() 47 float cf5 = blend(f125, 20.f, str); in updateMatrix() 48 float cf6 = blend(f125, 0.f, str); in updateMatrix()
|
D | Convolve3x3.java | 36 private float blend(float v1, float v2, float p) { in blend() method in Convolve3x3 42 float cf1 = blend(1.f / 9.f, 0.f, str); in updateMatrix() 43 float cf2 = blend(1.f / 9.f, -1.f, str); in updateMatrix() 44 float cf3 = blend(1.f / 9.f, 5.f, str); in updateMatrix()
|
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/ |
D | Convolve5x5.java | 43 private float blend(float v1, float v2, float p) { in blend() method in Convolve5x5 50 float cf1 = blend(f125, -1.f, str); in updateMatrix() 51 float cf2 = blend(f125, -3.f, str); in updateMatrix() 52 float cf3 = blend(f125, -4.f, str); in updateMatrix() 53 float cf4 = blend(f125, 6.f, str); in updateMatrix() 54 float cf5 = blend(f125, 20.f, str); in updateMatrix() 55 float cf6 = blend(f125, 0.f, str); in updateMatrix()
|
D | Convolve3x3.java | 43 private float blend(float v1, float v2, float p) { in blend() method in Convolve3x3 49 float cf1 = blend(1.f / 9.f, 0.f, str); in updateMatrix() 50 float cf2 = blend(1.f / 9.f, -1.f, str); in updateMatrix() 51 float cf3 = blend(1.f / 9.f, 5.f, str); in updateMatrix()
|
/frameworks/base/graphics/java/android/graphics/ |
D | Interpolator.java | 87 public void setKeyFrame(int index, int msec, float[] values, float[] blend) { in setKeyFrame() argument 94 if (blend != null && blend.length < 4) { in setKeyFrame() 97 nativeSetKeyFrame(native_instance, index, msec, values, blend); in setKeyFrame() 160 …e void nativeSetKeyFrame(long native_instance, int index, int msec, float[] values, float[] blend); in nativeSetKeyFrame() argument
|
/frameworks/layoutlib/bridge/src/android/graphics/ |
D | BlendComposite.java | 176 result = blender.blend(srcPixel, dstPixel, result); in compose() 200 public abstract int[] blend(int[] src, int[] dst, int[] result); in blend() method in BlendComposite.Blender 207 public int[] blend(int[] src, int[] dst, int[] result) { in getBlenderFor() 217 public int[] blend(int[] src, int[] dst, int[] result) { in getBlenderFor() 228 public int[] blend(int[] src, int[] dst, int[] result) { in getBlenderFor() 239 public int[] blend(int[] src, int[] dst, int[] result) { in getBlenderFor() 250 public int[] blend(int[] src, int[] dst, int[] result) { in getBlenderFor() 262 public int[] blend(int[] src, int[] dst, int[] result) { in getBlenderFor() 276 public int[] blend(int[] src, int[] dst, int[] result) { in getBlenderFor()
|
/frameworks/base/libs/hwui/ |
D | DeferredLayerUpdater.h | 62 ANDROID_API bool setBlend(bool blend) { in setBlend() argument 63 if (blend != mBlend) { in setBlend() 64 mBlend = blend; in setBlend()
|
D | Layer.h | 53 void setBlend(bool blend) { mBlend = blend; } in setBlend() argument
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcRects.cpp | 146 blend(defaultBlend), color(defaultColor), in Rectangle() 153 int32_t blend; member in Rectangle 319 layer->blending = it->blend; in main() 442 rect.blend = HWC_BLENDING_NONE; in parseRect() 444 rect.blend = HWC_BLENDING_PREMULT; in parseRect() 446 rect.blend = HWC_BLENDING_COVERAGE; in parseRect()
|
D | hwcCommit.cpp | 171 int32_t blend; member in Rectangle 708 rect.blend = id; in supportedBlends() 1287 background.blend = backgroundBlend; in numOverlapping() 1300 background.blend = foregroundBlend; in numOverlapping() 1311 blend(defaultBlend), color(defaultColor), alpha(defaultAlpha), in Rectangle() 1421 layer->blending = it->blend; in numOverlays()
|
/frameworks/base/core/jni/android/graphics/ |
D | Interpolator.cpp | 32 SkScalar* blend = autoBlend.ptr(); in Interpolator_setKeyFrame() local 37 interp->setKeyFrame(index, msec, scalars, blend); in Interpolator_setKeyFrame()
|
/frameworks/base/libs/hwui/renderthread/ |
D | VulkanManager.cpp | 233 VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT* blend; in setupDevice() local 234 blend = (VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT*)malloc( in setupDevice() 236 LOG_ALWAYS_FATAL_IF(!blend); in setupDevice() 237 blend->sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_FEATURES_EXT; in setupDevice() 238 blend->pNext = nullptr; in setupDevice() 239 *tailPNext = blend; in setupDevice() 240 tailPNext = &blend->pNext; in setupDevice()
|
/frameworks/native/cmds/flatland/ |
D | Main.cpp | 101 0, staticGradient, blend, 127 0, staticGradient, blend, 153 0, staticGradient, blend, 183 0, staticGradient, blend,
|
D | Flatland.h | 58 Composer* blend();
|
D | Composers.cpp | 199 Composer* blend() { in blend() function
|
/frameworks/rs/script_api/ |
D | rs_graphics.spec | 880 summary: Get program store blend destination function 882 Get program store blend destination function 892 summary: Get program store blend source function 894 Get program store blend source function
|
/frameworks/rs/script_api/include/ |
D | rs_graphics.rsh | 1334 * rsgProgramStoreGetBlendDstFunc: Get program store blend destination function 1338 * Get program store blend destination function 1355 * rsgProgramStoreGetBlendSrcFunc: Get program store blend source function 1359 * Get program store blend source function
|
/frameworks/native/vulkan/api/ |
D | vulkan.api | 3023 /// Color blend state creation flags 4478 …VkBool32 dualSrcBlend /// blend op…
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |