HomeSort by relevance Sort by last modified time
    Searched full:zero (Results 276 - 300 of 11206) sorted by null

<<11121314151617181920>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionIsEmptyTester.java 19 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
34 @CollectionSize.Require(ZERO)
39 @CollectionSize.Require(absent = ZERO)
MapIsEmptyTester.java 19 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
34 @CollectionSize.Require(ZERO)
39 @CollectionSize.Require(absent = ZERO)
ListAddTester.java 21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
42 @CollectionSize.Require(absent = ZERO)
49 @CollectionSize.Require(absent = ZERO)
51 * absent = ZERO isn't required, since unmodList.add() must
63 @CollectionSize.Require(absent = ZERO)
ListRemoveAtIndexTester.java 20 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
40 @CollectionSize.Require(absent = ZERO)
71 @CollectionSize.Require(absent = ZERO)
77 @CollectionSize.Require(absent = {ZERO, ONE})
83 @CollectionSize.Require(absent = ZERO)
  /external/libffi/testsuite/libffi.call/
ffitest.h 20 /* Prefer MAP_ANON(YMOUS) to /dev/zero, since we don't need to keep a
58 dev_zero_fd = open ("/dev/zero", O_RDONLY);
61 perror ("open /dev/zero: %m");
  /external/libffi/testsuite/libffi.special/
ffitestcxx.h 20 /* Prefer MAP_ANON(YMOUS) to /dev/zero, since we don't need to keep a
58 dev_zero_fd = open ("/dev/zero", O_RDONLY);
61 perror ("open /dev/zero: %m");
  /external/llvm/test/CodeGen/PowerPC/
2006-01-20-ShiftPartsCrash.ll 4 %zero = alloca i32 ; <i32*> [#uses=2]
6 store i32 0, i32* %zero
7 %tmp = load i32* %zero ; <i32> [#uses=1]
  /external/oprofile/events/i386/core_2/
events 6 event:0xc0 counters:0,1 um:zero minimum:6000 name:INST_RETIRED_ANY_P : number of instructions retired
15 event:0x05 counters:0,1 um:zero minimum:500 name:MISALIGN_MEM_REF : number of misaligned data memory references
16 event:0x06 counters:0,1 um:zero minimum:500 name:SEGMENT_REG_LOADS : number of segment register loads
21 event:0x10 counters:0,1 um:zero minimum:3000 name:FLOPS : number of FP computational micro-ops executed
22 event:0x11 counters:0,1 um:zero minimum:500 name:FP_ASSIST : number of FP assists
23 event:0x12 counters:0,1 um:zero minimum:1000 name:MUL : number of multiplies
24 event:0x13 counters:0,1 um:zero minimum:500 name:DIV : number of divides
25 event:0x14 counters:0,1 um:zero minimum:1000 name:CYCLES_DIV_BUSY : cycles divider is busy
26 event:0x18 counters:0,1 um:zero minimum:1000 name:IDLE_DURING_DIV : cycles divider is busy and all other execution units are idle.
40 event:0x3a counters:0,1 um:zero minimum:500 name:EIST_TRANS_ALL : Intel(tm) Enhanced SpeedStep(r) Technology transition
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
label-002.js 23 LabelTest( { 0:"zero", 1:"one" }, "zeroone", "onezero" );
26 LabelTest2( { 0:"zero", 1:"one" }, "zero", "one" );
  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 4 * http://creativecommons.org/publicdomain/zero/1.0/
16 * zero due to invocations of the {@link #countDown} method, after which
33 * the count to reach zero before proceeding, it simply prevents any
118 * zero, actions in a thread prior to calling
148 // Decrement count; signal when transition to zero
176 * zero, unless the thread is {@linkplain Thread#interrupt interrupted}.
178 * <p>If the current count is zero then this method returns immediately.
180 * <p>If the current count is greater than zero then the current
184 * <li>The count reaches zero due to invocations of the
207 * zero, unless the thread is {@linkplain Thread#interrupt interrupted}
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECParameterSpec_ImplTest.java 57 BigInteger.ZERO,
59 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
74 BigInteger.ZERO,
76 ECPoint generator = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
122 BigInteger.ZERO,
124 ECPoint generator = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
137 new ECParameterSpec(curve, generator, BigInteger.ZERO, 10);
179 BigInteger.ZERO,
181 ECPoint generator = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
202 BigInteger.ZERO,
    [all...]
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_import.c 30 void *zero; local
37 if ((err = mp_init_multi(&zero, &key->d, &key->N, &key->dQ,
51 LTC_ASN1_INTEGER, 1UL, zero,
68 mp_clear(zero);
71 mp_clear_multi(zero, key->d, key->N, key->dQ, key->dP,
  /external/replicaisland/src/com/replica/replicaisland/
SimpleCollisionComponent.java 39 mPreviousPosition.zero();
40 mCurrentPosition.zero();
41 mMovementDirection.zero();
42 mHitPoint.zero();
43 mHitNormal.zero();
  /external/v8/test/mjsunit/
array-functions-prototype.js 35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' }
40 Array.prototype[0] = 'zero';
60 var array = ['zero', , 'two'];
61 // Shift away the zero.
62 assertEquals('zero', array.shift());
63 assertEquals('zero', Array.prototype.shift.call(nonArray));
91 var array = ['zero', , 'two'];
92 // Unshift a new 'zero'.
93 assertEquals(4, array.unshift('zero'));
94 assertEquals(4, Array.prototype.unshift.call(nonArray, 'zero'));
    [all...]
  /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...]
  /external/openfst/src/include/fst/
expectation-weight.h 21 // One: <One, Zero>
22 // Zero: <Zero, Zero>
64 ExpectationWeight() : PairWeight<X1, X2>(Zero()) { }
75 static const ExpectationWeight<X1, X2> &Zero() {
76 static const ExpectationWeight<X1, X2> zero(X1::Zero(), X2::Zero());
77 return zero;
    [all...]
  /external/openfst/src/include/fst/script/
weight-class.h 79 WeightClass() : element_type_(ZERO), impl_(0) { }
103 case ZERO:
104 return "ZERO";
119 static const WeightClass &Zero() {
120 static WeightClass w(ZERO);
140 enum ElementType { ZERO, ONE, OTHER };
152 // We need to store zero and one as statics, because the weight type
155 static const W zero = W::Zero(); local
158 if (element_type_ == ZERO) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DivZeroChecker.cpp 1 //== DivZeroChecker.cpp - Division by zero checker --------------*- C++ -*--==//
40 BT.reset(new BuiltinBug("Division by zero"));
68 // Check for divide by zero.
75 reportBug("Division by zero", stateZero, C);
81 reportBug("Division by a tainted value, possibly zero", stateZero, C);
85 // If we get here, then the denom should not be zero. We abandon the implicit
86 // zero denom case for now.
  /external/compiler-rt/lib/asan/lit_tests/Linux/
zero-base-shadow.cc 1 // RUN: %clangxx_asan -m64 -O0 -fsanitize-address-zero-base-shadow -fPIE -pie %s -o %t && %t 2>&1 | %symbolize > %t.out
3 // RUN: %clangxx_asan -m64 -O1 -fsanitize-address-zero-base-shadow -fPIE -pie %s -o %t && %t 2>&1 | %symbolize > %t.out
5 // RUN: %clangxx_asan -m64 -O2 -fsanitize-address-zero-base-shadow -fPIE -pie %s -o %t && %t 2>&1 | %symbolize > %t.out
7 // RUN: %clangxx_asan -m32 -O0 -fsanitize-address-zero-base-shadow -fPIE -pie %s -o %t && %t 2>&1 | %symbolize > %t.out
9 // RUN: %clangxx_asan -m32 -O1 -fsanitize-address-zero-base-shadow -fPIE -pie %s -o %t && %t 2>&1 | %symbolize > %t.out
11 // RUN: %clangxx_asan -m32 -O2 -fsanitize-address-zero-base-shadow -fPIE -pie %s -o %t && %t 2>&1 | %symbolize > %t.out
20 // CHECK: {{ #0 0x.* in _?main .*zero-base-shadow.cc:}}[[@LINE-2]]
  /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";
  /device/lge/mako/
snd_soc_msm_2x_Fusion3 1744 'RX1 MIX1 INP1':0:ZERO
1745 'RX1 MIX1 INP2':0:ZERO
1748 'SLIM TX3 MUX':0:ZERO
1771 'RX1 MIX1 INP1':0:ZERO
1772 'RX1 MIX1 INP2':0:ZERO
1775 'SLIM TX3 MUX':0:ZERO
1797 'RX1 MIX1 INP1':0:ZERO
1798 'RX1 MIX1 INP2':0:ZERO
1801 'SLIM TX3 MUX':0:ZERO
1823 'RX1 MIX1 INP1':0:ZERO
    [all...]
  /frameworks/base/core/java/android/database/
CursorWindow.java 176 * and number of columns in the cursor are all reset to zero.
192 * The start position is the zero-based index of the first row that this window contains
196 * @return The zero-based start position.
205 * The start position is the zero-based index of the first row that this window contains
209 * @param pos The new zero-based start position.
279 * @param row The zero-based row index.
280 * @param column The zero-based column index.
293 * @param row The zero-based row index.
294 * @param column The zero-based column index.
309 * @param row The zero-based row index
    [all...]
  /external/ceres-solver/internal/ceres/
dense_sparse_matrix_test.cc 56 Vector x = Vector::Zero(num_cols);
59 Vector y_a = Vector::Zero(num_rows);
60 Vector y_b = Vector::Zero(num_rows);
94 // Try with a not entirely zero vector to verify column interactions, which
100 Vector b1 = Vector::Zero(num_rows);
101 Vector b2 = Vector::Zero(num_rows);
111 Vector a = Vector::Zero(num_rows);
114 Vector b1 = Vector::Zero(num_cols);
115 Vector b2 = Vector::Zero(num_cols);
123 // Try with a not entirely zero vector to verify column interactions, whic
    [all...]
  /external/eigen/blas/
dspr2.f 39 * N must be at least zero.
54 * X. INCX must not be zero.
65 * Y. INCY must not be zero.
99 DOUBLE PRECISION ZERO
100 PARAMETER (ZERO=0.0D+0)
133 IF ((N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN
163 IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN
176 IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THE
    [all...]
sspr2.f 39 * N must be at least zero.
54 * X. INCX must not be zero.
65 * Y. INCY must not be zero.
99 REAL ZERO
100 PARAMETER (ZERO=0.0E+0)
133 IF ((N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN
163 IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN
176 IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THE
    [all...]

Completed in 635 milliseconds

<<11121314151617181920>>