Home
last modified time | relevance | path

Searched refs:sign (Results 76 - 100 of 1043) sorted by relevance

12345678910>>...42

/third_party/node/deps/icu-small/source/i18n/
H A Ddouble-conversion-string-to-double.cpp176 static double SignedZero(bool sign) { in SignedZero() argument
177 return sign ? -0.0 : 0.0; in SignedZero()
279 bool sign, in RadixStringToIeee()
307 return SignedZero(sign); in RadixStringToIeee()
427 if (sign) { in RadixStringToIeee()
436 return sign ? -result : result; in RadixStringToIeee()
484 bool sign = false;
487 sign = (*current == '-');
512 return sign ? -Double::Infinity() : Double::Infinity();
530 return sign
277 RadixStringToIeee(Iterator* current, Iterator end, bool sign, uc16 separator, bool parse_as_hex_float, bool allow_trailing_junk, double junk_string_value, bool read_as_double, bool* result_is_junk) RadixStringToIeee() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddouble-conversion-string-to-double.cpp176 static double SignedZero(bool sign) { in SignedZero() argument
177 return sign ? -0.0 : 0.0; in SignedZero()
279 bool sign, in RadixStringToIeee()
307 return SignedZero(sign); in RadixStringToIeee()
427 if (sign) { in RadixStringToIeee()
436 return sign ? -result : result; in RadixStringToIeee()
484 bool sign = false;
487 sign = (*current == '-');
512 return sign ? -Double::Infinity() : Double::Infinity();
530 return sign
277 RadixStringToIeee(Iterator* current, Iterator end, bool sign, uc16 separator, bool parse_as_hex_float, bool allow_trailing_junk, double junk_string_value, bool read_as_double, bool* result_is_junk) RadixStringToIeee() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAPFloat.cpp232 appropriate sign. */
723 sign = rhs.sign;
743 sign = Negative;
806 sign = rhs.sign;
890 sign != rhs.sign)
904 sign = 0;
915 sign
[all...]
/third_party/optimized-routines/math/
H A Dcosf.c39 s = p->sign[n & 3]; in cosf()
49 int sign = xi >> 31; in cosf() local
53 /* Setup signs for sin and cos - include original sign. */ in cosf()
54 s = p->sign[(n + sign) & 3]; in cosf()
56 if ((n + sign) & 2) in cosf()
H A Dsincosf.c46 s = p->sign[n & 3]; in sincosf()
56 int sign = xi >> 31; in sincosf() local
60 /* Setup signs for sin and cos - include original sign. */ in sincosf()
61 s = p->sign[(n + sign) & 3]; in sincosf()
63 if ((n + sign) & 2) in sincosf()
H A Dsinf.c43 s = p->sign[n & 3]; in sinf()
53 int sign = xi >> 31; in sinf() local
57 /* Setup signs for sin and cos - include original sign. */ in sinf()
58 s = p->sign[(n + sign) & 3]; in sinf()
60 if ((n + sign) & 2) in sinf()
/third_party/node/deps/openssl/openssl/crypto/pkcs7/
H A Dpk7_lib.c32 if (ret && PKCS7_type_is_data(p7->d.sign->contents)) { in PKCS7_ctrl()
34 os = p7->d.sign->contents->d.data; in PKCS7_ctrl()
36 p7->d.sign->contents->d.data = NULL; in PKCS7_ctrl()
46 if (p7->d.sign == NULL || p7->d.sign->contents->d.ptr == NULL) in PKCS7_ctrl()
90 PKCS7_free(p7->d.sign->contents); in PKCS7_set_content()
91 p7->d.sign->contents = p7_data; in PKCS7_set_content()
122 if ((p7->d.sign = PKCS7_SIGNED_new()) == NULL) in PKCS7_set_type()
124 if (!ASN1_INTEGER_set(p7->d.sign->version, 1)) { in PKCS7_set_type()
125 PKCS7_SIGNED_free(p7->d.sign); in PKCS7_set_type()
[all...]
/third_party/openssl/crypto/pkcs7/
H A Dpk7_lib.c32 if (ret && PKCS7_type_is_data(p7->d.sign->contents)) { in PKCS7_ctrl()
34 os = p7->d.sign->contents->d.data; in PKCS7_ctrl()
36 p7->d.sign->contents->d.data = NULL; in PKCS7_ctrl()
46 if (p7->d.sign == NULL || p7->d.sign->contents->d.ptr == NULL) in PKCS7_ctrl()
90 PKCS7_free(p7->d.sign->contents); in PKCS7_set_content()
91 p7->d.sign->contents = p7_data; in PKCS7_set_content()
122 if ((p7->d.sign = PKCS7_SIGNED_new()) == NULL) in PKCS7_set_type()
124 if (!ASN1_INTEGER_set(p7->d.sign->version, 1)) { in PKCS7_set_type()
125 PKCS7_SIGNED_free(p7->d.sign); in PKCS7_set_type()
[all...]
/third_party/FreeBSD/contrib/gdtoa/
H A Dgethex.c40 gethex(sp, fpi, exp, bp, sign) in gethex()
41 CONST char **sp; FPI *fpi; Long *exp; Bigint **bp; int sign; in gethex()
43 gethex( CONST char **sp, FPI *fpi, Long *exp, Bigint **bp, int sign)
159 if (sign)
163 if (!sign)
178 if (!sign)
182 if (sign)
275 if (!sign)
279 if (sign) {
321 up = 1 - sign;
[all...]
/third_party/musl/porting/uniproton/kernel/src/stdlib/
H A Dbsearch.c6 int sign; in bsearch() local
9 sign = cmp(key, try); in bsearch()
10 if (sign < 0) { in bsearch()
12 } else if (sign > 0) { in bsearch()
/third_party/musl/src/stdlib/
H A Dbsearch.c6 int sign; in bsearch() local
9 sign = cmp(key, try); in bsearch()
10 if (sign < 0) { in bsearch()
12 } else if (sign > 0) { in bsearch()
/third_party/musl/porting/liteos_m/kernel/src/stdlib/
H A Dbsearch.c6 int sign; in bsearch() local
9 sign = cmp(key, try); in bsearch()
10 if (sign < 0) { in bsearch()
12 } else if (sign > 0) { in bsearch()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DMacroProps.java34 public SignDisplay sign; field in MacroProps
69 if (sign == null) in fallback()
70 sign = fallback.sign; in fallback()
95 sign, in hashCode()
122 && Objects.equals(sign, other.sign) in equals()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A D__rem_pio2.c55 int sign, n, ex, ey, i; in __rem_pio2() local
57 sign = u.i>>63; in __rem_pio2()
63 if (!sign) { in __rem_pio2()
75 if (!sign) { in __rem_pio2()
92 if (!sign) { in __rem_pio2()
106 if (!sign) { in __rem_pio2()
182 if (sign) { in __rem_pio2()
/third_party/musl/src/math/
H A D__rem_pio2.c55 int sign, n, ex, ey, i; in __rem_pio2() local
57 sign = u.i>>63; in __rem_pio2()
63 if (!sign) { in __rem_pio2()
75 if (!sign) { in __rem_pio2()
92 if (!sign) { in __rem_pio2()
106 if (!sign) { in __rem_pio2()
182 if (sign) { in __rem_pio2()
/third_party/ffmpeg/libavcodec/mips/
H A Daacdec_mips.h139 unsigned sign, const float *scale) in VMUL2S_mips()
149 "srl %[temp2], %[sign], 1 \n\t" in VMUL2S_mips()
150 "sll %[temp3], %[sign], 31 \n\t" in VMUL2S_mips()
173 [dst]"r"(dst), [sign]"r"(sign) in VMUL2S_mips()
180 unsigned sign, const float *scale) in VMUL4S_mips()
200 "and %[temp1], %[sign], %[mask] \n\t" in VMUL4S_mips()
207 "sllv %[sign], %[sign], %[temp2] \n\t" in VMUL4S_mips()
209 "and %[temp2], %[sign], in VMUL4S_mips()
138 VMUL2S_mips(float *dst, const float *v, unsigned idx, unsigned sign, const float *scale) VMUL2S_mips() argument
179 VMUL4S_mips(float *dst, const float *v, unsigned idx, unsigned sign, const float *scale) VMUL4S_mips() argument
[all...]
/third_party/mesa3d/src/util/
H A Dformat_r11g11b10f.h63 int sign = (f32.ui >> 16) & 0x8000; in f32_to_uf11() local
79 if (sign) in f32_to_uf11()
82 } else if (sign) { in f32_to_uf11()
145 int sign = (f32.ui >> 16) & 0x8000; in f32_to_uf10() local
161 if (sign) in f32_to_uf10()
164 } else if (sign) { in f32_to_uf10()
/third_party/python/Python/
H A Dmystrtoul.c267 char sign; in PyOS_strtol() local
272 sign = *str; in PyOS_strtol()
273 if (sign == '+' || sign == '-') in PyOS_strtol()
280 if (sign == '-') in PyOS_strtol()
283 else if (sign == '-' && uresult == PY_ABS_LONG_MIN) { in PyOS_strtol()
/third_party/python/Lib/test/test_tomllib/
H A Dburntsushi.py93 sign = "+"
95 sign = "-"
97 sign = ""
99 if sign:
100 time, _, offset = rest.partition(sign)
106 return date + "T" + time + sign + offset
/third_party/vk-gl-cts/framework/delibs/debase/
H A DdeMathTest.c76 int sign; in testInt32ToFloat() local
84 for (sign = -1; sign < 1; ++sign) in testInt32ToFloat()
88 const deInt64 x = (deInt64)(sign == -1 ? (-1) : (+1)) * (1LL << (deInt64)numBits) + (deInt64)delta; in testInt32ToFloat()
/drivers/peripheral/user_auth/hdi_service/common/src/
H A Duser_sign_centre.c50 Buffer *sign = NULL; in UserAuthTokenHmac() local
54 ResultCode ret = HmacSha256(&key, &data, &sign); in UserAuthTokenHmac()
59 if (!CheckBufferWithSize(sign, SHA256_DIGEST_SIZE)) { in UserAuthTokenHmac()
64 if (memcpy_s(userAuthToken->sign, SHA256_DIGEST_SIZE, sign->buf, sign->contentSize) != EOK) { in UserAuthTokenHmac()
65 LOG_ERROR("sign copy failed"); in UserAuthTokenHmac()
71 DestoryBuffer(sign); in UserAuthTokenHmac()
134 const Buffer sign = GetTmpBuffer((uint8_t *)userAuthToken->sign, SHA256_DIGEST_SIZ in CheckUserAuthTokenHmac() local
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djdarith.c255 int blkn, ci, tbl, sign; in METHODDEF() local
284 /* Figure F.22: Decoding the sign of v */ in METHODDEF()
285 sign = arith_decode(cinfo, st + 1); in METHODDEF()
286 st += 2; st += sign; in METHODDEF()
303 entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */ in METHODDEF()
305 entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */ in METHODDEF()
311 v += 1; if (sign) v = -v; in METHODDEF()
334 int tbl, sign, k; in METHODDEF() local
365 /* Figure F.22: Decoding the sign of v */ in METHODDEF()
366 sign in METHODDEF()
511 int blkn, ci, tbl, sign, k; METHODDEF() local
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_packed_float.c31 unsigned sign:1; member
42 return fu.s.sign << 7; in brw_float_to_vf()
46 unsigned vf = (fu.s.sign << 7) | (exponent << 4) | mantissa; in brw_float_to_vf()
70 fu.s.sign = vf >> 7; in brw_vf_to_float()
/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DHalf.cpp22 unsigned int sign = (fp32i & 0x80000000) >> 16; in half() local
27 fp16i = sign | 0x7FFF; in half()
43 fp16i = sign | (abs + 0x00000FFF + ((abs >> 13) & 1)) >> 13; in half()
47 fp16i = sign | (abs + 0xC8000000 + 0x00000FFF + ((abs >> 13) & 1)) >> 13; in half()
/third_party/skia/third_party/externals/swiftshader/src/System/
H A DHalf.cpp22 unsigned int sign = (fp32i & 0x80000000) >> 16; in half() local
27 fp16i = sign | 0x7FFF; in half()
43 fp16i = sign | (abs + 0x00000FFF + ((abs >> 13) & 1)) >> 13; in half()
47 fp16i = sign | (abs + 0xC8000000 + 0x00000FFF + ((abs >> 13) & 1)) >> 13; in half()

Completed in 12 milliseconds

12345678910>>...42