HomeSort by relevance Sort by last modified time
    Searched full:sign (Results 176 - 200 of 2033) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/
jsref.js 313 var sign = ( t < 0 ) ? -1 : 1;
314 var year = ( sign < 0 ) ? 1969 : 1970;
317 timeToTimeZero -= sign * TimeInYear(year)
320 if ( sign < 0 ) {
321 if ( sign * timeToTimeZero <= 0 ) {
324 year += sign;
327 if ( sign * timeToTimeZero < 0 ) {
330 year += sign;
561 var sign = ( year < 1970 ) ? -1 : 1;
569 for ( y = 1969; y >= year; y += sign ) {
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
jsref.js 273 var sign = ( t < 0 ) ? -1 : 1;
274 var year = ( sign < 0 ) ? 1969 : 1970;
277 timeToTimeZero -= sign * TimeInYear(year)
280 if ( sign < 0 ) {
281 if ( sign * timeToTimeZero <= 0 ) {
284 year += sign;
287 if ( sign * timeToTimeZero < 0 ) {
290 year += sign;
522 var sign = ( year < 1970 ) ? -1 : 1;
530 for ( y = 1969; y >= year; y += sign ) {
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Date/
shell.js 319 var sign = ( t < 0 ) ? -1 : 1;
320 var year = ( sign < 0 ) ? 1969 : 1970;
325 timeToTimeZero -= sign * TimeInYear(year)
328 if ( sign < 0 )
330 if ( sign * timeToTimeZero <= 0 ) {break;}
331 else {year += sign;}
335 if ( sign * timeToTimeZero < 0 ) {break;}
336 else {year += sign;}
552 var sign = ( year < 1970 ) ? -1 : 1;
561 for ( y = 1969; y >= year; y += sign )
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
c4t64fx.c 76 Word16 sign[], /* (i) sign vector */
86 Word16 sign[], /* (i) sign vector */
96 Word16 sign[], /* (i) sign vector */
141 Word16 dn2[L_SUBFR], sign[L_SUBFR], vec[L_SUBFR]; local
238 * Find sign for each pulse position. *
280 /* set sign according to dn2[] = k_cn*cn[] + k_dn*dn[] */
287 sign[i] = 32767; /* sign = +1 (Q12) */
    [all...]
  /external/wpa_supplicant/
libtommath.c 93 int used, alloc, sign; member in struct:__anon8302
338 * and sign to positive */
341 a->sign = MP_ZPOS;
365 a->sign = MP_ZPOS;
375 /* get sign of both inputs */
376 sa = a->sign;
377 sb = b->sign;
382 /* add their magnitudes, copy the sign */
383 c->sign = sa;
389 /* the sign of the one with the greater magnitude. *
    [all...]
  /external/openssl/crypto/rand/
randtest.c 71 int i,j,k,s,sign,nsign,err=0; local
91 sign=0;
103 if (s == sign)
110 runs[sign][nsign-1]++;
112 runs[sign][5]++;
114 sign=s;
123 if (nsign != 0) runs[sign][nsign-1]++;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_decode.cpp 872 pTcoef->sign = (code >> (12 - tab->len)) & 1;
886 if (!pTcoef->sign)
918 /* sign bit */
919 pTcoef->sign = (code >> (12 - tab->len)) & 1;
970 /* sign bit */
971 pTcoef->sign = (code >> (12 - tab->len)) & 1;
1008 pTcoef->sign = 1;
1013 pTcoef->sign = 0;
1054 pTcoef->sign = (code >> (12 - tab->len)) & 1;
1067 if (!pTcoef->sign)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.5.2.js 34 The sign of the result is positive if both operands have the same sign, negative if the operands have different
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
47 large to represent, we say the operation overflows; the result is then an infinity of appropriate sign. If the
49 sign. The ECMAScript language requires support of gradual underflow as defined by IEEE 754.
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
residual.cpp 158 int escape, numPrefix, sufmask, suffix, shift, sign, value, absvalue, vlcnum, level_two_or_higher; local
262 if (TrailingOnes) /* keep reading the sign of those trailing ones */
307 sign = 0;
311 sign = 1;
319 status = BitstreamWriteBits(stream, value * 2 + sign - 1, 1);
323 status = BitstreamWriteBits(stream, 14 + 1 + 4, (1 << 4) | ((value - 8) << 1) | sign);
327 status = BitstreamWriteBits(stream, 14 + 2 + 12, (1 << 12) | ((value - 16) << 1) | sign) ;
339 status = BitstreamWriteBits(stream, numPrefix + vlcnum + 1, (1 << (shift + 1)) | (suffix << 1) | sign);
343 status = BitstreamWriteBits(stream, 28, (1 << 12) | ((value - escape) << 1) | sign);
  /external/speex/libspeex/
vq.c 109 /*Finds the indices of the n-best entries in a codebook with sign*/
112 int i,j,k, sign, used; local
121 sign=0;
125 sign=1;
142 if (sign)
  /external/srec/srec/cfront/
himul32.h 129 int sign = 0;
134 sign = 1;
139 sign = 1 - sign;
177 if (sign)
  /bionic/libc/stdlib/
div.c 52 * r.rem will have the same sign as denom and the opposite
53 * sign of num; if both are negative and r.quot has been
55 * have the opposite sign of num). These are considered
  /bionic/libm/src/
s_ceill.c 66 u.e = u.bits.sign ? 0.0 : 1.0;
71 if (!u.bits.sign) {
88 if (!u.bits.sign) {
s_floorl.c 66 u.e = u.bits.sign ? -1.0 : 0.0;
71 if (u.bits.sign) {
88 if (u.bits.sign) {
e_jnf.c 51 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
167 int32_t sign; local
176 sign = 1;
179 sign = 1 - ((n&1)<<1);
182 if(n==1) return(sign*__ieee754_y1f(x));
195 if(sign>0) return b; else return -b;
  /external/bluetooth/glib/docs/reference/glib/tmpl/
numerical.sgml 16 sign, mantissa and exponent of IEEE floats and doubles. These
47 sign, mantissa and exponent of IEEE floats and doubles. These
58 sign, mantissa and exponent of IEEE floats and doubles. These
  /external/chromium/third_party/icu/source/tools/makeconv/
makeconv.1.in 53 are handled as follows. If a comment (starting with a `#' sign) that
55 the text starting with the `#' sign, and ending before the `|' sign,
  /external/icu4c/tools/makeconv/
makeconv.1.in 53 are handled as follows. If a comment (starting with a `#' sign) that
55 the text starting with the `#' sign, and ending before the `|' sign,
  /packages/inputmethods/PinyinIME/jni/share/
utf16char.cpp 67 int sign = 1; local
71 sign = -1;
81 return value*sign;
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
HexStringParser.java 63 private long sign; field in class:HexStringParser
111 sign <<= (MANTISSA_WIDTH + EXPONENT_WIDTH);
113 return sign | exponent | mantissa;
117 * Analyzes the hex string and extracts the sign and digit segments.
134 * Parses the sign field.
137 this.sign = signStr.equals("-") ? 1 : 0;
  /bionic/libm/ia64/
_fpmath.h 39 unsigned int sign :1; member in struct:IEEEl2bits::__anon551
43 unsigned int sign :1;
  /bionic/libm/man/
copysign.3 42 .Nd copy sign
62 with its sign changed to
  /dalvik/vm/mterp/x86-atom/
binopDLit8.S 35 FETCH_CCs 1, %ecx # %ecx<- +CC, sign-extended literal
46 cdq # sign-extend %eax to %edx
  /external/chromium/base/
hmac_nss.cc 93 bool HMAC::Sign(const std::string& data,
97 // Init has not been called before Sign.
  /external/dropbear/libtommath/
bn_mp_div_d.c 79 q.sign = a->sign;

Completed in 358 milliseconds

1 2 3 4 5 6 78 91011>>