HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 226 - 250 of 406) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
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
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/dx/src/com/android/dx/rop/type/
Prototype.java 210 * Constructs an instance. This is a private constructor; use one
348 Type one = parameterTypes.get(i); local
349 if (one.isIntlike()) {
351 one = Type.INT;
353 list.set(i, one);
  /external/chromium_org/chrome/browser/prefs/
prefs_syncable_service_unittest.cc 133 sync_pb::EntitySpecifics one; local
134 sync_pb::PreferenceSpecifics* pref_one = one.mutable_preference();
139 one,
638 // The pref value should be the one dictated by policy.
671 // The pref value should still be the one dictated by policy.
697 // The pref value should be the one dictated by policy.
  /external/chromium_org/third_party/boringssl/src/crypto/modes/
gcm.c 122 long one; member in union:__anon16258
155 long one; member in union:__anon16259
233 long one; member in union:__anon16260
384 long one; member in union:__anon16261
454 long one; member in union:__anon16262
595 long one; member in union:__anon16263
755 long one; member in union:__anon16264
922 long one; member in union:__anon16265
1032 long one; member in union:__anon16266
1143 long one; member in union:__anon16267
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/sha/
sha1.c 202 long one; member in union:__anon16276
sha256.c 204 * is left one. This is why you might notice that rotation coefficients
239 long one; member in union:__anon16277
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
dxbc.h 83 uint32_t one; member in struct:dxbc_container_header
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_stencil.c 64 const GLubyte one = 1; local
71 _mesa_pack_ubyte_stencil_row(format, 1, &one, pixel);
345 * /return GL_TRUE = one or more fragments passed,
439 return GL_TRUE; /* one or more fragments passed both tests */

Completed in 3666 milliseconds

1 2 3 4 5 6 7 8 91011>>