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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/
Decimal.h 52 enum Sign {
63 EncodedData(Sign, int exponent, uint64_t coefficient);
76 Sign sign() const { return m_sign; } function in class:WebCore::Decimal::EncodedData
77 void setSign(Sign sign) { m_sign = sign; }
87 EncodedData(Sign, FormatClass);
93 Sign m_sign;
97 Decimal(Sign, int exponent, uint64_t coefficient)
174 Sign sign() const { return m_data.sign(); } function in class:WebCore::Decimal
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebCrypto.cpp 47 Sign,
92 } else if (m_algorithm.id() == WebKit::WebCryptoAlgorithmIdHmac && m_operation == Sign) {
142 void MockWebCrypto::sign(const WebKit::WebCryptoAlgorithm& algorithm, const WebKit::WebCryptoKey& key, WebKit::WebCryptoOperationResult& result) function in class:WebTestRunner::MockWebCrypto
144 result.initializationSucceeded(new MockCryptoOperation(algorithm, Sign, result));
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double-conversion.cc 172 bool sign; local
178 &sign, &decimal_rep_length, &decimal_point);
181 if (sign && (value != 0.0 || !unique_zero)) {
215 bool sign; local
223 &sign, &decimal_rep_length, &decimal_point);
226 if (sign && (value != 0.0 || !unique_zero)) {
248 bool sign; local
258 &sign, &decimal_rep_length, &decimal_point);
262 &sign, &decimal_rep_length, &decimal_point);
272 if (sign && (value != 0.0 || !unique_zero))
298 bool sign; local
457 bool sign = false; local
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebCrypto.h 91 virtual void sign(const WebCryptoAlgorithm&, const WebCryptoKey&, WebCryptoOperationResult&) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebCrypto
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
mathutil.h 114 unsigned int sign = (fp32i & 0x80000000) >> 16; local
119 return sign | 0x7FFF;
135 return sign | (abs + 0x00000FFF + ((abs >> 13) & 1)) >> 13;
139 return sign | (abs + 0xC8000000 + 0x00000FFF + ((abs >> 13) & 1)) >> 13;
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/skia/src/utils/
SkParse.cpp 141 int sign = 0; local
144 sign = -1;
158 *value = (n ^ sign) - sign;
167 int sign = 0; local
170 sign = -1;
197 *value = (n ^ sign) - sign;
215 int sign = 0;
218 sign = -1
    [all...]
  /external/compiler-rt/lib/
extendsfdf2.c 94 // Break a into a sign and representation of the absolute value
97 const src_rep_t sign = aRep & srcSignMask; local
135 const dst_rep_t result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
  /external/eigen/test/
cholesky.cpp 121 int sign = internal::random<int>()%2 ? 1 : -1; local
123 if(sign == -1)
166 if(sign == -1)
231 int sign = internal::random<int>()%2 ? 1 : -1; local
233 if(sign == -1)
  /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/openssh/openbsd-compat/
fmt_scaled.c 79 int sign = 0; local
90 if (sign) {
94 sign = -1;
97 if (sign) {
101 sign = +1;
139 if (sign) {
140 whole *= sign;
141 fpart *= sign;
  /external/skia/src/utils/
SkParse.cpp 141 int sign = 0; local
144 sign = -1;
158 *value = (n ^ sign) - sign;
167 int sign = 0; local
170 sign = -1;
197 *value = (n ^ sign) - sign;
215 int sign = 0;
218 sign = -1
    [all...]
  /external/skia/tests/
Sk64Test.cpp 13 int8_t zero, pos, neg, toBool, sign; member in struct:BoolTable
24 REPORTER_ASSERT(reporter, a.getSign() == table.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/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
pitch_filter.c 53 WebRtc_Word16 sign,
80 WebRtc_Word16 sign = 1; local
103 sign = -1;
156 indW32, sign, inystateQQ, ubufQQ, fracoeffQQ, indatQQ, outdatQQ, &ind);
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
bit_cnt.c 500 Word16 sign, signLength; local
533 sign=0;
539 sign = sign << 1;
542 sign|=1;
550 sign = sign << 1;
553 sign|=1;
561 sign = sign << 1
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
az_lsp.cpp 361 frequency domain. The sign change interval is subdivided 4 times to better
387 Word16 x, y, sign, exp;
488 sign = y;
497 if (sign < 0)
580 Word16 sign; local
683 sign = y;
691 if (sign < 0)
q_plsf_5.cpp 381 Word16 sign = 0; /* initialization only needed to keep gcc silent */ local
462 sign = 0;
471 sign = 1;
479 if (sign)

Completed in 3325 milliseconds

1 2 3 45 6 7 8 91011>>