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

<<111213141516

  /external/skia/legacy/src/effects/
SkColorMatrixFilter.cpp 147 int32_t one = SK_Fixed1; local
156 one >>= bits;
161 (array[18] - one) | array[19]);
171 int32_t needsScale = (array[0] - one) | // red axis
172 (array[6] - one) | // green axis
173 (array[12] - one); // blue axis
  /external/skia/src/core/
Sk64.cpp 96 Sk64 one; local
97 one.set(1);
98 one.shiftLeft(bits - 1);
99 this->add(one);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
string-weight.h 88 static const StringWeight<L, S> &One() {
89 static const StringWeight<L, S> one; local
90 return one;
341 w = StringWeight<L, S>::One();
  /external/v8/src/
fast-dtoa.cc 116 // and v (the input number). They are guaranteed to be precise up to one unit.
117 // In fact the error is guaranteed to be strictly less than one unit.
129 // representations, and one is closer to both w_low and w_high, then we know
157 // representations close to w, but we cannot decide which one is closer.
363 // * if more than one decimal representation gives the minimal number of
364 // decimal digits then the one closest to W (where W is the correct value
394 // low, w and high are imprecise, but by less than one ulp (unit in the last
418 DiyFp one = DiyFp(static_cast<uint64_t>(1) << -w.e(), w.e()); local
419 // Division by one is a shift.
420 uint32_t integrals = static_cast<uint32_t>(too_high.f() >> -one.e())
526 DiyFp one = DiyFp(static_cast<uint64_t>(1) << -w.e(), w.e()); local
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
ll.S 50 # but, that only gains us one byte of space in the lzss image.
107 inc %ecx # we set ecx to one so byte
233 lea one-6(%rbx,%rbx,2), %esi
235 # [one]+(num_cpus*6)
267 # gas won't let us force the one-byte constant
439 dec %edi # point to one less than null
464 push $81 # one added to cheat, we don't
561 one: .ascii "One\0\0\0" label
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.S 109 mov r6,#1 @ we set r6 to one so byte
172 add r1,r11,#(one-data_begin)
269 cmpeq r5,r1 @ if first byte matched, comp this one
271 cmpeq r5,r2 @ if first two matched, comp this one
310 sub r10,r10,#1 @ point to one less than null
448 one: .ascii "One \0" label
  /external/valgrind/main/exp-bbv/tests/x86-linux/
ll.S 44 # but, that only gains us one byte of space in the lzss image.
99 inc %ecx # we set ecx to one so byte
228 lea one-6(%ebx,%ebx,2), %esi
230 # [one]+(num_cpus*6)
261 # gas won't let us force the one-byte constant
439 dec %edi # point to one less than null
464 push $81 # one added to cheat, we don't
561 one: .ascii "One\0\0\0" label
  /libcore/benchmarks/src/benchmarks/regression/
ReflectionBenchmark.java 123 Integer one = Integer.valueOf(1); local
125 m.invoke(instance, one);
140 Integer one = Integer.valueOf(1); local
142 m.invoke(null, one);
  /libcore/luni/src/test/java/tests/api/java/util/
ConcurrentModTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
36 Double one = new Double(1.0); local
40 al.add(one);
80 Double one = new Double(1.0); local
84 al.add(one);
110 Double one = new Double(1.0); local
114 al.add(one);
140 Double one = new Double(1.0); local
144 al.add(one);
206 Double one = new Double(1.0) local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_lgammaf_r.c 25 one = 1.0000000000e+00, /* 0x3f800000 */ variable
128 case 4: y = __kernel_sindf(pi*(one-y)); break;
150 if(ix==0) return one/zero;
159 return one/zero;
161 if(t==zero) return one/zero; /* -integer */
173 if(ix>=0x3f3b4a20) {y = one-x; i= 0;}
174 else if(ix>=0x3e6d3308) {y= x-(tc-one); i=1;}
180 else {y=x-one;i=2;}
199 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))));
207 q = one+y*(r1+y*(r2+y*(r3+y*(r4+y*(r5+y*r6)))))
    [all...]
s_erf.c 44 * is close to one. The interval is chosen because the fix
47 * guarantee the error is less than one ulp for erf.
117 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
198 return (double)(1-i)+one/x; /* erf(+-inf)=+-1 */
209 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*qq5))));
214 s = fabs(x)-one;
216 Q = one+s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6)))));
220 if(hx>=0) return one-tiny; else return tiny-one;
223 s = one/(x*x)
    [all...]
