/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.5.2.js | 37 Division of an infinity by a zero results in an infinity. The sign is determined by the rule already stated above. 38 Division of an infinity by a non-zero finite value results in a signed infinity. The sign is determined by the rule 40 Division of a finite value by an infinity results in zero. The sign is determined by the rule already stated above. 41 Division of a zero by a zero results in NaN; division of zero by any other finite value results in zero, with the sign 43 Division of a non-zero finite value by a zero results in a signed infinity. The sign is determined by the rule 45 In the remaining cases, where neither an infinity, nor a zero, nor NaN is involved, the quotient is computed an [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
CountDownLatch.java | 17 * zero due to invocations of the {@link #countDown} method, after which 34 * the count to reach zero before proceeding, it simply prevents any 123 * zero, actions in a thread prior to calling 153 // Decrement count; signal when transition to zero 181 * zero, unless the thread is {@linkplain Thread#interrupt interrupted}. 183 * <p>If the current count is zero then this method returns immediately. 185 * <p>If the current count is greater than zero then the current 189 * <li>The count reaches zero due to invocations of the 212 * zero, unless the thread is {@linkplain Thread#interrupt interrupted}, 215 * <p>If the current count is zero then this method returns immediatel [all...] |
/external/llvm/unittests/VMCore/ |
ConstantsTest.cpp | 21 Constant* Zero = ConstantInt::get(Int1, 0); 28 EXPECT_EQ(Zero, ConstantExpr::getAdd(One, One)); 32 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, One)); 36 EXPECT_EQ(Zero, ConstantExpr::getAdd(NegOne, NegOne)); 40 EXPECT_EQ(Zero, ConstantExpr::getSub(NegOne, One)); 44 EXPECT_EQ(Zero, ConstantExpr::getSub(One, NegOne)); 48 EXPECT_EQ(Zero, ConstantExpr::getSub(One, One)); 56 EXPECT_EQ(One, ConstantExpr::getShl(One, Zero)); 88 EXPECT_EQ(Zero, ConstantExpr::getSRem(NegOne, One)); 92 EXPECT_EQ(Zero, ConstantExpr::getURem(NegOne, One)) [all...] |
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
OldAndroidArrayTest.java | 62 array[0] = "entry zero"; 67 assertEquals("entry zero", Array.get(strArray, 0)); 97 array3[0][0][0] = "zero zero zero"; 98 array3[0][1][2] = "zero one two"; 120 array3[0][1][2] = "zero one two";
|
/frameworks/base/core/java/android/database/ |
CursorWindow.java | 184 * and number of columns in the cursor are all reset to zero. 200 * The start position is the zero-based index of the first row that this window contains 204 * @return The zero-based start position. 213 * The start position is the zero-based index of the first row that this window contains 217 * @param pos The new zero-based start position. 287 * @param row The zero-based row index. 288 * @param column The zero-based column index. 301 * @param row The zero-based row index. 302 * @param column The zero-based column index. 317 * @param row The zero-based row index [all...] |
/external/llvm/test/CodeGen/Mips/ |
atomic.ll | 16 ; CHECK: beq $[[R2]], $zero, $[[BB0]] 29 ; CHECK: nor $[[R2:[0-9]+]], $zero, $[[R3]] 31 ; CHECK: beq $[[R2]], $zero, $[[BB0]] 47 ; CHECK: beq $[[R2]], $zero, $[[BB0]] 64 ; CHECK: beq $[[R2]], $zero, $[[BB0]] 79 ; CHECK: addiu $[[R1:[0-9]+]], $zero, -4 83 ; CHECK: ori $[[R5:[0-9]+]], $zero, 255 85 ; CHECK: nor $[[R7:[0-9]+]], $zero, $[[R6]] 95 ; CHECK: beq $[[R14]], $zero, $[[BB0]] 110 ; CHECK: addiu $[[R1:[0-9]+]], $zero, - [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/ |
ECPrivateKeySpec_ImplTest.java | 58 BigInteger.ZERO, 60 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)); 61 new ECPrivateKeySpec(BigInteger.ZERO, 77 BigInteger.ZERO, 79 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)); 119 BigInteger.ZERO, 121 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)); 125 ECPrivateKeySpec ks = new ECPrivateKeySpec(BigInteger.ZERO, params); 145 BigInteger.ZERO, 147 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)) [all...] |
ECPublicKeySpec_ImplTest.java | 58 BigInteger.ZERO, 60 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)); 77 BigInteger.ZERO, 79 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)); 118 BigInteger.ZERO, 120 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)); 143 BigInteger.ZERO, 145 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)); 169 BigInteger.ZERO, 171 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L)) [all...] |
/frameworks/base/media/java/android/mtp/ |
MtpObjectInfo.java | 104 * Will be zero for objects with no thumbnail 114 * Will be zero for objects with no thumbnail 124 * Will be zero for objects with no thumbnail 134 * Will be zero for objects with no thumbnail 144 * Will be zero for non-image objects 154 * Will be zero for non-image objects 164 * Will be zero for non-image objects 174 * Will be zero for the root directory of a storage unit 184 * Will be zero objects that are not of format 197 * Will be zero objects that are not of forma [all...] |
/external/libffi/ |
acinclude.m4 | 27 AC_CACHE_CHECK([whether mmap from /dev/zero works], 29 [# Add a system to this blacklist if it has mmap() but /dev/zero 30 # does not exist, or if mmapping /dev/zero does not give anonymous 46 # Unlike /dev/zero, the MAP_ANON(YMOUS) defines can be probed for. 69 # above for use of /dev/zero. 86 [Define if mmap of /dev/zero works.])
|
/external/webkit/Source/JavaScriptCore/wtf/ |
DecimalNumber.h | 47 // Zero should always have exponent 0. 49 // No values other than zero should have a leading zero. 51 // No values other than zero should have trailing zeros. 65 // Zero should always have exponent 0. 80 // Zero should always have exponent 0.
|
/bionic/libm/src/ |
e_atanhf.c | 25 static const float zero = 0.0; variable 37 return x/zero; 38 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
|
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
Zeroes.java | 33 * Gets the "zero" (or {@code null}) value for the given type. 36 * @return {@code non-null;} its "zero" value 50 throw new UnsupportedOperationException("no zero for type: " +
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
Zeroes.java | 33 * Gets the "zero" (or {@code null}) value for the given type. 36 * @return {@code non-null;} its "zero" value 50 throw new UnsupportedOperationException("no zero for type: " +
|
/external/bouncycastle/src/main/java/org/bouncycastle/util/ |
BigIntegers.java | 12 private static final BigInteger ZERO = BigInteger.valueOf(0); 18 * @return a byte array without a leading zero byte if present in the signed encoding. 63 return createRandomInRange(ZERO, max.subtract(min), random).add(min);
|
/external/dropbear/libtomcrypt/src/pk/katja/ |
katja_export.c | 31 unsigned long zero=0; local 48 LTC_ASN1_SHORT_INTEGER, 1UL, &zero, 61 /* clear zero and return */
|
/external/icu4c/test/testdata/ |
test4.ucm | 27 # fromUnicode result is zero byte from other than U+0000 30 # fallback from non-zero to zero possible with extension table
|
/external/llvm/test/Transforms/InstCombine/ |
alloca.ll | 8 ; Zero byte allocas should be deleted. 21 ; Zero byte allocas should be deleted. 30 ; Zero byte allocas should be deleted.
|
/external/oprofile/libutil/ |
op_string.h | 41 * return non zero if prefix parameters is a prefix of str 64 * return non zero if c string contains only blank space 72 * return non zero if c string is a comment. Comment are lines with optional
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
prune.h | 37 // If non-zero, passes in pre-computed shortest distance from initial state 40 // If non-zero, passes in pre-computed shortest distance to final states 74 idistance = new vector<Weight>(ns, Weight::Zero()); 77 idistance->resize(ns, Weight::Zero()); 81 fdistance = new vector<Weight>(ns, Weight::Zero()); 84 fdistance->resize(ns, Weight::Zero()); 110 fst->SetFinal(state, Weight::Zero()); 174 fdistance->push_back(Weight::Zero()); 182 idistance->push_back(Weight::Zero()); 184 fdistance->push_back(Weight::Zero()); [all...] |
/external/v8/test/mjsunit/regress/ |
regress-996542.js | 28 var zero = 0; variable 33 assertEquals(-Infinity, one / (zero / minus_one)); 35 assertEquals(Infinity, one / (zero / one));
|
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
maximum-age.js | 47 // The default maximumAge is zero, so we expect the updated position from the service. 61 // The maximumAge is non-zero, so we expect the cached position, not the error from the service. 72 // The default maximumAge is zero, so we expect the error from the service.
|
/packages/apps/Gallery2/res/values-w1024dp/ |
strings.xml | 21 <item quantity="zero">%1$d item selected</item> 29 <item quantity="zero">%1$d album selected</item> 37 <item quantity="zero">%1$d group selected</item>
|
/packages/apps/Nfc/etc/ |
sample_nfcee_access.xml | 17 Zero or more signer tags are allowed. 19 Zero or more package tags are allowed per signer. 21 If a signer has zero package tags, then ANY application with the
|
/dalvik/vm/mterp/armv5te/ |
OP_CONST_WIDE_HIGH16.S | 3 FETCH(r1, 1) @ r1<- 0000BBBB (zero-extended)
|