HomeSort by relevance Sort by last modified time
    Searched refs:one (Results 101 - 125 of 2053) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/fdlibm/
e_atanh.c 36 static const double one = 1.0, huge = 1e300; variable
38 static double one = 1.0, huge = 1e300; variable
64 t = 0.5*ieee_log1p(t+t*x/(one-x));
66 t = 0.5*ieee_log1p((x+x)/(one-x));
e_sinh.c 35 static const double one = 1.0, shuge = 1.0e307; variable
37 static double one = 1.0, shuge = 1.0e307; variable
63 if(shuge+x>one) return x;/* ieee_sinh(tiny) = tiny with inexact */
65 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
66 return h*(t+t/(t+one));
73 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
  /external/libcxxabi/test/
test_vector1.cpp 66 void *one, *two, *three; local
69 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL );
73 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL );
78 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct );
82 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct );
87 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL );
91 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL );
96 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct );
100 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct );
110 void *one, *two, *three local
151 void *one, *two, *three; local
208 void *one, *two, *three; local
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupDataInputStream.java 52 * Read one byte of entity data from the stream, returning it as
59 byte[] one = mOneByte;
61 one = mOneByte = new byte[1];
63 mData.readEntityData(one, 0, 1);
64 return one[0];
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
test_vector1.cpp 66 void *one, *two, *three; local
69 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL );
73 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL );
78 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct );
82 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct );
87 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL );
91 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL );
96 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct );
100 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct );
110 void *one, *two, *three local
151 void *one, *two, *three; local
208 void *one, *two, *three; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
68 Timestamp one = new Timestamp(now, cpath); local
71 assertTrue(one.equals(one));
72 assertTrue(one.equals(two));
73 assertTrue(two.equals(one));
74 assertFalse(one.equals(null));
75 assertFalse(one.equals(new Object()));
78 assertFalse(one.equals(two1));
107 Timestamp one = new Timestamp(now, cpath) local
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalLoadingCacheTest.java 89 Object one = new Object(); local
90 cache.getUnchecked(one);
103 cache.getUnchecked(one);
149 Object one = new Object(); local
150 assertNull(map.put(one, one));
151 assertSame(one, map.get(one));
152 assertTrue(map.containsKey(one));
153 assertTrue(map.containsValue(one));
189 Object one = new Object(); local
212 Object one = new Object(); local
272 Object one = new Object(); local
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
overflow-in-qsort.cc 16 volatile int one = 1; variable
23 global_array[one * 10] = 0; // BOOM
  /external/compiler-rt/test/asan/TestCases/
contiguous_container_crash.cc 17 static volatile int one = 1; variable
24 return (int)t[60 * one]; // Touches the poisoned memory.
  /art/runtime/
