HomeSort by relevance Sort by last modified time
    Searched defs:c0 (Results 101 - 125 of 245) sorted by null

1 2 3 45 6 7 8 910

  /external/pdfium/core/src/fxge/dib/
fx_dib_engine.cpp 811 int c0, m0, y0, k0, c1, m1, y1, k1; local
812 CmykDecode(pSource->GetPaletteEntry(0), c0, m0, y0, k0);
815 int c = c0 + (c1 - c0) * i / 255;
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 601 cmsFloat32Number c0, c1=0, c2=0, c3=0; local
629 c0 = DENS(X0, Y0, Z0);
633 c1 = DENS(X1, Y0, Z0) - c0;
641 c1 = DENS(X1, Y0, Z0) - c0;
651 c3 = DENS(X0, Y0, Z1) - c0;
658 c2 = DENS(X0, Y1, Z0) - c0;
666 c2 = DENS(X0, Y1, Z0) - c0;
675 c3 = DENS(X0, Y0, Z1) - c0;
682 Output[OutChan] = c0 + c1 * rx + c2 * ry + c3 * rz;
701 cmsS15Fixed16Number c0, c1, c2, c3, Rest local
840 cmsS15Fixed16Number c0, c1, c2, c3, Rest; local
    [all...]
  /external/skia/gm/
