HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 276 - 300 of 597) sorted by null

<<11121314151617181920>>

  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalTest.java 18 return one;
37 assertSame(tl.get(), one); local
41 assertSame(tl.get(), one); local
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidInstanceofTest.java 51 InterfaceOne one = mOne; local
53 assertFalse("m_one should not be a ChildOfAFive", one instanceof ChildOfAFive);
93 InterfaceOne one = mFive; local
95 assertFalse("m_five does not implement InterfaceFive", one instanceof InterfaceFive);
  /ndk/sources/cxx-stl/gabi++/tests/
test_vector1.cpp 86 void *one, *two, *three; local
89 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, NULL, NULL );
93 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, NULL );
98 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 0, my_construct, my_destruct );
102 __cxxabiv1::__cxa_vec_delete ( one, 40, 0, my_destruct );
107 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, NULL, NULL );
111 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, NULL );
116 one = __cxxabiv1::__cxa_vec_new ( 10, 40, 8, my_construct, my_destruct );
120 __cxxabiv1::__cxa_vec_delete ( one, 40, 8, my_destruct );
130 void *one, *two, *three local
171 void *one, *two, *three; local
228 void *one, *two, *three; local
    [all...]
  /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...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
AutoFocusHelper.java 17 package com.android.camera.one.v2;
26 import com.android.camera.one.OneCamera;
27 import com.android.camera.one.Settings3A;
32 * {@link com.android.camera.one.OneCamera} implementations.
OneCameraManagerImpl.java 17 package com.android.camera.one.v2;
30 import com.android.camera.one.OneCamera;
31 import com.android.camera.one.OneCamera.Facing;
32 import com.android.camera.one.OneCamera.OpenCallback;
33 import com.android.camera.one.OneCameraManager;
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_tgamma.c 126 static const double zero = 0., one = 1.0, tiny = 1e-300; variable
145 u.a = one - tiny; /* raise inexact */
146 return (one/x);
162 z = one/(x*x);
167 u.a -= one;
190 y = x - one;
191 ym1 = y - one;
198 yy.a = r.a - one;
202 for (ym1 = y-one; ym1 > LEFT + x0; y = ym1--, yy.a--) {
230 t = (one-x0); t += x
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_j0.c 35 * to compute the worse one.)
69 one = 1.0, variable
92 if(ix>=0x7ff00000) return one/(x*x);
116 if(huge+x>one) { /* raise inexact if x != 0 */
117 if(ix<0x3e400000) return one; /* |x|<2**-27 */
118 else return one - 0.25*x*x;
123 s = one+z*(S01+z*(S02+z*(S03+z*S04)));
125 return one + z*(-0.25+(r/s));
128 return((one+u)*(one-u)+z*(r/s))
    [all...]
e_j0f.c 26 one = 1.0, variable
49 if(ix>=0x7f800000) return one/(x*x);
73 if(huge+x>one) { /* raise inexact if x != 0 */
74 if(ix<0x32000000) return one; /* |x|<2**-27 */
75 else return one - (float)0.25*x*x;
80 s = one+z*(S01+z*(S02+z*(S03+z*S04)));
82 return one + z*((float)-0.25+(r/s));
85 return((one+u)*(one-u)+z*(r/s));
111 if(ix>=0x7f800000) return one/(x+x*x)
    [all...]
e_j1.c 36 * to compute the worse one.)
69 one = 1.0, variable
93 if(ix>=0x7ff00000) return one/x;
118 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
122 s = one+z*(s01+z*(s02+z*(s03+z*(s04+z*s05))));
151 if(ix>=0x7ff00000) return one/(x+x*x);
152 if((ix|lx)==0) return -one/zero;
173 * to compute the worse one.
187 v = one+z*(V0[0]+z*(V0[1]+z*(V0[2]+z*(V0[3]+z*V0[4]))));
188 return(x*(u/v) + tpi*(__ieee754_j1(x)*__ieee754_log(x)-one/x))
    [all...]
e_j1f.c 26 one = 1.0, variable
50 if(ix>=0x7f800000) return one/x;
75 if(huge+x>one) return (float)0.5*x;/* inexact if x!=0 necessary */
79 s = one+z*(s01+z*(s02+z*(s03+z*(s04+z*s05))));
108 if(ix>=0x7f800000) return one/(x+x*x);
109 if(ix==0) return -one/zero;
130 * to compute the worse one.
144 v = one+z*(V0[0]+z*(V0[1]+z*(V0[2]+z*(V0[3]+z*V0[4]))));
145 return(x*(u/v) + tpi*(__ieee754_j1f(x)*__ieee754_logf(x)-one/x));
233 z = one/(x*x)
    [all...]
e_pow.c 68 one = 1.0, variable
110 if((iy|ly)==0) return one;
113 if (hx==0x3ff00000 && lx == 0) return one;
144 return one; /* (-1)**+-inf is NaN */
151 if(hy<0) return one/x; else return x;
165 if(hy<0) z = one/z; /* z = (1/|x|) */
185 s = one; /* s (sign of result -ve**odd) = -1 else = 1 */
186 if((n|(yisint-1))==0) s = -one;/* (-ve)**(odd int) */
194 /* over/underflow if x is not close to one */
199 t = ax-one; /* t has 20 trailing zeros *
    [all...]
e_powf.c 27 one = 1.0, variable
68 if(iy==0) return one;
71 if (hx==0x3f800000) return one;
96 return one; /* (-1)**+-inf is NaN */
103 if(hy<0) return one/x; else return x;
115 if(hy<0) z = one/z; /* z = (1/|x|) */
130 sn = one; /* s (sign of result -ve**odd) = -1 else = 1 */
131 if((n|(yisint-1))==0) sn = -one;/* (-ve)**(odd int) */
135 /* over/underflow if x is not close to one */
165 v = one/(ax+bp[k])
    [all...]
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...]
  /bionic/tests/
