/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
forin-001.js | 24 ForIn_1( { length:4, company:"netscape", year:2000, 0:"zero" } ); 25 ForIn_2( { length:4, company:"netscape", year:2000, 0:"zero" } ); 26 ForIn_3( { length:4, company:"netscape", year:2000, 0:"zero" } ); 28 // ForIn_6({ length:4, company:"netscape", year:2000, 0:"zero" }); 29 // ForIn_7({ length:4, company:"netscape", year:2000, 0:"zero" }); 30 ForIn_8({ length:4, company:"netscape", year:2000, 0:"zero" });
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
omxVCM4P10_SubAndTransformQDQResidual.c | 42 * pNumCoeff -Number of non-zero coefficients after quantization. If this 44 * nThreshSAD - Zero-block early detection threshold. If this parameter is 115 * Zero-Block Early detection using nThreshSAD param 124 /* Do Zero-Block Early detection if enabled */ 130 /* Set block to zero */ 193 /* Output number of non-zero Coeffs */
|
/frameworks/base/core/java/android/hardware/usb/ |
UsbConstants.java | 63 * Control endpoint type (endpoint zero) 85 * Bitmask used for encoding the request type for a control request on endpoint zero. 89 * Used to specify that an endpoint zero control request is a standard request. 93 * Used to specify that an endpoint zero control request is a class specific request. 97 * Used to specify that an endpoint zero control request is a vendor specific request. 101 * Reserved endpoint zero control request type (currently unused).
|
/packages/apps/Email/src/org/apache/commons/io/comparator/ |
SizeFileComparator.java | 46 * <strong>N.B.</strong> Directories are treated as <b>zero size</b> unless
54 /** Size comparator instance - directories are treated as zero size */
57 /** Reverse size comparator instance - directories are treated as zero size */
76 * Construct a file size comparator instance (directories treated as zero size).
91 * as size zero (see {@link FileUtils#sizeOfDirectory(File)}).
103 * is less than the second, zero if the lengths are the
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_lgamma_r.c | 80 * lgamma(0) = lgamma(neg.integer) = inf and raise divide-by-zero 157 static const double zero= 0.00000000000000000000e+00; variable 167 if(ix<0x3fd00000) return __kernel_sin(pi*x,zero,0); 181 y = zero; n = 0; /* y must be even */ 191 case 0: y = __kernel_sin(pi*y,zero,0); break; 193 case 2: y = __kernel_cos(pi*(0.5-y),zero); break; 195 case 4: y = __kernel_sin(pi*(one-y),zero,0); break; 197 case 6: y = -__kernel_cos(pi*(y-1.5),zero); break; 198 default: y = __kernel_sin(pi*(y-2.0),zero,0); break; 217 if((ix|lx)==0) return one/zero; [all...] |
e_jn.c | 23 * y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal; 51 static const double zero = 0.00000000000000000000e+00; variable 77 b = zero; 116 b = zero; 166 for(t=zero, i = 2*(n+k); i>=m; i -= 2) t = one/(i/x-t); 175 * likely underflow to zero 225 if((ix|lx)==0) return -one/zero; 226 if(hx<0) return zero/zero; 234 if(ix==0x7ff00000) return zero; [all...] |
/external/fdlibm/ |
e_lgamma_r.c | 156 static double zero= 0.00000000000000000000e+00; variable 170 if(ix<0x3fd00000) return __kernel_sin(pi*x,zero,0); 184 y = zero; n = 0; /* y must be even */ 193 case 0: y = __kernel_sin(pi*y,zero,0); break; 195 case 2: y = __kernel_cos(pi*(0.5-y),zero); break; 197 case 4: y = __kernel_sin(pi*(one-y),zero,0); break; 199 case 6: y = -__kernel_cos(pi*(y-1.5),zero); break; 200 default: y = __kernel_sin(pi*(y-2.0),zero,0); break; 223 if((ix|lx)==0) return one/zero; 232 return one/zero; [all...] |
e_jn.c | 20 * y0(0)=ieee_y1(0)=ieee_yn(n,0) = -inf with division by zero signal; 51 static double zero = 0.00000000000000000000e+00; variable 82 b = zero; 121 b = zero; 171 for(t=zero, i = 2*(n+k); i>=m; i -= 2) t = one/(i/x-t); 180 * likely underflow to zero 230 if((ix|lx)==0) return -one/zero; 231 if(hx<0) return zero/zero; 239 if(ix==0x7ff00000) return zero; [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListSubListTester.java | 20 import static com.google.common.collect.testing.features.CollectionSize.ZERO; 89 @CollectionSize.Require(absent = ZERO) 106 @CollectionSize.Require(absent = ZERO) 116 @CollectionSize.Require(absent = ZERO) 126 @CollectionSize.Require(absent = {ZERO, ONE}) 136 @CollectionSize.Require(absent = {ZERO, ONE}) 144 @CollectionSize.Require(absent = {ZERO, ONE}) 154 @CollectionSize.Require(absent = {ZERO, ONE}) 169 @CollectionSize.Require(absent = {ZERO, ONE}) 177 @CollectionSize.Require(absent = {ZERO}) [all...] |
/external/openfst/src/include/fst/ |
shortest-distance.h | 53 // weights in the FST are between One() and Zero() 150 distance_->push_back(Weight::Zero()); 151 rdistance_.push_back(Weight::Zero()); 169 distance_->push_back(Weight::Zero()); 170 rdistance_.push_back(Weight::Zero()); 173 if (first_path_ && (fst_.Final(s) != Weight::Zero())) 177 rdistance_[s] = Weight::Zero(); 185 distance_->push_back(Weight::Zero()); 186 rdistance_.push_back(Weight::Zero()); 193 (*distance_)[arc.nextstate] = Weight::Zero(); [all...] |
signed-log-weight.h | 57 static const SignedLogWeightTpl<T> &Zero() { 58 static const SignedLogWeightTpl<T> zero(X1(1.0), X2::Zero()); 59 return zero; 96 if (Value2() == X2::Zero() || Value1().Value() > 0.0) 124 return SignedLogWeightTpl<T>::Zero(); 197 return w1.Value2() == LogWeightTpl<T>::Zero() 198 && w2.Value2() == LogWeightTpl<T>::Zero(); 210 return (w1.Value2() == LogWeightTpl<T>::Zero()) && 211 (w2.Value2() == LogWeightTpl<T>::Zero()); [all...] |
prune.h | 46 // If non-zero, passes in pre-computed shortest distance to final states. 75 Weight wx = Times(x < idistance_.size() ? idistance_[x] : Weight::Zero(), 76 x < fdistance_.size() ? fdistance_[x] : Weight::Zero()); 77 Weight wy = Times(y < idistance_.size() ? idistance_[y] : Weight::Zero(), 78 y < fdistance_.size() ? fdistance_[y] : Weight::Zero()); 115 vector<Weight> idistance(ns, Weight::Zero()); 125 ((*fdistance)[fst->Start()] == Weight::Zero())) { 152 fst->SetFinal(s, Weight::Zero()); 161 : Weight::Zero()); 247 ((*fdistance)[ifst.Start()] == Weight::Zero())) { [all...] |
/external/webp/src/dsp/ |
enc_sse2.c | 275 const __m128i zero = _mm_setzero_si128(); local 292 ref0 = _mm_unpacklo_epi8(ref0, zero); 293 ref1 = _mm_unpacklo_epi8(ref1, zero); 294 ref2 = _mm_unpacklo_epi8(ref2, zero); 295 ref3 = _mm_unpacklo_epi8(ref3, zero); 325 const __m128i zero = _mm_setzero_si128(); local 351 const __m128i src_0 = _mm_unpacklo_epi8(src0, zero); 352 const __m128i src_1 = _mm_unpacklo_epi8(src1, zero); 353 const __m128i src_2 = _mm_unpacklo_epi8(src2, zero); 354 const __m128i src_3 = _mm_unpacklo_epi8(src3, zero); 461 const __m128i zero = _mm_setzero_si128(); local 550 const __m128i zero = _mm_setzero_si128(); local 610 const __m128i zero = _mm_setzero_si128(); local 780 const __m128i zero = _mm_setzero_si128(); local [all...] |
/external/bison/lib/ |
ebitset.c | 33 element pointers. An alternative is to point to a special zero 38 case is fast. A zero bitset is indicated when cdata is 0. This is 39 conservative since cdata may be non zero and the bitset may still 40 be zero. 82 static ebitset_elt ebitset_zero_elts[1]; /* Elements of all zero bits. */ 97 /* Disable bitset cache and mark BSET as being zero. */ 103 /* Disable bitset cache and mark BSET as being possibly non-zero. */ 107 /* A conservative estimate of whether the bitset is zero. 108 This is non-zero only if we know for sure that the bitset is zero. * [all...] |
/external/llvm/unittests/ADT/ |
APIntTest.cpp | 94 APInt zero(128, 0, true); 95 EXPECT_EQ(128u, zero.countLeadingZeros()); 96 EXPECT_EQ(0u, zero.countLeadingOnes()); 97 EXPECT_EQ(0u, zero.getActiveBits()); 98 EXPECT_EQ(128u, zero.countTrailingZeros()); 99 EXPECT_EQ(0u, zero.countTrailingOnes()); 100 EXPECT_EQ(0u, zero.countPopulation()); 101 EXPECT_EQ(0u, zero.getSExtValue()); 102 EXPECT_EQ(0u, zero.getZExtValue()); 118 const APInt zero(1, 0) [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineSimplifyDemanded.cpp | 88 /// to be zero in the expression. These are provided to potentially allow the 159 // If either the LHS or the RHS are Zero, the result is zero. 173 // If all of the demanded bits in the inputs are known zeros, return zero. 185 // If all of the demanded bits are known zero on one side, return the 210 // If all of the demanded bits are known zero on one side, return the 235 // If either the LHS or the RHS are Zero, the result is zero. 241 assert(!(RHSKnownZero & RHSKnownOne) && "Bits known to be one AND zero?"); 242 assert(!(LHSKnownZero & LHSKnownOne) && "Bits known to be one AND zero?") [all...] |
/dalvik/tests/003-omnibus-opcodes/src/ |
FloatMath.java | 185 static int[] convI(long l, float f, double d, float zero) { 190 results[3] = (int) (1.0f / zero); // +inf 191 results[4] = (int) (-1.0f / zero); // -inf 192 results[5] = (int) ((1.0f / zero) / (1.0f / zero)); // NaN 205 static long[] convL(int i, float f, double d, double zero) { 210 results[3] = (long) (1.0 / zero); // +inf 211 results[4] = (long) (-1.0 / zero); // -inf 212 results[5] = (long) ((1.0 / zero) / (1.0 / zero)); // Na [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
FluidSimHeightMap.java | 85 * if size of the terrain is not greater that zero, or number of
86 * iterations is not greater that zero, or the minimum initial height
92 "Either size of the terrain is not greater that zero, "
93 + "or number of iterations is not greater that zero, "
120 * if size of the terrain is not greater that zero, or number of
121 * iterations is not greater that zero
126 "Either size of the terrain is not greater that zero, "
127 + "or number of iterations is not greater that zero");
236 * if iterations if not greater than zero
241 "Number of iterations is not greater than zero");
[all...] |
/external/libvpx/libvpx/nestegg/include/nestegg/ |
nestegg.h | 177 @param track Zero based track number. 185 @param track Zero based track number. 193 @param track Zero based track number. 203 @param track Zero based track number. 213 @param track Zero based track number. 214 @param item Zero based chunk item number. 225 @param track Zero based track number. 234 @param track Zero based track number. 258 @param track Storage for the queried zero based track index. 279 @param item Zero based chunk item number [all...] |
/external/libxml2/ |
xmlmodule.c | 206 * returns a handle on success, and zero on error. 219 * returns 0 on success, and non-zero on error. 252 * returns a handle on success, and zero on error. 263 * returns 0 on success, and non-zero on error. 297 * returns a handle on success, and zero on error. 308 * returns 0 on success, and non-zero on error. 342 * returns a handle on success, and zero on error. 354 * returns 0 on success, and non-zero on error. 395 * returns a handle on success, and zero on error. 416 * returns 0 on success, and non-zero on error [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
InputPointersTests.java | 137 assertEquals("size after append zero", dstLen, dst.getPointerSize()); 138 assertArrayEquals("xCoordinates after append zero", 140 assertArrayEquals("yCoordinates after append zero", 142 assertArrayEquals("pointerIds after append zero", 144 assertArrayEquals("times after append zero", 192 assertEquals("size after append zero", dstLen, dst.getPointerSize()); 193 assertArrayEquals("xCoordinates after append zero", 195 assertArrayEquals("yCoordinates after append zero", 197 assertArrayEquals("pointerIds after append zero", 199 assertArrayEquals("times after append zero", [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
post_proc_semaphore.cpp | 52 zero. This case can induce horizontal and vertical blocking artifacts, 58 (q_block[n], n = 0,..., B_SIZE-1) are non-zero, vertical blocking artifacts 62 (q_block[n*B_SIZE], n = 0, ..., B_SIZE-1) are non-zero, horizontal blocking 65 3. If any non-zero elements exist in positions other than q_block[0], 137 /* Initial assumption is that only q_block[0] element is non-zero, */ 146 /* are non-zero. Since initial assumption is that all elements, except */ 147 /* q_block[0], is zero, we need to check the remaining elements in the */ 148 /* top row to determine if all or some are non-zero. */ 151 /* At this point, q_block[0] and q_block[1] are non-zero, while */ 152 /* q_block[n], n = 2,..., B_SIZE-1, are zero. Therefore, we * [all...] |
/external/qemu-pc-bios/bochs/bios/ |
acpi-dsdt.dsl | 475 Store (Zero, TMP) 522 Store (Zero, TMP) 569 Store (Zero, TMP) 616 Store (Zero, TMP) 638 Zero, /* reserved */ 639 Zero /* reserved */ 643 Zero, /* PM1a_CNT.SLP_TYP */ 644 Zero, /* PM1b_CNT.SLP_TYP */ 645 Zero, /* reserved */ 646 Zero /* reserved * [all...] |
/development/host/windows/usb/api/ |
adb_endpoint_object.h | 40 @param[in] endpoint_index Zero-based endpoint index in the interface's
70 complete. Zero value in this parameter means that there is no
89 complete. Zero value in this parameter means that there is no
122 complete. Zero value in this parameter means that there is no
142 complete. Zero value in this parameter means that there is no
159 complete. Zero value in this parameter means that there is no
175 complete. Zero value in this parameter means that there is no
|
/external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/ |
BigIntegerXorTest.java | 32 * Xor for zero and a positive number 45 * Xor for zero and a negative number 58 * Xor for a positive number and zero 71 * Xor for a negative number and zero 84 * Xor for zero and zero 97 * Xor for zero and one
|