Lines Matching refs:out
36 void ScriptIntrinsicBlend::blendClear(sp<Allocation> in, sp<Allocation> out) {
37 Script::forEach(0, in, out, NULL, 0);
40 void ScriptIntrinsicBlend::blendSrc(sp<Allocation> in, sp<Allocation> out) {
41 Script::forEach(1, in, out, NULL, 0);
44 void ScriptIntrinsicBlend::blendDst(sp<Allocation> in, sp<Allocation> out) {
45 Script::forEach(2, in, out, NULL, 0);
48 void ScriptIntrinsicBlend::blendSrcOver(sp<Allocation> in, sp<Allocation> out) {
49 Script::forEach(3, in, out, NULL, 0);
52 void ScriptIntrinsicBlend::blendDstOver(sp<Allocation> in, sp<Allocation> out) {
53 Script::forEach(4, in, out, NULL, 0);
56 void ScriptIntrinsicBlend::blendSrcIn(sp<Allocation> in, sp<Allocation> out) {
57 Script::forEach(5, in, out, NULL, 0);
60 void ScriptIntrinsicBlend::blendDstIn(sp<Allocation> in, sp<Allocation> out) {
61 Script::forEach(6, in, out, NULL, 0);
64 void ScriptIntrinsicBlend::blendSrcOut(sp<Allocation> in, sp<Allocation> out) {
65 Script::forEach(7, in, out, NULL, 0);
68 void ScriptIntrinsicBlend::blendDstOut(sp<Allocation> in, sp<Allocation> out) {
69 Script::forEach(8, in, out, NULL, 0);
72 void ScriptIntrinsicBlend::blendSrcAtop(sp<Allocation> in, sp<Allocation> out) {
73 Script::forEach(9, in, out, NULL, 0);
76 void ScriptIntrinsicBlend::blendDstAtop(sp<Allocation> in, sp<Allocation> out) {
77 Script::forEach(10, in, out, NULL, 0);
80 void ScriptIntrinsicBlend::blendXor(sp<Allocation> in, sp<Allocation> out) {
81 Script::forEach(11, in, out, NULL, 0);
85 void ScriptIntrinsicBlend::blendMultiply(sp<Allocation> in, sp<Allocation> out) {
86 Script::forEach(14, in, out, NULL, 0);
90 void ScriptIntrinsicBlend::blendAdd(sp<Allocation> in, sp<Allocation> out) {
91 Script::forEach(34, in, out, NULL, 0);
94 void ScriptIntrinsicBlend::blendSubtract(sp<Allocation> in, sp<Allocation> out) {
95 Script::forEach(35, in, out, NULL, 0);
103 void ScriptIntrinsicBlur::blur(sp<Allocation> in, sp<Allocation> out) {
105 Script::forEach(0, NULL, out, NULL, 0);