HomeSort by relevance Sort by last modified time
    Searched defs:sign (Results 201 - 225 of 424) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/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/base/third_party/nspr/
prtime.cc 734 int sign; local
748 sign = ((*rest == '+') ? 1 : -1);
749 rest++; /* move over sign */
770 zone_offset *= sign;
    [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/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/openssl/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/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/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/jmonkeyengine/engine/src/core/com/jme3/math/
LineSegment.java 403 float sign = (negativeDirectionDot > 0.0f ? -1.0f : 1.0f); local
404 float averageB0 = (0.5f) * (diffThisDot - sign * diffTestDot);
  /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_encodemv.c 26 const int sign = comp < 0; local
27 const int mag = sign ? -comp : comp;
35 // Sign
36 vp9_write(w, sign, mvcomp->sign);
74 sign_cost[0] = vp9_cost_zero(mvcomp->sign);
75 sign_cost[1] = vp9_cost_one(mvcomp->sign);
161 const uint32_t s0 = nmv_count->comps[i].sign[0];
162 const uint32_t s1 = nmv_count->comps[i].sign[1];
229 update_mv(bc, branch_ct_sign[i], &mvc->comps[i].sign, NMV_UPDATE_PROB)
    [all...]
  /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/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/stlport/src/
num_put_float.cpp 216 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf)
217 { return ecvtbuf(x, n, pt, sign, buf); }
218 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf)
219 { return fcvtbuf(x, n, pt, sign, buf); }
224 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf)
225 { return ecvtbuf(x, n, pt, sign, buf); }
226 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf)
227 { return fcvtbuf(x, n, pt, sign, buf); }
231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0;
862 int decpt, sign; local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_generic_x87.c 61 S is the sign bit. For runs X----X, at least one of the Xs must be
63 there is an explicitly represented leading 1, and a sign bit,
77 sign bit, giving 64 in total.
109 UChar sign; local
111 sign = toUChar( (f64[7] >> 7) & 1 );
132 f80[9] = toUChar( sign << 7 );
163 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) );
180 f80[9] = toUChar( (sign << 7) | 0x7F );
198 f80[9] = toUChar( (sign << 7) | 0x7F );
207 f80[9] = toUChar( (sign << 7) | 0x7F )
250 UChar sign; local
439 UInt sign, expExp; local
    [all...]
  /external/valgrind/main/memcheck/tests/
vcpu_fbench.c 404 int sign; local
407 x = (((sign= (x < 0.0)) != 0) ? -x: x);
414 sign = !sign;
435 return sign ? -r : r;
496 int sign, l, y; local
499 x = (((sign = (x < 0.0)) != 0) ? -x : x);
527 return sign ? -a : a;
  /external/valgrind/main/perf/
fbench.c 400 int sign; local
403 x = (((sign= (x < 0.0)) != 0) ? -x: x);
410 sign = !sign;
431 return sign ? -r : r;
492 int sign, l, y; local
495 x = (((sign = (x < 0.0)) != 0) ? -x : x);
523 return sign ? -a : a;
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 169 WebRtc_Word32 sign; local
439 sign = 1;
442 sign = -1;
469 bweStr->recJitterShortTerm = WEBRTC_SPL_MUL(205, WEBRTC_SPL_LSHIFT_W32(arrTimeNoise, 3)) * sign +
739 /* adjust bw proportionally to negative average jitter sign */
758 /* adjust Rate if jitter sign is mostly constant */
    [all...]
  /frameworks/av/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...]

Completed in 822 milliseconds

1 2 3 4 5 6 7 891011>>