s_erff.c 25 one = 1.0000000000e+00, /* 0x3F800000 */ variable
106 return (float)(1-i)+one/x; /* erf(+-inf)=+-1 */
118 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*qq5))));
123 s = fabsf(x)-one;
125 Q = one+s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6)))));
129 if(hx>=0) return one-tiny; else return tiny-one;
132 s = one/(x*x);
136 S=one+s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(
141 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 259 ByteCatchList.Item one = catches.get(j); local
260 CstType exceptionClass = one.getExceptionClass();
265 Hex.u2(one.getHandlerPc()));
322 Insn one = il.get(i); local
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 151 Field one = fields.get(i); local
153 CstFieldRef field = new CstFieldRef(thisClass, one.getNat());
154 int accessFlags = one.getAccessFlags();
157 TypedConstant constVal = one.getConstantValue();
169 AttributeTranslator.getAnnotations(one.getAttributes());
174 String msg = "...while processing " + one.getName().toHuman() +
175 " " + one.getDescriptor().toHuman();
231 Method one = methods.get(i); local
233 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat());
234 int accessFlags = one.getAccessFlags()
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 226 * Add one to properly represent a list-final
270 * the uninterpreted bits; one of: {@code 4 8 16 32 64}
449 RegisterSpec one = list.get(i); local
450 if (one.getReg() != next) {
453 next += one.getCategory();
585 * Writes one code unit to the given output destination.
  /dalvik/vm/jdwp/
JdwpSocket.cpp 51 * We only talk to one debugger at a time.
143 int one = 1; local
158 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one,
159 sizeof(one)) < 0)
525 * usually only going to find one packet, which is trivial to handle.
707 * We can do one of three things: (1) send a signal and catch
779 * Other than this one case, the protocol [claims to be] stateless.
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 33 int one = 0x10000; local
35 GLColor red = new GLColor(one, 0, 0);
36 GLColor green = new GLColor(0, one, 0);
37 GLColor blue = new GLColor(0, 0, one);
38 GLColor yellow = new GLColor(one, one, 0);
39 GLColor orange = new GLColor(one, half, 0);
40 GLColor white = new GLColor(one, one, one);
    [all...]
  /external/clang/test/Parser/
cxx0x-attributes.cpp 260 one, /* rest are deprecated */ two, three member in class:SecretKeepers
  /external/clang/test/Sema/
ms_class_layout.cpp 18 char one; member in class:A
186 // CHECK-NEXT: 12 | char one
208 // CHECK-NEXT: 76 | char one
238 // CHECK-NEXT: 92 | char one
269 // CHECK-NEXT: 92 | char one
  /external/clang/test/SemaCXX/
cxx0x-initializer-constructor.cpp 3 struct one { char c[1]; }; struct
134 one ov1(B); // expected-note {{not viable: cannot convert initializer list}}
139 static_assert(sizeof(ov1({{1, 1.0}, 2, {3, 4}})) == sizeof(one), "bad overload");
143 one ov2(int);
145 static_assert(sizeof(ov2({1})) == sizeof(one), "bad overload"); // list -> int ranks as identity
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
InsnFormat.java 226 * Add one to properly represent a list-final
270 * the uninterpreted bits; one of: {@code 4 8 16 32 64}
449 RegisterSpec one = list.get(i); local
450 if (one.getReg() != next) {
453 next += one.getCategory();
586 * Writes one code unit to the given output destination.
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Quaternion.h 8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
418 static const Scalar one = Scalar(1) - machine_epsilon<Scalar>(); local
425 if (absD>=one)
  /external/fdlibm/
e_pow.c 72 one = 1.0, variable
113 i0 = ((*(int*)&one)>>29)^1; i1=1-i0;
119 if((iy|ly)==0) return one;
157 if(hy<0) return one/x; else return x;
171 if(hy<0) z = one/z; /* z = (1/|x|) */
187 s = one; /* s (sign of result -ve**odd) = -1 else = 1 */
188 if((n|(yisint-1))==0) s = -one;/* (-ve)**(odd int) */
196 /* over/underflow if x is not close to one */
201 t = ax-one; /* t has 20 trailing zeros */
225 v = one/(ax+bp[k])
    [all...]
s_erf.c 42 * is close to one. The interval is chosen because the fix
45 * guarantee the error is less than one ulp for erf.
118 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
203 return (double)(1-i)+one/x; /* ieee_erf(+-inf)=+-1 */
214 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*qq5))));
219 s = ieee_fabs(x)-one;
221 Q = one+s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6)))));
225 if(hx>=0) return one-tiny; else return tiny-one;
228 s = one/(x*x)
    [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...]

Completed in 480 milliseconds

<<111213141516