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

1 2 3 4 5 6 78 91011>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Float16Utils.java 28 // 16-bit masks for extracting sign, exponent and mantissa bits
58 // Zero has all but the sign bit set to zero
63 // Negativity test checks the sign bit
74 // Extract sign, exponent and mantissa
75 int sign = val & SIGN_MASK; local
98 if (sign != 0)
142 // Zero. Assign 0 and adjust sign at the end of this function
RSUtils.java 81 int sign = (min >= 0) ? 1 : 1 - r.nextInt(2) * 2; // -1 or 1 local
82 double rand = sign * mantissa * Math.pow(2.0, exponent);
132 int sign = (min >= 0) ? 1 : 1 - r.nextInt(2) * 2; // -1 or 1 local
133 float rand = sign * mantissa * (float) Math.pow(2.0, exponent);
179 // minValueInHalf or maxValueInHalf is +/- infinity, use MAX_VALUE with appropriate sign
  /device/google/contexthub/util/nanoapp_sign/
nanoapp_sign.c 412 " -s : sign post-processed file\n"
433 bool sign = false; local
452 sign = true;
484 if (sign)
496 if (sign && !(keyPvtFile && keyPubFile))
541 if (sign)
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
subr_prf.c 245 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
273 sign = 0; dot = 0; dwidth = 0; upper = 0;
283 sign = 1;
363 sign = 1;
404 sign = 0;
412 if (sign)
449 sign = 1;
455 sign = 0;
491 if (sign && (intmax_t)num < 0) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vsnprintf_ss.c 130 char sign; /* sign prefix (' ', '+', '-', or \0) */ local
175 sign = '\0';
185 if (!sign)
186 sign = ' ';
206 sign = '+';
264 sign = '\0';
274 sign = '-';
336 sign = '\0';
357 nosign: sign = '\0';
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
strtod.c 94 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
108 sign = nz0 = nz = decpt = 0;
113 sign = 1;
152 switch((i = gethex(&s, &fpi, &expt, &bb, sign)) & STRTOG_Retmask) {
155 sign = 0;
304 sign = 0;
343 if (sign) {
345 sign = 0;
359 if (sign) {
361 sign = 0;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
ComplexFormat.java 156 // format sign and imaginary
287 // parse sign
290 int sign = 0; local
293 // no sign
297 sign = -1;
300 sign = 1;
303 // invalid sign
328 return new Complex(re.doubleValue(), im.doubleValue() * sign);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/netscape/
NetscapeCertRequest.java 214 public void sign(PrivateKey priv_key) throws NoSuchAlgorithmException, method in class:NetscapeCertRequest
218 sign(priv_key, null); method
221 public void sign(PrivateKey priv_key, SecureRandom rand) method in class:NetscapeCertRequest
252 sigBits = sig.sign();
  /external/deqp/framework/common/
tcuFloat.hpp 73 * \param sign Sign. Must be +1/-1
88 static inline Float construct (int sign, int exponent, StorageType mantissa);
92 * \param sign Sign. Must be +1/-1
99 * The sign is turned into a sign bit and the exponent bias is added.
103 static Float constructBits (int sign, int exponent, StorageType mantissaBits);
113 inline int sign (void) const { return signBit() ? -1 : 1; } function in class:tcu::Float
122 static Float zero (int sign);
    [all...]
tcuVectorUtil.hpp 67 inline float sign (float f) { return (f < 0.0f) ? -1.0f : ((f > 0.0f) ? +1.0f : 0.0f); } function in namespace:tcu
86 inline float normalize (float f) { return sign(f); }
450 TCU_DECLARE_VECTOR_UNARY_FUNC(sign, deFloatSign)
  /external/eigen/test/
cholesky.cpp 146 int sign = internal::random<int>()%2 ? 1 : -1; local
148 if(sign == -1)
210 if(sign == -1)
326 int sign = internal::random<int>()%2 ? 1 : -1; local
328 if(sign == -1)
  /external/flatbuffers/php/
ByteBuffer.php 375 $sign = $index + (ByteBuffer::isLittleEndian() ? 1 : 0); variable
376 $issigned = isset($this->_buffer[$sign]) && ord($this->_buffer[$sign]) & 0x80;
399 $sign = $index + (ByteBuffer::isLittleEndian() ? 3 : 0); variable
400 $issigned = isset($this->_buffer[$sign]) && ord($this->_buffer[$sign]) & 0x80;
  /external/icu/android_icu4j/src/main/java/android/icu/number/
NumberFormatterSettings.java 237 * Specifies the symbols (decimal separator, grouping separator, percent sign, numerals, etc.) to use when rendering
345 * Sets the plus/minus sign display strategy. Most common values:
357 * NumberFormatter.with().sign(SignDisplay.ALWAYS)
361 * The default is AUTO sign display.
364 * The sign display strategy to use when rendering numbers.
369 public T sign(SignDisplay style) { method in class:NumberFormatterSettings
499 if (macros.sign == null) {
500 macros.sign = (SignDisplay) current.value;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationThaiTest.java 116 int sign(int i ) { method in class:CollationThaiTest
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
NumberFormatterApiTest.java 82 "Basic with Negative Sign",
123 "Scientific sign always shown",
305 "Compact with Negative Sign",
418 "Meters with Negative Sign",
544 "$GBP F0 grouping=none integer-width=1- symbols=loc:en sign=AUTO decimal=AUTO",
554 "Currency with Negative Sign",
621 "Percent with Negative Sign",
1374 public void sign() { method in class:NumberFormatterApiTest
    [all...]
  /external/icu/icu4c/source/i18n/
number_fluent.cpp 92 Derived NumberFormatterSettings<Derived>::sign(const UNumberSignDisplay &style) const { function in class:NumberFormatterSettings
94 copy.fMacros.sign = style;
  /external/icu/icu4c/source/test/intltest/
numbertest_api.cpp 75 TESTCASE_AUTO(sign);
99 u"Basic with Negative Sign",
137 u"Scientific sign always shown",
314 u"Compact with Negative Sign",
419 u"Meters with Negative Sign",
545 u"Currency with Negative Sign",
589 u"Percent with Negative Sign",
1292 void NumberFormatterApiTest::sign() { function in class:NumberFormatterApiTest
    [all...]
thcoll.cpp 283 if (sign(result) != sign(expect))
313 if (sign(result) != sign(expect)) {
327 int8_t CollationThaiTest::sign(int32_t i) { function in class:CollationThaiTest
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
NumberFormatterSettings.java 240 * Specifies the symbols (decimal separator, grouping separator, percent sign, numerals, etc.) to use when rendering
351 * Sets the plus/minus sign display strategy. Most common values:
363 * NumberFormatter.with().sign(SignDisplay.ALWAYS)
367 * The default is AUTO sign display.
370 * The sign display strategy to use when rendering numbers.
376 public T sign(SignDisplay style) { method in class:NumberFormatterSettings
507 if (macros.sign == null) {
508 macros.sign = (SignDisplay) current.value;
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationThaiTest.java 113 int sign(int i ) { method in class:CollationThaiTest
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
NumberFormatterApiTest.java 79 "Basic with Negative Sign",
120 "Scientific sign always shown",
302 "Compact with Negative Sign",
415 "Meters with Negative Sign",
541 "$GBP F0 grouping=none integer-width=1- symbols=loc:en sign=AUTO decimal=AUTO",
551 "Currency with Negative Sign",
618 "Percent with Negative Sign",
1371 public void sign() { method in class:NumberFormatterApiTest
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
size_size_string_size_size.pass.cpp 24 int sign(int x) function
39 assert(sign(s.compare(pos1, n1, str, pos2, n2)) == sign(x));
62 assert(sign(s.compare(pos1, n1, str, pos2)) == sign(x));
    [all...]
  /external/libcxx/test/std/strings/string.view/string.view.ops/
compare.size_size_sv_size_size.pass.cpp 21 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
29 assert (sign( sv1.compare(pos1, n1, sv2, pos2, n2)) == sign(expected));
32 assert (sign( sv1.compare(pos1, n1, sv2, pos2, n2)) == sign(expected));
    [all...]
  /external/libjpeg-turbo/
jdarith.c 252 int blkn, ci, tbl, sign; local
281 /* Figure F.22: Decoding the sign of v */
282 sign = arith_decode(cinfo, st + 1);
283 st += 2; st += sign;
300 entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */
302 entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */
308 v += 1; if (sign) v = -v;
331 int tbl, sign, k; local
362 /* Figure F.22: Decoding the sign of v */
363 sign = arith_decode(cinfo, entropy->fixed_bin)
508 int blkn, ci, tbl, sign, k; local
    [all...]
  /external/libmpeg2/decoder/
impeg2d_vld.c 1087 WORD16 sign; local
1202 WORD16 sign; local
    [all...]

Completed in 1688 milliseconds

1 2 3 4 5 6 78 91011>>