gradients.cpp 284 SkPoint c0; local
285 c0.iset(-80, 25);
290 SkShader* s = SkGradientShader::CreateTwoPointConical(c0, r0, c1, r1, colors,
  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 574 const Sk4f c0 = rec[0].fColor; local
576 const Sk4f diffc = c1 - c0;
579 return c0 + Sk4f(t) * diffc;
682 const Sk4f c0 = r[0].fColor; local
684 const Sk4f diffc = Sk4f(r[1].fColor) - c0;
687 const Sk4f c = c0 + Sk4f(t) * diffc;
  /external/v8/src/parsing/
json-parser.h 115 uint8_t c0 = input_chars[i]; local
116 if (c0 != expected_chars[i] || c0 == '"' || c0 < 0x20 || c0 == '\\') {
753 uc32 c0 = c0_; local
755 if (c0 == '\\') {
756 c0_ = c0;
763 if (c0 < 0x20) return Handle<String>::null();
765 static_cast<uint16_t>(c0));
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 1090 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1279 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1496 int c0, dif; local
1586 int c0, dif; local
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerSinc.cpp 601 int32_t c0 = coefs[0]; local
603 int32_t sinc = mulAdd(lerp, (c1-c0)<<1, c0);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
ModelInterpreter.java 472 char c0; local
476 c0 = command.charAt(6);
482 success = mSimulatedCallState.onChld(c0, c1);
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 337 char c0 = (lookbehind == null) ? '|' : lookbehind.charAt(0); local
339 isToken = (c0 == '|') ? false : (c0 == c);
374 char c0 = (lookbehind == null) ? '|' : lookbehind.charAt(0); local
376 hasToken = (c0 == '|') ? false : true;
2021 char c0 = m_tokenChar; local
    [all...]
  /external/autotest/client/profilers/powertop/src/
powertop.c 856 double c0 = 0; local
901 c0 = sysconf(_SC_NPROCESSORS_ONLN) * ticktime * 1000 * FREQ - totalticks;
902 if (c0 < 0)
903 c0 = 0; /* rounding errors in measurement might make c0 go slightly negative.. this is confusing */
906 percentage = c0 * 100.0 / (sysconf(_SC_NPROCESSORS_ONLN) * ticktime * 1000 * FREQ);
907 sprintf(cstate_lines[1], _("C0 (cpu running) (%4.1f%%)\n"), percentage);
1016 show_wakeups(wakeups_per_second, ticktime, c0 * 100.0 / (sysconf(_SC_NPROCESSORS_ONLN) * ticktime * 1000 * FREQ) );
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 408 constexpr char c0 = "nought index"[0]; member in namespace:StringLiteral
    [all...]
  /external/deqp/modules/gles2/functional/
es2fMultisampleTests.cpp 187 void renderTriangle (const Vec3& p0, const Vec3& p1, const Vec3& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const;
189 void renderTriangle (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const;
191 void renderQuad (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec2& p3, const Vec4& c0, const Vec4& c1, const Vec4& c2, const Vec4& c3) const;
228 void MultisampleCase::renderTriangle (const Vec3& p0, const Vec3& p1, const Vec3& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const
238 c0.x(), c0.y(), c0.z(), c0.w(),
258 void MultisampleCase::renderTriangle (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const
263 c0, c1, c2) local
    [all...]
  /external/icu/icu4c/source/common/
unames.cpp 1526 char c0; local
    [all...]
  /external/libchrome/base/
bind_unittest.cc 264 Callback<int()> c0 = Bind(&Sum, 32, 16, 8, 4, 2, 1); local
265 EXPECT_EQ(63, c0.Run());
306 Callback<int()> c0 = Bind(c1, 1); local
307 EXPECT_EQ(63, c0.Run());
  /external/libvncserver/libvncserver/
tight.c 1130 uint8_t c0, c1; local
    [all...]
  /external/libweave/third_party/chromium/base/
bind_unittest.cc 265 Callback<int()> c0 = Bind(&Sum, 32, 16, 8, 4, 2, 1); local
266 EXPECT_EQ(63, c0.Run());
307 Callback<int()> c0 = Bind(c1, 1); local
308 EXPECT_EQ(63, c0.Run());
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.c 429 double c0, c1; local
437 c0 = rational_function(x, coeffs[0][0])
447 return rational_function(x, safety) * arc->a * exp(c0 + c1 * dEta);
  /external/opencv3/3rdparty/openexr/Imath/
ImathMatrix.h 288 const int c0, const int c1) const;
662 const int c0, const int c1, const int c2) const;
1667 int c0 = 0 + (c < 1 ? 1 : 0); local
2905 int c0 = 0 + (c < 1 ? 1 : 0); local
    [all...]
  /external/opencv3/modules/hal/include/opencv2/hal/
intrin_sse.hpp 603 __m128i c0 = _mm_mul_epu32(a.val, b.val); local
605 __m128i d0 = _mm_unpacklo_epi32(c0, c1);
606 __m128i d1 = _mm_unpackhi_epi32(c0, c1);
611 __m128i c0 = _mm_mul_epu32(a.val, b.val); local
613 __m128i d0 = _mm_unpacklo_epi32(c0, c1);
614 __m128i d1 = _mm_unpackhi_epi32(c0, c1);
649 __m128i c0 = _mm_mul_epu32(a.val, b.val); local
651 c.val = _mm_unpacklo_epi64(c0, c1);
652 d.val = _mm_unpackhi_epi64(c0, c1);
1340 __m128i c0 = _mm_unpacklo_epi8(c.val, z); local
1410 __m128i c0 = _mm_unpacklo_epi16(c.val, z); local
    [all...]
  /external/opencv3/modules/imgproc/src/
subdivision2d.cpp 553 double c0 = -0.5*(a0 * (dst0.x + org0.x) + b0 * (dst0.y + org0.y)); local
564 return Point2f((float) ((b0 * c1 - b1 * c0) * det),
565 (float) ((a1 * c0 - a0 * c1) * det));
  /external/skia/src/gpu/batches/
GrAAHairLinePathRenderer.cpp 47 // If a,b,c are the original control points then the poly a0,b0,c0,c1,a1
52 // a0 c0
55 // Each is drawn as three triangles ((a0,a1,b0), (b0,c1,c0), (a1,c1,b0))
469 // | a0 c0
472 // edges a0->b0 and b0->c0 are parallel to original edges a->b and b->c,
477 BezierVertex& c0 = verts[3]; local
509 c0.fPos = c;
510 c0.fPos += cbN;
514 intersect_lines(a0.fPos, abN, c0.fPos, cbN, &b0.fPos);
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
UberColorPickerDialog.java 660 int c0 = colors[i]; local
662 int a = ave(Color.alpha(c0), Color.alpha(c1), p);
663 int r = ave(Color.red(c0), Color.red(c1), p);
664 int g = ave(Color.green(c0), Color.green(c1), p);
665 int b = ave(Color.blue(c0), Color.blue(c1), p);
  /external/v8/test/unittests/compiler/
scheduler-unittest.cc 1100 Node* c0 = graph()->NewNode(common()->IfValue(0), sw); local
1124 Node* c0 = graph()->NewNode(common()->IfValue(0), sw); local
    [all...]
  /external/webp/src/dsp/
lossless_sse2.c 24 static WEBP_INLINE uint32_t ClampedAddSubtractFull(uint32_t c0, uint32_t c1,
27 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
30 const __m128i V1 = _mm_add_epi16(C0, C1);
37 static WEBP_INLINE uint32_t ClampedAddSubtractHalf(uint32_t c0, uint32_t c1,
40 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
43 const __m128i avg = _mm_add_epi16(C1, C0);
60 const __m128i C0 = _mm_cvtsi32_si128(c);
61 const __m128i AC0 = _mm_subs_epu8(A0, C0);
328 const __m128i c0 = _mm_or_si128(a0l, b0h); \/\/ rgbrgb00|rgbrgb00 local
    [all...]
  /frameworks/native/opengl/libagl/
primitives.cpp 31 int32_t* it, int32_t c0, int32_t c1, int32_t c2);
304 int32_t c0, int32_t c1, int32_t c2) const
306 int32_t dc01 = c1 - c0;
307 int32_t dc02 = c2 - c0;
308 const int A = gglClz(abs(c0));
312 c0 <<= scale;
316 c0 >>= -scale;
323 int32_t c = c0 - (gglMulAddx(dcdx, m_x0,
332 GGLfixed c0, GGLfixed c1, GGLfixed c2) const
334 const GGLfixed dc01 = c1 - c0;
651 const GGLcolor c0 = v0->color.v[i] * 255; local
    [all...]

Completed in 647 milliseconds

1 2 3 45 6 7 8 910