HomeSort by relevance Sort by last modified time
    Searched full:zero (Results 501 - 525 of 8531) sorted by null

<<21222324252627282930>>

  /external/apache-http/src/org/apache/http/params/
CoreConnectionPNames.java 46 * timeout for waiting for data. A timeout value of zero is interpreted as an infinite
91 * Determines the timeout until a connection is etablished. A value of zero
92 * means the timeout is not used. The default value is zero.
112 * line exceeding this limit will cause an IOException. A negative or zero value
123 * will cause an IOException. A negative or zero value will effectively disable
  /external/apache-xml/src/main/java/org/apache/xml/utils/
AttList.java 91 * @param index The attribute index (zero-based).
107 * @param index The attribute index (zero-based).
121 * @param i The attribute index (zero-based).
134 * @param i The attribute index (zero-based)
147 * @param i The attribute index (zero-based)
  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_import.c 30 void *zero; local
98 if ((err = mp_init(&zero)) != CRYPT_OK) {
103 LTC_ASN1_INTEGER, 1UL, zero,
113 mp_clear(zero);
116 mp_clear(zero);
  /external/e2fsprogs/include/nonunix/
getopt.h 43 On entry to `getopt', zero means this is the first call; initialize.
53 /* Callers store zero here to inhibit the error message `getopt' prints
65 zero.
78 option's `flag' field to zero and its `val' field to a nonzero
80 one). For long options that have a zero `flag' field, `getopt'
  /external/fdlibm/
e_fmod.c 23 static const double one = 1.0, Zero[] = {0.0, -0.0,};
25 static double one = 1.0, Zero[] = {0.0, -0.0,};
53 return Zero[(unsigned)sx>>31]; /* |x|=|y| return x*0*/
107 return Zero[(unsigned)sx>>31];
116 return Zero[(unsigned)sx>>31];
e_log10.c 59 static double zero = 0.0; variable
78 return -two54/zero; /* ieee_log(+-0)=-inf */
79 if (hx<0) return (x-x)/zero; /* ieee_log(-#) = NaN */
  /external/grub/lib/
getopt.h 41 On entry to `getopt', zero means this is the first call; initialize.
51 /* Callers store zero here to inhibit the error message `getopt' prints
63 zero.
76 option's `flag' field to zero and its `val' field to a nonzero
78 one). For long options that have a zero `flag' field, `getopt'
  /external/kernel-headers/original/asm-x86/
local_32.h 54 * true if the result is zero, or false for all
92 * and returns true if the result is zero, or false for all
113 * result is greater than or equal to zero.
179 * Returns non-zero if @l was not @u, and zero otherwise.
  /external/libpng/
pnggccrd.c 54 "xorl %%eax, %%eax \n\t" // set eax to zero
57 "cmpl $1, %%eax \n\t" // make sure eax return non-zero value
58 "jl 0f \n\t" // if eax is zero, MMX is not supported
60 "xorl %%eax, %%eax \n\t" // set eax to zero and...
66 "jz 0f \n\t" // non-zero = yes, MMX IS supported
  /external/llvm/test/CodeGen/Mips/
alloca.ll 6 ; CHECK: addu $sp, $zero, $[[T0]]
9 ; CHECK: addu $sp, $zero, $[[T2]]
12 ; CHECK: addu $25, $zero, $[[T4]]
13 ; CHECK: addu $4, $zero, $[[T1]]
40 ; CHECK: addu $sp, $zero, $[[T0]]
  /external/nist-sip/java/gov/nist/javax/sip/header/
RetryAfter.java 111 * The retry after value MUST be greater than zero and
115 * @throws InvalidArgumentException if supplied value is less than zero.
165 * MUST be greater than zero and MUST be less than 2**31.
168 * @throws InvalidArgumentException if supplied value is less than zero.
182 * @return the duration value of the RetryAfterHeader, return zero if not
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
vertexconversion.h 136 static T zero() { return static_cast<T>(0); } function in struct:gl::SimpleDefaultValues
144 static T zero() { return static_cast<T>(0); } function in struct:gl::NormalizedDefaultValues
168 copyComponent(out, ein, 0, static_cast<OutputType>(DefaultValueRule::zero()));
169 copyComponent(out, ein, 1, static_cast<OutputType>(DefaultValueRule::zero()));
170 copyComponent(out, ein, 2, static_cast<OutputType>(DefaultValueRule::zero()));
  /hardware/ti/omap4xxx/security/smc_pa_ctrl/
smc_pa_ctrl_linux.c 64 /* zero-terminating character (may be zero) */
65 uint8_t* pConfBuffer; /* Configuration buffer, zero-terminated */
91 /* Allocate enough room for the zero-terminated string */
129 /* Set the zero-terminated string */
  /ndk/sources/host-tools/make-3.81/
getopt.h 41 On entry to `getopt', zero means this is the first call; initialize.
51 /* Callers store zero here to inhibit the error message `getopt' prints
63 zero.
76 option's `flag' field to zero and its `val' field to a nonzero
78 one). For long options that have a zero `flag' field, `getopt'
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
getopt.h 65 On entry to `getopt', zero means this is the first call; initialize.
75 /* Callers store zero here to inhibit the error message `getopt' prints
88 zero.
101 option's `flag' field to zero and its `val' field to a nonzero
103 one). For long options that have a zero `flag' field, `getopt'
  /bionic/libm/src/
e_log10.c 60 static const double zero = 0.0; variable
74 return -two54/zero; /* log(+-0)=-inf */
75 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
  /dalvik/tests/003-omnibus-opcodes/src/
Compare.java 13 static void testIntCompare(int minus, int plus, int plus2, int zero) {
46 if (zero != 0)
49 if (zero == 0) {
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
DSASigner.java 98 BigInteger zero = BigInteger.valueOf(0); local
100 if (zero.compareTo(r) >= 0 || params.getQ().compareTo(r) <= 0)
105 if (zero.compareTo(s) >= 0 || params.getQ().compareTo(s) <= 0)
ECDSASigner.java 79 while (k.equals(ZERO) || k.compareTo(n) >= 0);
88 while (r.equals(ZERO));
94 while (s.equals(ZERO));
  /external/chromium/chrome/browser/ui/cocoa/extensions/
extension_view_mac.mm 67 // On first display of some extensions, this function is called with zero
68 // width after the correct size has been set. Bail if zero is seen, assuming
69 // that an extension's view doesn't want any dimensions to ever be zero.
  /external/clang/test/Sema/
flexible-array-init.c 15 // expected-warning{{zero size arrays are an extension}}
28 // expected-warning{{zero size arrays are an extension}}
34 // expected-warning{{zero size arrays are an extension}} \
  /external/dropbear/libtommath/
bn_mp_montgomery_reduce.c 69 /* set the carry to zero */
84 /* At this point the ix'th digit of x should be zero */
97 * significant digits of x are all zero
  /external/icu4c/common/
umutex.h 137 * If the result of the operation is zero, the return zero.
138 * If the result of the operation is not zero, the sign of returned value
  /external/iptables/libipq/
ipq_read.3 54 system call. A value of zero provides normal, backwards-compatible blocking behaviour
67 On success, a non-zero positive value is returned when no timeout
70 On success with a timeout value specified, zero is returned if no data
  /external/kernel-headers/original/linux/
taskstats.h 52 * xxx_delay_total wraps around to zero on overflow
78 * and wraps around to zero silently on overflow
86 * and wraps around to zero silently on overflow

Completed in 2229 milliseconds

<<21222324252627282930>>