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

1 2 3 4 5 67 8 91011>>

  /external/tensorflow/tensorflow/core/common_runtime/
constant_folding_test.cc 397 auto c0 = ops::Const<int>(s, 1); local
404 auto add = ops::Add(s.WithControlDependencies(c2), c0, c1);
584 auto c0 = local
585 ops::Const<int>(s.WithOpName("c0").WithControlDependencies(recv0), 1);
586 auto rank = ops::Rank(s.WithOpName("rank"), c0);
593 Node* c0 = orig_index.at("c0"); local
598 map[c0->name()].push_back(ps0);
  /external/webp/src/dsp/
yuv_neon.c 89 // computes: DST_s16 = [(C0 * r + C1 * g + C2 * b) >> 16] + CST
98 #define MULTIPLY_16b(C0, C1, C2, CST, DST_s16) do { \
99 const int32x4_t tmp0_lo = vmull_n_s16( r_lo, C0); \
100 const int32x4_t tmp0_hi = vmull_n_s16( r_hi, C0); \
245 const int16x8_t c0 = vshrq_n_s16(vaddq_s16(a0b1_2, a0a1b0b1), 3); local
248 const int16x8_t d1 = vaddq_s16(c0, a1);
  /frameworks/av/media/libaudioprocessing/
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);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7746.go 10 c0 = 1 << 100
11 c1 = c0 * c0
9 c0 = 1 << 100 const
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7746.go 10 c0 = 1 << 100
11 c1 = c0 * c0
9 c0 = 1 << 100 const
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptGroupTest.java 382 ScriptGroup.Closure c0 = local
390 c0.getReturn());
  /external/ImageMagick/coders/
meta.c 1898 c0; local
    [all...]
  /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/android_icu4j/src/main/java/android/icu/impl/
TimeZoneNamesImpl.java 622 char c0 = key.charAt(0); local
624 if (c0 == 'l') {
628 } else if (c0 == 's') {
632 } else if (c0 == 'e' && c1 == 'c') {
    [all...]
  /external/icu/icu4c/source/common/
unames.cpp 1528 char c0; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneNamesImpl.java 620 char c0 = key.charAt(0); local
622 if (c0 == 'l') {
626 } else if (c0 == 's') {
630 } else if (c0 == 'e' && c1 == 'c') {
    [all...]
  /external/libchrome/base/
bind_unittest.cc 399 RepeatingCallback<int(int)> c0 = BindRepeating(&Sum, 1, 2, 4, 8, 16); local
402 EXPECT_EQ(63, c0.Run(32));
405 EXPECT_EQ(54, c0.Run(23));
408 RepeatingCallback<int()> c1 = BindRepeating(c0, 11);
414 EXPECT_EQ(32, BindRepeating(std::move(c0), 1).Run());
418 OnceCallback<int(int)> c0 = BindOnce(&Sum, 1, 2, 4, 8, 16); local
421 EXPECT_EQ(63, std::move(c0).Run(32));
426 EXPECT_TRUE(c0.is_null());
428 c0 = BindOnce(&Sum, 2, 3, 5, 7, 11);
432 OnceCallback<int()> c1 = BindOnce(std::move(c0), 13)
    [all...]
  /external/libvncserver/libvncserver/
tight.c 1130 uint8_t c0, c1; local
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
sixtappredict_neon.c 73 uint16x8_t c0, c1, c2, c3; local
124 c0 = vmull_u8(b0, filter0);
131 c0 = vmlsl_u8(c0, b4, filter4);
141 c0 = vmlal_u8(c0, b2, filter2);
148 d0 = vqaddq_s16(vreinterpretq_s16_u16(c2), vreinterpretq_s16_u16(c0));
175 uint16x8_t c0, c1, c2, c3; local
365 c0 = vmull_u8(b0, filter0);
370 c0 = vmlsl_u8(c0, b4, filter4)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/ppc/
intrapred_vsx.c 661 const uint8x16_t c0 = vec_perm(b0, b1, sl1); local
663 uint8x16_t row0 = avg3(a0, b0, c0);
729 const uint8x16_t c0 = vec_perm(b0, b1, sl1); local
733 uint8x16_t row1_0 = avg3(a0, b0, c0);
  /external/libxaac/decoder/drc_src/
impd_drc_static_payload.c 404 WORD32 i = 0, j = 0, c1 = -1, c0 = -1, parametric_drc_id = 0, local
415 c0 = i;
424 } else if (c0 >= 0) {
426 &(drc_config->str_p_loc_drc_coefficients_uni_drc[c0]);
1540 WORD32 c0 = -1; local
    [all...]
  /external/mesa3d/src/compiler/glsl/
lower_instructions.cpp 1066 ir_constant *c0 = local
1260 ir_constant *c0 = new(ir) ir_constant(unsigned(0), elements); local
1340 ir_constant *c0 = new(ir) ir_constant(int(0), elements); local
1512 ir_constant *c0 = new(ir) ir_constant(int(0), elements); local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 1021 unsigned c0, c1, c2, c3; local
    [all...]
  /external/skia/gm/
gradients.cpp 402 SkPoint c0; local
403 c0.iset(-80, 25);
409 paint.setShader(SkGradientShader::MakeTwoPointConical(c0, r0, c1, r1, colors,
445 SkPoint c0 = { 200, 25 }; local
453 paint.setShader(SkGradientShader::MakeTwoPointConical(c0, r0, c1, r1, colors, pos,
    [all...]
  /external/skia/src/gpu/ops/
GrAAHairLinePathRenderer.cpp 48 // If a,b,c are the original control points then the poly a0,b0,c0,c1,a1
53 // a0 c0
56 // Each is drawn as three triangles ((a0,a1,b0), (b0,c1,c0), (a1,c1,b0))
538 // | a0 c0
541 // edges a0->b0 and b0->c0 are parallel to original edges a->b and b->c,
546 BezierVertex& c0 = verts[3]; local
578 c0.fPos = c;
579 c0.fPos += cbN;
583 intersect_lines(a0.fPos, abN, c0.fPos, cbN, &b0.fPos);
    [all...]
  /external/skia/src/shaders/gradients/
SkGradientShader.cpp 513 Sk4f c0 = Sk4f::Load(color0.vec()), local
517 c0 = c0 * Sk4f(c0[3], c0[3], c0[3], 1.0f);
522 Sk4f delta = (c1 - c0) * step;
525 writePixel(c0, curIndex);
526 c0 += delta;
    [all...]

Completed in 556 milliseconds

1 2 3 4 5 67 8 91011>>