Home
last modified time | relevance | path

Searched refs:sign (Results 426 - 450 of 1887) sorted by relevance

1...<<11121314151617181920>>...76

/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dlgammaf_r.c83 /* sin(pi*x) assuming x > 2^-100, if sin(pi*x)==0 the sign is arbitrary */
110 int i,sign; in __lgammaf_r() local
114 sign = u.i>>31; in __lgammaf_r()
119 if (sign) { in __lgammaf_r()
125 if (sign) { in __lgammaf_r()
213 if (sign) in __lgammaf_r()
H A Datanl.c135 unsigned sign = u.i.se >> 15; in atanl() local
141 return sign ? -atanhi[3] : atanhi[3]; in atanl()
182 return sign ? -z : z; in atanl()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_blend.c132 type2.sign = !type.sign; in lp_build_mul_norm_expand()
133 wide_type2.sign = !wide_type2.sign; in lp_build_mul_norm_expand()
251 if ((bld->type.norm && bld->type.sign) && in lp_build_blend()
/third_party/ltp/testcases/kernel/syscalls/string/
H A Dstring01.c329 #define sign(x) ((x) < 0 ? -1 : ((x) > 0 ? 1 : 0)) in main() macro
332 if (sign(n) != sign(t_cmp[i].e_res)) { in main()
334 i, sign(t_cmp[i].e_res), sign(n)); in main()
/kernel/linux/linux-5.10/arch/arm64/kernel/
H A Dcpufeature.c140 .sign = SIGNED, \
1194 int val = cpuid_feature_extract_field(reg, entry->field_pos, entry->sign); in feature_matches()
1659 entry->field_pos, entry->sign); in has_address_auth_cpucap()
1664 entry->field_pos, entry->sign); in has_address_auth_cpucap()
1769 .sign = FTR_UNSIGNED,
1780 .sign = FTR_UNSIGNED,
1793 .sign = FTR_UNSIGNED,
1840 .sign = FTR_UNSIGNED,
1851 .sign = FTR_UNSIGNED,
1894 .sign
[all...]
/third_party/vixl/src/
H A Dutils-vixl.h357 // If the highest extracted bit is set, sign extend. in ExtractSignedBitfield64()
531 internal::SimFloat16 Float16Pack(uint16_t sign,
535 float FloatPack(uint32_t sign, uint32_t exp, uint32_t mantissa);
537 inline float float_pack(uint32_t sign,
540 return FloatPack(sign, exp, mantissa);
543 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa);
545 inline double double_pack(uint32_t sign,
548 return DoublePack(sign, exp, mantissa);
1263 // sign: 0 = positive, 1 = negative
1277 T FPRound(int64_t sign,
[all...]
/third_party/skia/src/utils/
H A DSkJSON.cpp741 const char* matchFastFloatDecimalPart(const char* p, int sign, float f, int exp) { in matchFastFloatDecimalPart() argument
758 this->pushFloat(sign * f * decimal_scale); in matchFastFloatDecimalPart()
763 const char* matchFastFloatPart(const char* p, int sign, float f) { in matchFastFloatPart() argument
773 this->pushFloat(sign * f); in matchFastFloatPart()
777 return (*p == '.') ? this->matchFastFloatDecimalPart(p + 1, sign, f, 0) in matchFastFloatPart()
782 int sign = 1; in matchFast32OrFloat() local
784 sign = -1; in matchFast32OrFloat()
807 this->pushInt32(sign * n32); in matchFast32OrFloat()
828 this->pushFloat(sign * n32 * pow10(exp)); in matchFast32OrFloat()
836 return this->matchFastFloatDecimalPart(p, sign, n3 in matchFast32OrFloat()
[all...]
/kernel/linux/linux-5.10/drivers/iio/common/ssp_sensors/
H A Dssp_iio_sensor.h13 .sign = 's',\
27 .sign = 's', \
/kernel/linux/linux-6.6/drivers/iio/common/ssp_sensors/
H A Dssp_iio_sensor.h13 .sign = 's',\
27 .sign = 's', \
/third_party/node/deps/npm/node_modules/sigstore/dist/
H A Dindex.js3 exports.verify = exports.sign = exports.createVerifier = exports.attest = exports.VerificationError = exports.PolicyError = exports.TUFError = exports.InternalError = exports.DEFAULT_REKOR_URL = exports.DEFAULT_FULCIO_URL = exports.ValidationError = void 0;
21 var sign_1 = require("@sigstore/sign");
33 Object.defineProperty(exports, "sign", { enumerable: true, get: function () { return sigstore_1.sign; } });
/third_party/typescript/tests/baselines/reference/
H A DmodularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.js21 Math.sign(1);
73 Math.sign(1);
H A DmodularizeLibrary_TargetES6UsingES6Lib.js20 Math.sign(1);
71 Math.sign(1);
/third_party/python/Python/
H A Ddtoa.c304 integers are stored in sign-magnitude format, with the magnitude stored as
316 - sign is 1 for negative Bigints, 0 for positive. The sign is unused
319 ignores signs on inputs but sets the sign of the output correctly.
328 int k, maxwds, sign, wds; member
384 rv->sign = rv->wds = 0; in Balloc()
429 rv->sign = rv->wds = 0; in Balloc()
445 #define Bcopy(x,y) memcpy((char *)&x->sign, (char *)&y->sign, \
687 Bigint b will have been Bfree'd. Ignores the sign o
1416 _Py_dg_stdnan(int sign) _Py_dg_stdnan() argument
1430 _Py_dg_infinity(int sign) _Py_dg_infinity() argument
1442 int esign, i, j, k, lz, nd, nd0, odd, sign; _Py_dg_strtod() local
2248 _Py_dg_dtoa(double dd, int mode, int ndigits, int *decpt, int *sign, char **rve) _Py_dg_dtoa() argument
[all...]
/base/security/huks/test/unittest/huks_standard_test/interface_inner_test/alg_module_test/src/
H A Dopenssl_ecc_helper.c215 static EC_KEY *EccInitKey(const struct HksBlob *keyBlob, bool sign) in EccInitKey() argument
243 if (sign) { in EccInitKey()
260 static EVP_MD_CTX *InitEccMdCtx(const struct HksBlob *mainKey, uint32_t digest, bool sign) in InitEccMdCtx() argument
264 EC_KEY *eccKey = EccInitKey(mainKey, sign); in InitEccMdCtx()
287 if (sign) { in InitEccMdCtx()
333 static EVP_PKEY_CTX *InitEcdsaCtx(const struct HksBlob *mainKey, bool sign, uint32_t len) in InitEcdsaCtx() argument
342 EC_KEY *eccKey = EccInitKey(mainKey, sign); in InitEcdsaCtx()
365 if (sign) { in InitEcdsaCtx()
/kernel/linux/linux-5.10/arch/parisc/math-emu/
H A Dsgl_float.h26 /* sgl_and_signs ANDs the sign bits of each argument and puts the result
27 * into the first argument. sgl_or_signs ors those same sign bits */
58 /* Sign extend the sign bit with an integer destination */
162 #define Sgl_setinfinity(sgl_value,sign) \
164 ((unsigned int)sign << 31)
167 #define Sgl_set_sign(sgl_value,sign) Deposit_ssign(sgl_value,sign)
196 #define Sgl_setlargest(sgl_value,sign) \
197 Sall(sgl_value) = (unsigned int)sign << 31 | \
414 #define Sglext_set_sign(dbl_value,sign) Sgl_set_sig
[all...]
/kernel/linux/linux-6.6/arch/parisc/math-emu/
H A Dsgl_float.h26 /* sgl_and_signs ANDs the sign bits of each argument and puts the result
27 * into the first argument. sgl_or_signs ors those same sign bits */
58 /* Sign extend the sign bit with an integer destination */
162 #define Sgl_setinfinity(sgl_value,sign) \
164 ((unsigned int)sign << 31)
167 #define Sgl_set_sign(sgl_value,sign) Deposit_ssign(sgl_value,sign)
196 #define Sgl_setlargest(sgl_value,sign) \
197 Sall(sgl_value) = (unsigned int)sign << 31 | \
414 #define Sglext_set_sign(dbl_value,sign) Sgl_set_sig
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
H A DNumberFormatterImpl.java188 boolean isAccounting = macros.sign == SignDisplay.ACCOUNTING in macrosToMicroGenerator()
189 || macros.sign == SignDisplay.ACCOUNTING_ALWAYS in macrosToMicroGenerator()
190 || macros.sign == SignDisplay.ACCOUNTING_EXCEPT_ZERO; in macrosToMicroGenerator()
299 if (macros.sign != null) { in macrosToMicroGenerator()
300 micros.sign = macros.sign; in macrosToMicroGenerator()
302 micros.sign = SignDisplay.AUTO; in macrosToMicroGenerator()
327 patternMod.setPatternAttributes(micros.sign, isPermille); in macrosToMicroGenerator()
/base/hiviewdfx/hiview/core/param_update/src/
H A Dlog_sign_tools.cpp41 HIVIEW_LOGE("sign file not exist"); in VerifyFileSign()
128 bool LogSignTools::VerifyRsa(RSA *pubKey, const std::string &digest, const std::string &sign) in VerifyRsa() argument
165 if (EVP_VerifyFinal(ctx, (unsigned char *)sign.c_str(), sign.size(), evpKey) != 1) { in VerifyRsa()
/kernel/linux/linux-5.10/arch/ia64/kernel/
H A Dftrace.c36 u64 sign:1; member
151 call_insn->sign = tmp_call->sign; in ftrace_make_nop_check()
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
H A Dsatanh.S27 | sgn := sign(X)
35 | 4. (|X| = 1) Generate infinity with an appropriate sign and
37 | sgn := sign(X)
/kernel/linux/linux-6.6/arch/ia64/kernel/
H A Dftrace.c36 u64 sign:1; member
151 call_insn->sign = tmp_call->sign; in ftrace_make_nop_check()
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
H A Dsatanh.S27 | sgn := sign(X)
35 | 4. (|X| = 1) Generate infinity with an appropriate sign and
37 | sgn := sign(X)
/third_party/musl/src/math/
H A Datanl.c135 unsigned sign = u.i.se >> 15; in atanl() local
141 return sign ? -atanhi[3] : atanhi[3]; in atanl()
182 return sign ? -z : z; in atanl()
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_twoside.c40 float sign; /**< +1 or -1 */ member
81 if (header->det * twoside->sign < 0.0) { in twoside_tri()
134 * We'll multiply the primitive's determinant by this sign to determine in twoside_first_tri()
136 * sign = -1 for CCW, +1 for CW in twoside_first_tri()
138 twoside->sign = stage->draw->rasterizer->front_ccw ? -1.0f : 1.0f; in twoside_first_tri()
/third_party/node/deps/openssl/openssl/apps/
H A Dpkcs7.c153 if (p7->d.sign != NULL) { in pkcs7_main()
154 certs = p7->d.sign->cert; in pkcs7_main()
155 crls = p7->d.sign->crl; in pkcs7_main()

Completed in 20 milliseconds

1...<<11121314151617181920>>...76