HomeSort by relevance Sort by last modified time
    Searched defs:sign (Results 226 - 250 of 538) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/aac/libAACdec/src/
aacdec_hcrs.cpp 503 No sign bits are decoded, because the table of the quantized spectral values
504 has got a valid sign at the quantized spectral lines.
569 /* if end of branch reached write out lines and count bits needed for sign, otherwise store node in codeword sideinfo */
577 pResultBase[iQSC++] = (FIXP_DBL)*pQuantVal++; /* write out 2 or 4 lines into spectrum; no Sign bits available in this state */
611 spectral values, which are different form zero. For those values sign bits are
614 If sign bit counter cntSign is different from zero, switch to next state to
615 decode sign Bits there.
616 If sign bit counter cntSign is zero, no sign bits are needed and codeword is
621 [on just one signle sign] is wrong, the next state will correct it
1287 INT sign; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 395 """Set the signature parameter to the result of sign."""
404 self['oauth_signature'] = signature_method.sign(self, consumer, token)
660 built = signature_method.sign(request, consumer, token)
676 The OAuth protocol lets consumers and service providers pick a way to sign
679 provide a new way to sign requests.
692 def sign(self, request, consumer, token): member in class:SignatureMethod
697 message to sign. Otherwise it may be less useful for debugging.
705 built = self.sign(request, consumer, token)
728 def sign(self, request, consumer, token): member in class:SignatureMethod_HMAC_SHA1
756 def sign(self, request, consumer, token) member in class:SignatureMethod_PLAINTEXT
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryTokenizer.cpp 260 int sign = 1; local
264 sign = -1;
267 return sign;
291 static unsigned long long getExponent(MediaQueryInputStream& input, unsigned& offset, int& sign)
301 sign = -1;
324 int sign = getSign(m_input, offset); local
329 value = (double)sign * ((double)integerPart + fractionPart) * exponent;
  /external/chromium_org/third_party/angle/src/common/
mathutil.h 155 unsigned int sign = (fp32i & 0x80000000) >> 16; local
160 return sign | 0x7FFF;
176 return sign | (abs + 0x00000FFF + ((abs >> 13) & 1)) >> 13;
180 return sign | (abs + 0xC8000000 + 0x00000FFF + ((abs >> 13) & 1)) >> 13;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_tokenize.c 116 int sign = 1; local
120 sign = 0;
123 const int a = sign ? -i : i;
124 int eb = sign;
151 cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 122 /* Sign bit */
124 LLVMValueRef sign = LLVMBuildShl(builder, justsign, i32_16, ""); local
127 LLVMValueRef sign_inf = LLVMBuildOr(builder, sign, infnanexp, "");
164 src_type.sign = FALSE;
385 src_type.sign == 1 &&
392 dst_type.sign == 0 &&
411 int16_type.sign = 1;
415 int32_type.sign = 1;
440 src_type.sign == 1 &&
447 dst_type.sign == 0 &
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
nvvertparse.c 420 const GLubyte sign = token[0]; local
429 if (sign == '-') {
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bntest.c 2010 static int sign[8]={0,0,0,1,1,0,1,1}; local
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
NearestPoint.cpp 259 int sign, old_sign; /* Sign of coefficients */ variable
261 sign = old_sign = SGN(V[0].y);
263 sign = SGN(V[i].y);
264 if (sign != old_sign) n_crossings++;
265 old_sign = sign;
  /external/chromium_org/third_party/sqlite/src/src/
util.c 266 /* sign * significand * (10 ^ (esign * exponent)) */
267 int sign = 1; /* sign of significand */ local
270 int esign = 1; /* sign of exponent */
284 /* get sign of significand */
286 sign = -1;
325 /* get sign of exponent */
346 /* adjust exponent by d, and update sign */
358 ** Add the sign if we've seen at least one digit */
359 result = (sign<0 && nDigits) ? -(double)0 : (double)0
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 169 int32_t sign; local
439 sign = 1;
442 sign = -1;
469 bweStr->recJitterShortTerm = WEBRTC_SPL_MUL(205, WEBRTC_SPL_LSHIFT_W32(arrTimeNoise, 3)) * sign +
741 /* adjust bw proportionally to negative average jitter sign */
760 /* adjust Rate if jitter sign is mostly constant */
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
coretype.h 177 /** Sign of the value. Nonzero if the final value should be treated as
180 unsigned int sign : 1; member in struct:yasm_value
  /external/elfutils/0.153/src/
objdump.c 412 char sign = '+'; local
415 sign = '-';
418 printf ("%c%#" PRIx64, sign, r_addend);
  /external/libvorbis/lib/
sharedbook.c 48 int sign=0; local
52 sign=0x80000000;
59 return(sign|exp|mant);
64 int sign=val&0x80000000; local
66 if(sign)mant= -mant;
  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c 116 int sign = 1; local
120 sign = 0;
123 const int a = sign ? -i : i;
124 int eb = sign;
151 cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 122 /* Sign bit */
124 LLVMValueRef sign = LLVMBuildShl(builder, justsign, i32_16, ""); local
127 LLVMValueRef sign_inf = LLVMBuildOr(builder, sign, infnanexp, "");
164 src_type.sign = FALSE;
385 src_type.sign == 1 &&
392 dst_type.sign == 0 &&
411 int16_type.sign = 1;
415 int32_type.sign = 1;
440 src_type.sign == 1 &&
447 dst_type.sign == 0 &
    [all...]
  /external/mesa3d/src/mesa/program/
nvvertparse.c 420 const GLubyte sign = token[0]; local
429 if (sign == '-') {
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 280 this.sign(accessor);
288 public void sign(OAuthAccessor accessor) throws IOException, method in class:OAuthMessage
290 OAuthSignatureMethod.newSigner(this, accessor).sign(this);
  /external/opencv/cvaux/src/
cvscanlines.cpp 1299 int sign[4], i; local
1908 int sign[4], i; local
    [all...]
  /external/openssl/crypto/bn/
bntest.c 2010 static int sign[8]={0,0,0,1,1,0,1,1}; local
    [all...]
  /external/openssl/crypto/evp/
evp_locl.h 307 int (*sign)(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, member in struct:evp_pkey_method_st
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsplugin.c 378 cmsFloat64Number floater, sign, mid; local
381 sign = (fix32 < 0 ? -1 : 1);
390 return sign * floater;
  /external/pdfium/fpdfsdk/src/javascript/
util.cpp 614 int sign; /* if '-', then negative, otherwise positive */ local
621 sign = c; /* save sign indication */
623 c = (int)(unsigned char)*nptr++; /* skip sign */
632 if (sign == '-')
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 234 String sign = (time.gmtoff < 0) ? "-" : "+"; local
238 return String.format("%s%s%02d:%02d", base, sign, hours, minutes);
  /external/skia/experimental/Intersection/
NearestPoint.cpp 259 int sign, old_sign; /* Sign of coefficients */ variable
261 sign = old_sign = SGN(V[0].y);
263 sign = SGN(V[i].y);
264 if (sign != old_sign) n_crossings++;
265 old_sign = sign;

Completed in 755 milliseconds

1 2 3 4 5 6 7 8 91011>>