/third_party/openssl/include/crypto/ |
H A D | evp.h | 146 int (*sign) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, member
|
/third_party/openssl/ssl/statem/ |
H A D | statem_local.h | 201 SSL_SESSION *sess, int sign, int external);
|
/third_party/openssl/include/openssl/ |
H A D | ec.h | 1111 * \return 1 if can can sign and 0 otherwise. 1370 * \param dgst pointer to the hash value to sign 1407 * \param dgst pointer to the hash value to sign 1421 * \param dgst pointer to the hash value to sign 1482 int (*sign)(int type, const unsigned char *dgst,
|
/third_party/openssl/crypto/ts/ |
H A D | ts_rsp_sign.c | 699 if (!ASN1_INTEGER_set(p7->d.sign->version, 3)) in ts_RESP_sign()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | ec.h | 951 * \return 1 if can can sign and 0 otherwise. 1196 * \param dgst pointer to the hash value to sign 1232 * \param dgst pointer to the hash value to sign 1245 * \param dgst pointer to the hash value to sign 1305 int (*sign)(int type, const unsigned char *dgst,
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | decNumberLocal.h | 287 uInt sign; /* 0=positive, DECFLOAT_Sign=negative */ member 299 /* (array) notation (the 0 word or byte contains the sign bit), */ 314 /* Tests for sign or specials, directly on DECFLOATs */ 347 /* DFISUINT01 -- test for sign=0, finite, exponent q=0, and */
|
/third_party/node/deps/v8/src/builtins/mips/ |
H A D | builtins-mips.cc | 2919 // Save the sign. in Generate_DoubleToI() 2920 Register sign = result_reg; in Generate_DoubleToI() local 2922 __ And(sign, input_high, Operand(HeapNumber::kSignMask)); in Generate_DoubleToI() 2958 // Restore sign if necessary. in Generate_DoubleToI() 2959 __ mov(scratch, sign); in Generate_DoubleToI() 2960 result_reg = sign; in Generate_DoubleToI() 2961 sign = no_reg; in Generate_DoubleToI()
|
/third_party/node/deps/v8/src/builtins/mips64/ |
H A D | builtins-mips64.cc | 3004 // Save the sign. in Generate_DoubleToI() 3005 Register sign = result_reg; in Generate_DoubleToI() local 3007 __ And(sign, input_high, Operand(HeapNumber::kSignMask)); in Generate_DoubleToI() 3043 // Restore sign if necessary. in Generate_DoubleToI() 3044 __ mov(scratch, sign); in Generate_DoubleToI() 3045 result_reg = sign; in Generate_DoubleToI() 3046 sign = no_reg; in Generate_DoubleToI()
|
/third_party/node/deps/v8/src/builtins/loong64/ |
H A D | builtins-loong64.cc | 2983 // Save the sign. in Generate_DoubleToI() 2984 Register sign = result_reg; in Generate_DoubleToI() local 2986 __ And(sign, input_high, Operand(HeapNumber::kSignMask)); in Generate_DoubleToI() 3022 // Restore sign if necessary. in Generate_DoubleToI() 3023 __ mov(scratch, sign); in Generate_DoubleToI() 3024 result_reg = sign; in Generate_DoubleToI() 3025 sign = no_reg; in Generate_DoubleToI()
|
/third_party/node/deps/v8/src/builtins/riscv64/ |
H A D | builtins-riscv64.cc | 3035 // Save the sign. in Generate_DoubleToI() 3036 Register sign = result_reg; in Generate_DoubleToI() local 3038 __ And(sign, input_high, Operand(HeapNumber::kSignMask)); in Generate_DoubleToI() 3074 // Restore sign if necessary. in Generate_DoubleToI() 3075 __ Move(scratch, sign); in Generate_DoubleToI() 3076 result_reg = sign; in Generate_DoubleToI() 3077 sign = no_reg; in Generate_DoubleToI()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuRasterizationVerifier.cpp | 880 const int sign = ((side / 2) * -2) + 1; 882 const float t = calculateIntersectionParameter(line, w * (float)sign, component); 888 if (line[1][component] > (w * (float)sign)) 890 line[1 - side / 2][component] = w * (float)sign; 895 line[side / 2][component] = w * (float)sign;
|
/third_party/ffmpeg/libavcodec/ |
H A D | cbs_av1_syntax_template.c | 748 static const uint8_t sign[AV1_SEG_LVL_MAX] = { 1, 1, 1, 1, 1, 0, 0, 0 }; in segmentation_params() local 788 if (sign[j]) in segmentation_params() 1565 // Derive reference frame sign biases. in uncompressed_header()
|
H A D | speexdec.c | 621 float sign = get_bits1(gb) ? -1.f : 1.f; in speex_std_stereo() local 623 stereo->balance = exp(sign * .25f * get_bits(gb, 5)); in speex_std_stereo()
|
H A D | mpeg12dec.c | 115 int code, sign, val, shift; in mpeg_decode_motion() local 123 sign = get_bits1(&s->gb); in mpeg_decode_motion() 131 if (sign) in mpeg_decode_motion()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | vp9lpf.asm | 802 SRSHIFT3B_2X m6, m4, rb10, m7 ; f1 and f2 sign byte shift by 3 826 SRSHIFT3B_2X m6, m2, rb10, m4 ; f1 and f2 sign byte shift by 3
|
/third_party/mbedtls/library/ |
H A D | ecjpake.c | 621 static int ecjpake_mul_secret(mbedtls_mpi *R, int sign, in ecjpake_mul_secret() argument 638 /* R = sign * X * b mod N */ in ecjpake_mul_secret() 640 R->s *= sign; in ecjpake_mul_secret()
|
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | disassemble.c | 1869 char sign = (bias >= 0.0) ? '+' : '-'; in print_texture_word() local 1870 char operand = is_bias ? sign : '='; in print_texture_word()
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_text.c | 197 int sign = (*cur == '-' ? -1 : 1); in parse_int() local 203 *val *= sign; in parse_int()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageTranscodingSupportTests.cpp | 135 *ptr = T::largestNormal(ptr->sign()); in fixFloatIfNeeded() 137 *ptr = T::smallestNormal(ptr->sign()); in fixFloatIfNeeded()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineSamplerBorderSwizzleTests.cpp | 329 const int asign = tcu::Float32(a).sign(); in calcFloatDiff() 330 const int bsign = tcu::Float32(a).sign(); in calcFloatDiff() 1249 const deUint64 signMask = (~mask); // Used to extend the sign bit. in getRandomClearColor() 1254 // Extend sign bit for negative values. in getRandomClearColor()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageTranscodingSupportTests.cpp | 135 *ptr = T::largestNormal(ptr->sign()); in fixFloatIfNeeded() 137 *ptr = T::smallestNormal(ptr->sign()); in fixFloatIfNeeded()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fTextureUnitTests.cpp | 505 float sign = rnd.getBool() ? 1.0f : -1.0f; in MultiTexShader() local 506 transData[i] = rnd.getFloat(0.7f, 1.4f) * sign; in MultiTexShader()
|
/third_party/sqlite/src/ |
H A D | shell.c | 2383 char sign; /* 0 for positive, 1 for negative */ member 2425 p->sign = 0; in decimal_new() 2447 p->sign = 1; in decimal_new() 2551 p->sign = 0; in decimal_result() 2553 if( p->sign ){ in decimal_result() 2611 if( pA->sign!=pB->sign ){ in decimal_cmp() 2612 return pA->sign ? -1 : +1; in decimal_cmp() 2614 if( pA->sign ){ in decimal_cmp() 2721 if( pA->sign in decimal_add() [all...] |
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 2101 (prefix + expected, timezone(sign * td)) 2103 for prefix, sign in [('-', -1), ('+', 1)] 2691 sign = '-' 2694 sign ='+' 2697 dtstr = "{}{:02d}{:02d} {}".format(sign, hours, minutes, tzname) 3497 (prefix + expected, timezone(sign * td)) 3499 for prefix, sign in [('-', -1), ('+', 1)] 4911 # Note that offset in TZ variable has the opposite sign to that
|
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_qpack.c | 2371 int sign = base < ricnt; in nghttp3_qpack_encoder_write_field_section_prefix() local 2372 uint64_t delta_base = sign ? ricnt - base - 1 : base - ricnt; in nghttp3_qpack_encoder_write_field_section_prefix() 2389 if (sign) { in nghttp3_qpack_encoder_write_field_section_prefix()
|