HomeSort by relevance Sort by last modified time
    Searched defs:C3 (Results 26 - 50 of 55) sorted by null

12 3

  /external/pdfium/core/src/fdrm/crypto/
fx_crypt_aes.cpp     [all...]
  /external/ppp/pppd/
md4.c 50 #define C3 015666365641 /* round 3 constant = sqrt(3) in octal */
51 /* C2 and C3 are from Knuth, The Art of Programming, Volume 2
80 #define hh(A,B,C,D,i,s) A = rot((A + h(B,C,D) + X[i] + C3),s)
  /external/speex/libspeex/
math_approx.h 134 #define C3 4215*/
140 #define C3 4204
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
311 #define C3 0.0414877472f
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 47 public long toSeconds(long d) { return d/(C3/C0); }
58 public long toSeconds(long d) { return d/(C3/C1); }
69 public long toSeconds(long d) { return d/(C3/C2); }
77 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); }
78 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); }
79 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); }
81 public long toMinutes(long d) { return d/(C4/C3); }
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_expl.c 326 C3 = 1.66666666666666666666666666666666667e-1L,
413 q = x * x2 * C3 + x2 * x2 * (C4 + x * (C5 + x * (C6 +
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
dct16x16_test.cc 66 const double C3 = 0.956940335732209;
121 temp1 = step[10] * C3;
134 temp2 = step[13] * C3;
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 257 C3:
272 HHH (C3::GGG &);
289 C1::C3 * >
311 scoped_ptr < C1::C3 > context;
  /external/clang/test/Sema/
warn-duplicate-enum.c 18 enum C { C1, C2 = -1, C3 }; // expected-warning{{element C1 has been implicitly assigned 0 which another element has been assigned}} \
19 // expected-note {{element C3 also has value 0}}
  /external/libvpx/libvpx/test/
dct16x16_test.cc 69 const double C3 = 0.956940335732209;
124 temp1 = step[10] * C3;
137 temp2 = step[13] * C3;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
dct16x16_test.cc 69 const double C3 = 0.956940335732209;
124 temp1 = step[10] * C3;
137 temp2 = step[13] * C3;
  /external/clang/test/FixIt/
fixit.cpp 26 class C3 {
28 C3(C3, int i = 0); // expected-error{{copy constructor must pass its first argument by reference}}
  /external/eigen/Eigen/src/Core/products/
GeneralBlockPanelKernel.h 570 AccPacket C0, C1, C2, C3, C4, C5, C6, C7;
574 if(nr==4) traits.initAcc(C3);
663 traits.madd(A0,B3,C3,T0);
677 traits.madd(A0,B3,C3,T0);
692 traits.madd(A0,B3,C3,T0);
703 traits.madd(A0,B3,C3,T0);
747 traits.madd(A0,B3,C3,T0);
773 traits.acc(C3, alphav, R3);
815 AccPacket C0, C1, C2, C3;
819 if(nr==4) traits.initAcc(C3);
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 253 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
258 static const ALIGN16_BEG float ALIGN16_END C3[4] =
269 const __m128 pol5_y_3 = _mm_add_ps(pol5_y_2, *((__m128 *)C3));
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core_neon.c 297 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
300 const float32x4_t C3 = vdupq_n_f32(-1.2315303f);
306 pol5_y = vmlaq_f32(C3, y, pol5_y);
aec_core_sse2.c 269 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
275 C3[4] = {-1.2315303f, -1.2315303f, -1.2315303f, -1.2315303f};
285 const __m128 pol5_y_3 = _mm_add_ps(pol5_y_2, *((__m128*)C3));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest1.java 218 // MultipleClassBasedReplacementWhenDumping -> C1 -> C2 -> C3 -> FOO
229 return new C3();
233 private static class C3 implements java.io.Serializable {
    [all...]
ObjectOutputStreamTest.java 267 return new C3();
271 private static class C3 implements java.io.Serializable {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp     [all...]
InstCombineCompares.cpp     [all...]
  /external/openssl/crypto/modes/
gcm128.c     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_datetime.py     [all...]
test_descr.py 848 # Testing ex5 from C3 switch discussion...
2899 c3 = C(3) variable in class:.test_classic_comparisons.classic
2976 c3 = C(3) variable in class:.test_rich_comparisons.classic
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_datetime.py     [all...]
test_descr.py 848 # Testing ex5 from C3 switch discussion...
2899 c3 = C(3) variable in class:.test_classic_comparisons.classic
2976 c3 = C(3) variable in class:.test_rich_comparisons.classic
    [all...]
  /external/svox/pico/lib/
picopam.c 199 picoos_uint8 c3_overall_syllable; /* C3 */
299 #define C3 30
    [all...]

Completed in 963 milliseconds

12 3