HomeSort by relevance Sort by last modified time
    Searched defs:sign (Results 101 - 125 of 624) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/boringssl/src/crypto/ec/
wnaf.c 97 int sign = 1; local
123 sign = -1;
186 r[j++] = sign * digit;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1GeneralizedTime.java 189 char sign = stime.charAt(signPos); local
190 if (sign == '-' || sign == '+')
201 sign = stime.charAt(signPos);
202 if (sign == '-' || sign == '+')
216 String sign = "+"; local
221 sign = "-";
231 hours += sign.equals("+") ? 1 : -1;
239 return "GMT" + sign + convert(hours) + ":" + convert(minutes)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
tsig.py 60 def sign(wire, keyname, secret, time, fudge, original_id, error, function
114 return sign(wire, keyname, secret, time, fudge, original_id, error,
163 (junk, our_mac, ctx) = sign(new_wire, keyname, secret, time, fudge,
  /external/chromium-trace/catapult/third_party/Paste/paste/auth/
cookie.py 137 def sign(self, content): member in class:AuthCookieSigner
139 Sign the content returning a valid cookie (that does not
307 content = self.signer.sign(content)
364 The secret that will be used to sign the cookies. If you
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
crypt.py 130 pkey, OpenSSL.crypto.PKey (or equiv), The private key to sign with.
134 def sign(self, message): member in class:.OpenSSLSigner
146 return crypto.sign(self._key, message, 'sha256')
267 pkey, OpenSSL.crypto.PKey (or equiv), The private key to sign with.
271 def sign(self, message): member in class:.PyCryptoSigner
282 return PKCS1_v1_5.new(self._key).sign(SHA256.new(message))
367 payload: dict, Dictionary of data to convert to JSON and then sign.
380 signature = signer.sign(signing_input)
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_type.h 97 unsigned sign:1; member in struct:lp_type
183 res_type.sign = TRUE;
199 res_type.sign = TRUE;
214 res_type.sign = TRUE;
229 res_type.sign = TRUE;
285 res_type.sign = TRUE;
343 type.sign = TRUE;
359 type.sign = TRUE;
375 type.sign = FALSE;
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_r11g11b10f.h 58 int sign = (f32.ui >> 16) & 0x8000; local
74 if (sign)
77 } else if (sign) {
144 int sign = (f32.ui >> 16) & 0x8000; local
160 if (sign)
163 } else if (sign) {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
CAVLCReader.java 85 int sign = ((val & 0x1) << 1) - 1; local
86 val = ((val >> 1) + (val & 0x1)) * sign;
  /external/oauth/core/src/main/java/net/oauth/signature/
RSA_SHA1.java 193 byte[] signature = sign(baseString.getBytes(OAuth.ENCODING));
215 private byte[] sign(byte[] message) throws GeneralSecurityException { method in class:RSA_SHA1
224 return signer.sign();
  /external/opencv3/modules/core/test/
test_countnonzero.cpp 53 #define sign(a) a > 0 ? 1 : a == 0 ? 0 : -1 macro
117 case CV_8S: { if (!src.at<char>(i, j)) {src.at<char>(i, j) = cv::randu<uchar>() - 128; n += abs(sign(src.at<char>(i, j)));} break; }
119 case CV_16S: { if (!src.at<short>(i, j)) {src.at<short>(i, j) = cv::randu<short>(); n += abs(sign(src.at<short>(i, j)));} break; }
120 case CV_32S: { if (!src.at<int>(i, j)) {src.at<int>(i, j) = cv::randu<int>(); n += abs(sign(src.at<int>(i, j)));} break; }
153 else if (current_type == CV_8S) result += abs(sign(src.at<char>(i, j)));
155 else if (current_type == CV_16S) result += abs(sign(src.at<short>(i, j)));
156 else if (current_type == CV_32S) result += abs(sign(src.at<int>(i, j)));
  /external/pdfium/third_party/bigint/
BigInteger.hh 16 * A BigInteger is just an aggregate of a BigUnsigned and a sign. (It is no
29 // Enumeration for the sign of a BigInteger.
30 enum Sign { negative = -1, zero = 0, positive = 1 };
33 Sign sign; member in class:BigInteger
38 BigInteger() : sign(zero), mag() {}
41 BigInteger(const BigInteger &x) : sign(x.sign), mag(x.mag) {};
46 // Constructor that copies from a given array of blocks with a sign.
47 BigInteger(const Blk *b, Index blen, Sign s)
    [all...]
  /external/skia/gm/
addarc.cpp 37 SkScalar sign = 1; variable
43 startAngle += fRotate * 360 * speed * sign;
50 sign = -sign;
142 SkScalar sign = 1; variable
145 canvas->rotate(fRotate * sign);
150 sign = -sign;
207 SkScalar sign = 1; variable
211 sign = -1
    [all...]
  /external/skia/src/utils/
SkParse.cpp 143 int sign = 0; local
146 sign = -1;
160 *value = (n ^ sign) - sign;
169 int sign = 0; local
172 sign = -1;
199 *value = (n ^ sign) - sign;
  /external/speex/libspeex/
cb_search.c 169 spx_word16_t sign=1; local
173 sign=-1;
177 if (sign>0)
185 if (sign==1)
195 e[subvect_size*i+j]=sign*0.03125*shape_cb[rind*subvect_size+j];
204 spx_word16_t sign=1; local
208 sign=-1;
214 g=sign*shape_cb[rind*subvect_size+m];
216 g=sign*0.03125*shape_cb[rind*subvect_size+m];
427 spx_word16_t sign=1 local
475 spx_word16_t sign=1; local
    [all...]
pseudofloat.h 67 int sign=0; local
70 sign = 1;
80 if (sign)
stereo.c 129 /*Pack sign*/
277 spx_word16_t sign=1, dexp; local
285 sign=-1;
288 stereo->balance = exp(sign*.25*dexp);
290 stereo->balance = spx_exp(MULT16_16(sign, SHL16(dexp, 9)));
  /external/v8/src/
dateparser-inl.h 169 // Extra sign or ')' is illegal if a number has been read.
253 // Keep the sign token, so we can pass it back to the legacy
257 int sign = sign_token.ascii_sign(); local
259 if (sign < 0 && year == 0) return sign_token;
260 day->Add(sign * year);
  /external/webp/src/enc/
token.c 123 const int sign = c < 0; local
124 const uint32_t v = sign ? -c : c;
178 AddConstantToken(tokens, sign, 128);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_filter.c 52 int16_t sign = 1; local
74 sign = -1;
121 indW32, sign, inystateQQ, ubufQQ, fracoeffQQ, indatQQ, outdatQQ, &ind);
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_utils.cc 31 float sign = copysign(1.0f, target - current); local
32 return current + sign * fminf(delta, limit);