HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 51 - 75 of 275) sorted by null

1 23 4 5 6 7 8 91011

  /external/v8/test/mjsunit/
keyed-call-ic.js 54 F.prototype.one = function() {return 'one'; }
59 ['one', 'one', 'one', 'one', 'two', 'two', 'one', 'three', 'one', 'two'];
112 key = 'one';
161 var m = 'one';
    [all...]
  /bionic/libm/src/
e_fmod.c 27 static const double one = 1.0, Zero[] = {0.0, -0.0,}; variable
130 x *= one; /* create necessary signal */
e_fmodf.c 29 static const float one = 1.0, Zero[] = {0.0, -0.0,}; variable
102 x *= one; /* create necessary signal */
e_sqrtf.c 23 static const float one = 1.0, tiny=1.0e-30; variable
76 z = one-tiny; /* trigger inexact flag */
77 if (z>=one) {
78 z = one+tiny;
79 if (z>one)
k_cos.c 61 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
77 w = one-hz;
78 return w + (((one-w)-hz) + (z*r-x*y));
k_tan.c 69 /* one */ 1.00000000000000000000e+00, /* 3FF00000, 00000000 */
73 #define one xxx[13] macro
s_atan.c 21 * is further reduced to one of the following intervals and the
69 one = 1.0, variable
90 if(huge+x>one) return x; /* raise inexact */
97 id = 0; x = (2.0*x-one)/(2.0+x);
99 id = 1; x = (x-one)/(x+one);
103 id = 2; x = (x-1.5)/(one+1.5*x);
s_atanf.c 52 one = 1.0, variable
70 if(huge+x>one) return x; /* raise inexact */
77 id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
79 id = 1; x = (x-one)/(x+one);
83 id = 2; x = (x-(float)1.5)/(one+(float)1.5*x);
  /external/astl/tests/
test_uninitialized.cpp 104 A one; local
105 A *dest = &one;
111 A one; local
112 A *dest = &one;
118 A one; local
119 A *dest = &one;
  /external/clang/test/CXX/special/class.temporary/
p1.cpp 45 typedef char one[1]; typedef in namespace:test2
48 one &meta(bool);
  /external/clang/test/Sema/
typeof-use-deprecated.c 11 enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} enumerator in enum:E
  /external/clang/test/SemaCXX/
cxx0x-initializer-scalars.cpp 3 struct one { char c[1]; }; struct
43 one overloaded(int);
46 static_assert(sizeof(overloaded({0})) == sizeof(one), "bad overload");
  /external/clang/test/SemaTemplate/
resolve-single-template-id.cpp 7 void one() { } function
31 one; // expected-warning {{expression result unused}}
40 *one; // expected-warning {{expression result unused}}
51 (false ? one : oneT<int>); // expected-warning {{expression result unused}}
63 one < one; //expected-warning {{self-comparison always evaluates to false}} \
  /external/fdlibm/
e_fmod.c 23 static const double one = 1.0, Zero[] = {0.0, -0.0,}; variable
25 static double one = 1.0, Zero[] = {0.0, -0.0,}; variable
137 x *= one; /* create necessary signal */
e_sqrt.c 16 * | Use the hardware sqrt if you have one |
31 * To compute q from q , one checks whether
60 * One may easily use induction to prove (4) and (5).
65 * After generating the 53 bits result, we compute one more bit.
86 static const double one = 1.0, tiny=1.0e-300; variable
88 static double one = 1.0, tiny=1.0e-300; variable
174 z = one-tiny; /* trigger inexact flag */
175 if (z>=one) {
176 z = one+tiny;
178 else if (z>one) {
    [all...]
k_cos.c 56 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
75 if(((int)x)==0) return one; /* generate inexact */
80 return one - (0.5*z - (z*r - x*y));
89 a = one-qx;
k_tan.c 63 /* one */ 1.00000000000000000000e+00, /* 3FF00000, 00000000 */
67 #define one xxx[13] macro
83 return one / ieee_fabs(x);
93 t = a = -one / w;
95 s = one + t * z;
s_atan.c 19 * is further reduced to one of the following intervals and the
82 one = 1.0, variable
105 if(huge+x>one) return x; /* raise inexact */
112 id = 0; x = (2.0*x-one)/(2.0+x);
114 id = 1; x = (x-one)/(x+one);
118 id = 2; x = (x-1.5)/(one+1.5*x);
  /external/openssl/crypto/ec/
ecp_mont.c 201 BIGNUM *one = NULL; local
229 one = BN_new();
230 if (one == NULL) goto err;
231 if (!BN_to_montgomery(one, BN_value_one(), mont, ctx)) goto err;
235 group->field_data2 = one;
236 one = NULL;
  /external/openssl/crypto/modes/
ctr128.c 92 const union { long one; char little; } is_endian = {1}; member in union:__anon9031
  /external/valgrind/main/none/tests/
fdleak_ipv4.c 19 int one = 1; local
23 DO( setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(int)) );
  /external/valgrind/main/none/tests/x86/
bug126147-x86.c 137 char one[50]; variable
146 check (mystrncpy (one, "abc", 4) == one, 1); /* Returned value. */
147 equal (one, "abc", 2); /* Did the copy go right? */
149 (void) strcpy (one, "abcdefgh");
150 (void) mystrncpy (one, "xyz", 2);
151 equal (one, "xycdefgh", 3); /* Copy cut by count. */
153 (void) strcpy (one, "abcdefgh");
154 (void) mystrncpy (one, "xyz", 3); /* Copy cut just before NUL. */
155 equal (one, "xyzdefgh", 4)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
67 CodeSigner one = new CodeSigner(cpath, ts); local
74 assertTrue(one.equals(one));
75 assertTrue(one.equals(two));
76 assertTrue(two.equals(one));
77 assertFalse(one.equals(three));
78 assertFalse(three.equals(one));
83 assertFalse( one.equals(null) );
84 assertFalse( one.equals(new Object()) )
    [all...]
TimestampTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
64 Timestamp one = new Timestamp(now, cpath); local
67 assertTrue(one.equals(one));
68 assertTrue(one.equals(two));
69 assertTrue(two.equals(one));
70 assertFalse(one.equals(null));
71 assertFalse(one.equals(new Object()));
74 assertFalse(one.equals(two1));
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
84 CodeSigner one = new CodeSigner(cpath, ts); local
91 assertTrue(one.equals(one));
92 assertTrue(one.equals(two));
93 assertTrue(two.equals(one));
94 assertFalse(one.equals(three));
95 assertFalse(three.equals(one));
100 assertFalse( one.equals(null) );
101 assertFalse( one.equals(new Object()) )
    [all...]

Completed in 531 milliseconds

1 23 4 5 6 7 8 91011