fortify_test.cpp 54 char one[1]; member in struct:foo
78 myfoo.one[0] = 'A'; // not null terminated string
79 ASSERT_EXIT(stpncpy(myfoo.b, myfoo.one, sizeof(myfoo.b)),
103 myfoo.one[0] = 'A'; // not null terminated string
104 ASSERT_EXIT(strncpy(myfoo.b, myfoo.one, sizeof(myfoo.b)),
239 // one byte target with longer source (should fail)
247 ASSERT_EXIT(strcpy(myfoo.one, src),
299 ASSERT_EXIT(strlcpy(myfoo.one, myfoo.a, n),
315 myfoo.one[0] = '\0';
317 ASSERT_EXIT(strlcat(myfoo.one, myfoo.a, n)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java 204 CatchTable.Entry one = table.get(i); local
205 int start = one.getStart();
206 int end = one.getEnd();
217 out.writeShort(handlerOffsets.get(one.getHandlers()));
225 * Only one of {@code printTo} or {@code annotateTo} should
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlockList.java 112 BasicBlock one = (BasicBlock) getOrNull0(i); local
113 if (one != null) {
114 result += one.getInsns().size();
132 BasicBlock one = (BasicBlock) getOrNull0(i); local
133 if (one != null) {
134 InsnList insns = one.getInsns();
178 BasicBlock one = get(i); local
179 InsnList insns = one.getInsns();
185 * Returns an instance that is identical to this one, except that
198 BasicBlock one = (BasicBlock) get0(i) local
    [all...]
Rop.java 52 /** the opcode; one of the constants in {@link RegOps} */
68 * the branchingness of this op; one of the {@code BRANCH_*}
80 * Constructs an instance. This method is private. Use one of the
83 * @param opcode the opcode; one of the constants in {@link RegOps}
89 * @param branchingness the branchingness of this op; one of the
131 * @param opcode the opcode; one of the constants in {@link RegOps}
137 * @param branchingness the branchingness of this op; one of the
151 * @param opcode the opcode; one of the constants in {@link RegOps}
155 * @param branchingness the branchingness of this op; one of the
170 * @param opcode the opcode; one of the constants in {@link RegOps
284 Type one = exceptions.getType(i); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 206 * Constructs an instance. This is a private constructor; use one
344 Type one = parameterTypes.get(i); local
345 if (one.isIntlike()) {
347 one = Type.INT;
349 list.set(i, one);
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 163 Type one = params.get(i); local
164 locals.set(at, one);
165 at += one.getCategory();
370 * ending frame of one of the subroutine's calling blocks. Subroutine
LocalVariableList.java 66 * given instances, where one instance should have only type
68 * result is identical to the one with descriptors, except that
133 * <p><b>Note:</b> At least one of {@code descriptor} or
164 Item one = (Item) get0(i); local
166 if ((one != null) && one.matchesAllButType(item)) {
167 return one;
178 * <i>just past</i> the one that sets the variable.
189 Item one = (Item) get0(i); local
191 if ((one != null) && one.matchesPcAndIndex(pc, index))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 257 * {@link AttributeList}, if any, translating it to one or more of an
404 Method one = methods.get(i); local
405 AttributeList attribs = one.getAttributes();
411 one.getNat().getName(),
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 201 CatchTable.Entry one = table.get(i); local
202 int start = one.getStart();
203 int end = one.getEnd();
214 out.writeShort(handlerOffsets.get(one.getHandlers()));
222 * Only one of {@code printTo} or {@code annotateTo} should
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlockList.java 112 BasicBlock one = (BasicBlock) getOrNull0(i); local
113 if (one != null) {
114 result += one.getInsns().size();
132 BasicBlock one = (BasicBlock) getOrNull0(i); local
133 if (one != null) {
134 InsnList insns = one.getInsns();
177 BasicBlock one = get(i); local
178 InsnList insns = one.getInsns();
184 * Returns an instance that is identical to this one, except that
197 BasicBlock one = (BasicBlock) get0(i) local
    [all...]
RegisterSpecList.java 297 * are included, while indexes with a one are excluded. Mutability
328 * Returns an instance that is identical to this one, except that
346 RegisterSpec one = (RegisterSpec) get0(i); local
347 if (one != null) {
348 result.set0(i, one.withOffset(delta));
360 * Returns an instance that is identical to this one, except that

Completed in 1013 milliseconds

<<11121314151617181920>>