utf-inl.h 25 uint8_t one = *(*utf8_data_in)++; local
26 if ((one & 0x80) == 0) {
27 // one-byte encoding
28 return one;
32 if ((one & 0x20) == 0) {
34 return ((one & 0x1f) << 6) | (two & 0x3f);
38 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_asinhl.c 54 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
79 if (huge + x > one) RETURNI(x); /* return x inexact except 0 */
85 w = logl(2.0*t+one/(sqrtl(x*x+one)+t));
88 w =log1pl(fabsl(x)+t/(one+sqrtl(one+t)));
s_atanf.c 45 one = 1.0, variable
63 if(huge+x>one) return x; /* raise inexact */
70 id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
72 id = 1; x = (x-one)/(x+one);
76 id = 2; x = (x-(float)1.5)/(one+(float)1.5*x);
s_erff.c 25 one = 1.0000000000e+00, /* 0x3F800000 */ variable
90 return (float)(1-i)+one/x; /* erf(+-inf)=+-1 */
101 s = one+z*(qq1+z*(qq2+z*qq3));
106 s = fabsf(x)-one;
108 Q = one+s*(qa1+s*(qa2+s*(qa3+s*qa4)));
112 if(hx>=0) return one-tiny; else return tiny-one;
115 s = one/(x*x);
118 S=one+s*(sa1+s*(sa2+s*(sa3+s*sa4)));
121 S=one+s*(sb1+s*(sb2+s*(sb3+s*sb4)))
    [all...]
  /external/chromium_org/ui/base/glib/
glib_signal.h 31 static RETURN METHOD ## Thunk(SENDER sender, ARG1 one, \
33 return reinterpret_cast<CLASS*>(userdata)->METHOD(sender, one); \
39 static RETURN METHOD ## Thunk(SENDER sender, ARG1 one, ARG2 two, \
41 return reinterpret_cast<CLASS*>(userdata)->METHOD(sender, one, two); \
47 static RETURN METHOD ## Thunk(SENDER sender, ARG1 one, ARG2 two, \
50 METHOD(sender, one, two, three); \
57 static RETURN METHOD ## Thunk(SENDER sender, ARG1 one, ARG2 two, \
61 METHOD(sender, one, two, three, four); \
68 static RETURN METHOD ## Thunk(SENDER sender, ARG1 one, ARG2 two, \
72 METHOD(sender, one, two, three, four, five);
    [all...]
  /external/clang/test/Sema/
flexible-array-init.c 2 struct one { struct
7 struct one x2 = { 5, 1, 2, 3 }; // expected-warning{{flexible array initialization is a GNU extension}}
10 struct one x3 = {5, {1, 2, 3}}; // expected-error{{initialization of flexible array member is not allowed}}
11 struct one x3a = { 5 };
12 struct one x3b = { .a = 5 };
13 struct one x3c = { 5, {} }; // expected-warning{{use of GNU empty initializer extension}} \
  /external/chromium_org/third_party/sqlite/src/test/
collate9.test 52 INSERT INTO xy VALUES('one', 'one');
61 } {two three one}
66 } {one three two}
71 } {two three one sort}
81 } {two three one nosort}
87 } {two 1 three 1 one 0}
92 } {two 0 three 0 one 1}
97 } {two 1 three 1 one 0}
102 } {one three two
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
block-scoping.js 48 function f2(one) {
49 var x = one + 1;
50 let y = one + 2;
51 const u = one + 4;
53 let z = one + 3;
54 const v = one + 5;
55 assertEquals(1, eval('one'));
67 function f3(one) {
68 var x = one + 1;
69 let y = one + 2
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationTestClass.java 100 public int one; field in class:SerializationTestClass.TestFieldsOnePublic
104 public int one; field in class:SerializationTestClass.TestFieldsTwoPublic
110 private int one; field in class:SerializationTestClass.TestFieldsOnePrivate
115 private int one; field in class:SerializationTestClass.TestFieldsTwoPrivate
120 protected int one; field in class:SerializationTestClass.TestFieldsOneProtected
124 protected int one; field in class:SerializationTestClass.TestFieldsTwoProtected
129 static int one; field in class:SerializationTestClass.TestFieldsOneStatic
133 static int one; field in class:SerializationTestClass.TestFieldsTwoStatic
138 final int one = 0; field in class:SerializationTestClass.TestFieldsOneFinal
142 final int one = 0 field in class:SerializationTestClass.TestFieldsTwoFinal
147 volatile int one; field in class:SerializationTestClass.TestFieldsOneVolatile
151 volatile int one; field in class:SerializationTestClass.TestFieldsTwoVolatile
156 transient int one; field in class:SerializationTestClass.TestFieldsOneTransient
160 transient int one; field in class:SerializationTestClass.TestFieldsTwoTransient
    [all...]
  /dalvik/dx/src/com/android/dx/io/
CodeReader.java 84 DecodedInstruction one = decodedInstructions[i]; local
85 if (one == null) {
89 callVisit(decodedInstructions, one);
99 private void callVisit(DecodedInstruction[] all, DecodedInstruction one) {
102 switch (OpcodeInfo.getIndexType(one.getOpcode())) {
114 visitor.visit(all, one);
119 void visit(DecodedInstruction[] all, DecodedInstruction one);
  /external/chromium_org/third_party/skia/experimental/Intersection/
Intersections.h 58 int insert(double one, double two, const _Point& pt);
61 void insertCoincident(double one, double two, const _Point& pt) {
62 int index = insertSwap(one, two, pt);
71 int insertSwap(double one, double two, const _Point& pt) {
73 return insert(two, one, pt);
75 return insert(one, two, pt);
130 unsigned short fIsCoincident[2]; // bit arrays, one bit set for each coincident T
139 void remove(double one, double two, const _Point& startPt, const _Point& endPt);
  /external/clang/test/SemaCXX/
cxx0x-initializer-references.cpp 3 struct one { char c; }; struct
39 one f(const int&);
42 one g(int&); // expected-note {{passing argument}}
57 one f(const int&);
61 static_assert(sizeof(f({1})) == sizeof(one), "bad overload resolution");
63 one g(int&);
68 one h(const int&);
  /external/dexmaker/src/dx/java/com/android/dx/io/
CodeReader.java 84 DecodedInstruction one = decodedInstructions[i]; local
85 if (one == null) {
89 callVisit(decodedInstructions, one);
99 private void callVisit(DecodedInstruction[] all, DecodedInstruction one) {
102 switch (OpcodeInfo.getIndexType(one.getOpcode())) {
114 visitor.visit(all, one);
119 void visit(DecodedInstruction[] all, DecodedInstruction one);
  /external/skia/experimental/Intersection/
Intersections.h 58 int insert(double one, double two, const _Point& pt);
61 void insertCoincident(double one, double two, const _Point& pt) {
62 int index = insertSwap(one, two, pt);
71 int insertSwap(double one, double two, const _Point& pt) {
73 return insert(two, one, pt);
75 return insert(one, two, pt);
130 unsigned short fIsCoincident[2]; // bit arrays, one bit set for each coincident T
139 void remove(double one, double two, const _Point& startPt, const _Point& endPt);
  /external/srec/config/en.us/tcp/
change_sample_rate2.tcp 12 recognize_nist dallas/0000/S072.nwf 0 0 oh eight four zero nine two five one eight five
13 recognize_nist dallas/0000/S074.nwf 0 0 eight six one oh five six six two six two
17 recognize_nist dallas/0000/S079.nwf 0 0 seven one one five six zero oh six five nine
19 recognize_nist dallas/0000/S083.nwf 0 0 zero nine nine five seven two oh one zero six
20 recognize_nist dallas/0000/S086.nwf 0 0 six eight seven two one oh eight five zero seven
25 recognize_nist dallas/0300/S057.nwf 0 0 eight four zero five six five four one four six
26 recognize_nist dallas/0300/S063.nwf 0 0 oh nine seven three one three zero five five zero
27 recognize_nist dallas/0300/S065.nwf 0 0 one three three three zero zero five oh oh six
37 recognize_nist dallas-8kHz/0301/S079.nwf 0 0 zero seven nine six five one four eight one eigh
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
chashtst.c 98 static const char one[4] = {0x6F, 0x6E, 0x65, 0}; /* "one" */ local
118 _put(hash, one, 1, 0);
122 _put(hash, one, -1, 1);
125 _put(hash, one, 100, -1);
129 _get(hash, one, 100);
134 if(_compareChars((void*)one, (void*)three) == TRUE ||
135 _compareChars((void*)one, (void*)one2) != TRUE ||
136 _compareChars((void*)one, (void*)one) != TRUE |
157 static const UChar one[4] = {0x006F, 0x006E, 0x0065, 0}; \/* L"one" *\/ local
    [all...]

Completed in 867 milliseconds

1 2 3 45 6 7 8 91011>>