OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:C5
(Results
1 - 8
of
8
) sorted by null
/bionic/libm/src/
k_cos.c
34
* |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +
C5
*x +C6*x )| <= 2
38
* 4. let r = C1*x +C2*x +C3*x +C4*x +
C5
*x +C6*x , then
66
C5
= 2.08757232129817482790e-09, /* 0x3E21EE9E, 0xBDB4B1C4 */
75
r = z*(C1+z*(C2+z*(C3+z*(C4+z*(
C5
+z*C6)))));
/external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp
38
class
C5
50
, public
C5
57
: virtual public
C5
68
, public
C5
106
// CHECK-NEXT: -- (Test1::
C5
, 48) vtable address --
160
// CHECK-NEXT: -- (Test1::
C5
, 208) vtable address --
187
// CHECK-NEXT: -- (Test1::
C5
, 312) vtable address --
/external/fdlibm/
k_cos.c
30
* |ieee_cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +
C5
*x +C6*x )| <= 2
34
* 4. let r = C1*x +C2*x +C3*x +C4*x +
C5
*x +C6*x , then
61
C5
= 2.08757232129817482790e-09, /* 0x3E21EE9E, 0xBDB4B1C4 */
78
r = z*(C1+z*(C2+z*(C3+z*(C4+z*(
C5
+z*C6)))));
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp
102
class
C5
{
/external/clang/test/SemaCXX/
alias-template.cpp
87
class
C5
{
/external/bluetooth/bluez/sbc/
sbc_tables.h
474
#define
C5
2.4270044280
484
F(2.10371989E-03 *
C5
), F(3.49717454E-03 *
C5
),
492
F(8.85757540E-03 *
C5
), F(5.31873032E-02 *
C5
),
500
F(1.45389847E-01 *
C5
), -F(8.29847578E-02 *
C5
),
508
F(1.53184106E-02 *
C5
), -F(8.02941163E-03 *
C5
),
516
F(1.78371725E-03 *
C5
), -F(1.56575398E-04 * C5)
[
all
...]
/libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java
49
public long toHours(long d) { return d/(
C5
/C0); }
60
public long toHours(long d) { return d/(
C5
/C1); }
71
public long toHours(long d) { return d/(
C5
/C2); }
82
public long toHours(long d) { return d/(
C5
/C3); }
93
public long toHours(long d) { return d/(
C5
/C4); }
99
public long toNanos(long d) { return x(d,
C5
/C0, MAX/(
C5
/C0)); }
100
public long toMicros(long d) { return x(d,
C5
/C1, MAX/(
C5
/C1)); }
101
public long toMillis(long d) { return x(d,
C5
/C2, MAX/(C5/C2));
[
all
...]
/external/webrtc/src/modules/audio_processing/aec/main/source/
aec_core_sse2.c
271
// pol5(y) =
C5
* y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
272
static const ALIGN16_BEG float ALIGN16_END
C5
[4] =
284
const __m128 pol5_y_0 = _mm_mul_ps(y, *((__m128 *)
C5
));
Completed in 381 milliseconds