Home
last modified time | relevance | path

Searched refs:dest2 (Results 1 – 6 of 6) sorted by relevance

/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
Dhealing.rs37 AllocationF32_3 dest2; // float3
76 float3 k = rsGetElementAt_float3(dest2, x - 1, y);
77 k += rsGetElementAt_float3(dest2, x + 1, y);
78 k += rsGetElementAt_float3(dest2, x, y - 1);
79 k += rsGetElementAt_float3(dest2, x, y + 1);
84 return rsGetElementAt_float3(dest2, x, y);
133 dest2 = clone(dest1);
146 rsForEach(solve1, mask, dest2);
DHealing.java131 Allocation dest2 = Allocation.createTyped(rs, floatImage.create()); in heal_orig() local
133 healing.set_dest2(dest2); in heal_orig()
162 healing.forEach_solve1(mask, dest2); in heal_orig()
/frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
Dhealing.rs85 AllocationF32_3 dest2; // float3
124 float3 k = rsGetElementAt_float3(dest2, x - 1, y);
125 k += rsGetElementAt_float3(dest2, x + 1, y);
126 k += rsGetElementAt_float3(dest2, x, y - 1);
127 k += rsGetElementAt_float3(dest2, x, y + 1);
132 return rsGetElementAt_float3(dest2, x, y);;
DHealing.java86 Allocation dest2 = Allocation.createTyped(rs, floatImage.create()); in heal() local
88 healing.set_dest2(dest2); in heal()
118 healing.forEach_solve1(mask, dest2); in heal()
/frameworks/support/navigation/safe-args-generator/src/tests/kotlin/androidx/navigation/safe/args/generator/
DNavArgumentResolverTest.kt54 val dest2 = dest2Template.copy(actions = listOf(Action(id("action2"), dest1Template.id, in id() constant
59 emptyList(), emptyList(), listOf(dest1, dest2)) in id()
64 val resolvedAction1 = Action(id("action1"), dest2Template.id, dest2.args) in id()
/frameworks/base/tools/aapt/tests/
DCrunchCache_test.cpp89 String8 dest2("ApiDemos/res2"); in main() local
94 CrunchCache scc(source2,dest2,sff); in main()