HomeSort by relevance Sort by last modified time
    Searched defs:c0 (Results 76 - 100 of 412) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skia/src/core/
SkDraw_vertices.cpp 130 Sk4f c0 = colors[index0].to4f(), local
135 (c1 - c0).store(&colorm.fMat[0]);
136 (c2 - c0).store(&colorm.fMat[4]);
137 c0.store(&colorm.fMat[8]);
  /external/skia/src/shaders/gradients/
Sk4fLinearGradient.cpp 24 Sk4f c0 = c + DstTraits<dstType, premul>::pre_lerp_bias(bias0), local
26 c2 = c0 + dc2,
30 DstTraits<dstType, premul>::store4x(c0, c1, c2, c3, dst, bias0, bias1);
33 c0 = c0 + dc4;
40 DstTraits<dstType, premul>::store(c0, dst++, bias0);
42 c0 = c0 + dc2;
45 DstTraits<dstType, premul>::store(c0, dst, bias0);
351 // C = (c0 + c1) / 2 = (Cb + Cg * t0 + Cb + Cg * t1) / 2 = Cb + Cg *(t0 + t1) /
    [all...]
  /external/skia/tests/
RecordOptsTest.cpp 396 SkCanvas* c0 = surf0->getCanvas(); local
401 c0 = rec0.beginRecording(10, 10);
405 do_draw(c0, color, false);
RegionTest.cpp 156 bool c0 = a.contains(b); local
158 REPORTER_ASSERT(reporter, c0 == c1);
163 c0 = a.contains(r);
165 REPORTER_ASSERT(reporter, c0 == c1);
184 bool c0 = a.intersects(b); local
186 REPORTER_ASSERT(reporter, c0 == c1);
  /external/skqp/experimental/skottie/
SkottieAnimator.cpp 148 const auto c0 = ParseDefault(jframe["i"], kDefaultC0), local
151 if (c0 != kDefaultC0 || c1 != kDefaultC1) {
156 fCubicMaps.back().setPts(c1, c0);
  /external/skqp/src/core/
SkDraw_vertices.cpp 129 Sk4f c0 = colors[index0].to4f(), local
134 (c1 - c0).store(&colorm.fMat[0]);
135 (c2 - c0).store(&colorm.fMat[4]);
136 c0.store(&colorm.fMat[8]);
  /external/skqp/src/shaders/gradients/
Sk4fLinearGradient.cpp 24 Sk4f c0 = c + DstTraits<dstType, premul>::pre_lerp_bias(bias0), local
26 c2 = c0 + dc2,
30 DstTraits<dstType, premul>::store4x(c0, c1, c2, c3, dst, bias0, bias1);
33 c0 = c0 + dc4;
40 DstTraits<dstType, premul>::store(c0, dst++, bias0);
42 c0 = c0 + dc2;
45 DstTraits<dstType, premul>::store(c0, dst, bias0);
348 // C = (c0 + c1) / 2 = (Cb + Cg * t0 + Cb + Cg * t1) / 2 = Cb + Cg *(t0 + t1) /
    [all...]
  /external/skqp/tests/
RecordOptsTest.cpp 396 SkCanvas* c0 = surf0->getCanvas(); local
401 c0 = rec0.beginRecording(10, 10);
405 do_draw(c0, color, false);
RegionTest.cpp 156 bool c0 = a.contains(b); local
158 REPORTER_ASSERT(reporter, c0 == c1);
163 c0 = a.contains(r);
165 REPORTER_ASSERT(reporter, c0 == c1);
184 bool c0 = a.intersects(b); local
186 REPORTER_ASSERT(reporter, c0 == c1);
  /external/swiftshader/src/Main/
FrameBuffer.cpp 228 Short4 c0 = As<UShort4>(Swizzle(*Pointer<Short4>(s + 0), 0xC6)) >> 8; local
231 *Pointer<Int2>(d) = As<Int2>(PackUnsigned(c0, c1));
336 Short4 c0 = *Pointer<UShort4>(s + 0) >> 8; local
339 *Pointer<Int2>(d) = As<Int2>(PackUnsigned(c0, c1));
  /external/syslinux/core/legacynet/
dnsresolv.c 102 unsigned int c0, c1; local
105 c0 = p[0];
106 if (c0 >= 0xc0) {
109 p = (const uint8_t *)buf + ((c0 - 0xc0) << 8) + c1;
110 } else if (c0) {
111 c0++; /* Include the length byte */
112 if (memcmp(q, p, c0))
114 q += c0;
115 p += c0;
131 unsigned int c0, c1 local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks_mips.c 115 int32_t c0, c1, c2, c3; local
122 "lh %[c0], 0(%[coeff_ptr]) \n\t"
136 : [c0] "=&r" (c0), [c1] "=&r" (c1), [c2] "=&r" (c2), [c3] "=&r" (c3),
171 "mul %[t2], %[c0], %[state0_lo] \n\t"
173 "mul %[t1], %[c0], %[state0_hi] \n\t"
211 : [c0] "r" (c0), [c1] "r" (c1), [c2] "r" (c2), [c3] "r" (c3),
  /frameworks/av/include/media/
Interpolator.h 45 INTERPOLATOR_TYPE_LINEAR, // C0
180 const S c0 = low->second; local
185 return c0 + c1 * t + (c2 + c3 * t) * t2;
206 case INTERPOLATOR_TYPE_LINEAR: // C0
  /frameworks/base/core/tests/coretests/src/android/graphics/
BitmapTest.java 198 int c0 = colors[i]; local
205 // comparing the original (c0) with the returned color is tricky,
208 int a0 = Color.alpha(c0);
212 int r0 = Color.red(c0);
217 int g0 = Color.green(c0);
222 int b0 = Color.blue(c0);
229 android.util.Log.d("skia", "original " + Integer.toHexString(c0) +
  /frameworks/rs/
rsMatrix4x4.cpp 44 int c0 = (i+1) % 4; local
52 (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1]))
53 - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0]))
54 + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0]));
86 int c0 = (i+1) % 4; local
93 float minor = (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1]))
94 - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0]))
95 + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0]));
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_script_group2_nochain.java 55 ScriptGroup.Closure c0 = local
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_script_group2_nochain.java 57 ScriptGroup.Closure c0 = local
  /hardware/qcom/display/msm8084/libqdutils/
qdMetaData.h 60 uint16_t c0[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
  /hardware/qcom/display/msm8226/libqdutils/
qdMetaData.h 60 uint16_t c0[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
  /hardware/qcom/display/msm8994/libqdutils/
qdMetaData.h 60 uint16_t c0[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CurrencyTest.java 59 Currency c0 = Currency.getInstance("CAD"); local
63 c1 == c0);
67 c2 == c0);
71 c3 == c0);
73 c0 = Currency.getInstance("JPY");
77 c1 == c0);
81 c2 == c0);
85 c3 == c0);
  /prebuilts/go/darwin-x86/src/math/
erfinv.go 34 c0 = 1.42343711074968357734e0
102 z1 = ((((((c7*r+c6)*r+c5)*r+c4)*r+c3)*r+c2)*r+c1)*r + c0
32 c0 = 1.42343711074968357734e0 const
  /prebuilts/go/darwin-x86/src/runtime/
alg.go 13 c0 = uintptr((8-sys.PtrSize)/4*2860486313 + (sys.PtrSize-4)/4*33054211828000289)
109 return c1 * (c0 ^ h) // +0, -0
111 return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
121 return c1 * (c0 ^ h) // +0, -0
123 return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
151 return c1 * fn(unsafe.Pointer(&a.data), h^c0)
153 return c1 * fn(a.data, h^c0)
168 return c1 * fn(unsafe.Pointer(&a.data), h^c0)
170 return c1 * fn(a.data, h^c0)
12 c0 = uintptr((8-sys.PtrSize)\/4*2860486313 + (sys.PtrSize-4)\/4*33054211828000289) const
  /prebuilts/go/linux-x86/src/math/
erfinv.go 34 c0 = 1.42343711074968357734e0
102 z1 = ((((((c7*r+c6)*r+c5)*r+c4)*r+c3)*r+c2)*r+c1)*r + c0
32 c0 = 1.42343711074968357734e0 const
  /prebuilts/go/linux-x86/src/runtime/
alg.go 13 c0 = uintptr((8-sys.PtrSize)/4*2860486313 + (sys.PtrSize-4)/4*33054211828000289)
109 return c1 * (c0 ^ h) // +0, -0
111 return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
121 return c1 * (c0 ^ h) // +0, -0
123 return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
151 return c1 * fn(unsafe.Pointer(&a.data), h^c0)
153 return c1 * fn(a.data, h^c0)
168 return c1 * fn(unsafe.Pointer(&a.data), h^c0)
170 return c1 * fn(a.data, h^c0)
12 c0 = uintptr((8-sys.PtrSize)\/4*2860486313 + (sys.PtrSize-4)\/4*33054211828000289) const

Completed in 583 milliseconds

1 2 34 5 6 7 8 91011>>