/third_party/vk-gl-cts/framework/common/ |
H A D | tcuInterval.hpp | 191 // Same sign. Substracting low from high should be safe. in midpoint() 216 int sign (const Interval& x);
|
/third_party/ffmpeg/libavcodec/ |
H A D | adpcmenc.c | 247 const int sign = (delta < 0) * 8; in adpcm_ima_alp_compress_sample() local 251 if (sign) in adpcm_ima_alp_compress_sample() 254 nibble = sign | nibble; in adpcm_ima_alp_compress_sample()
|
H A D | vp56.c | 98 int delta, sign = vp56_rac_get(c); in vp56_parse_mb_type_models() local 104 model->mb_types_stats[ctx][type][i] += (delta ^ -sign) + sign; in vp56_parse_mb_type_models()
|
H A D | takdec.c | 334 /* mode += sign ? (1 - c) : (c - 1) */ in decode_residues() 335 int sign = get_bits1(gb); in decode_residues() local 336 mode += (-sign ^ (c - 1)) + sign; in decode_residues()
|
/third_party/ffmpeg/libavformat/ |
H A D | mpeg.c | 872 int sign = 1, hh = 0, mm = 0, ss = 0, ms = 0; in vobsub_read_header() local 878 sign = *p == '-' ? -1 : 1; in vobsub_read_header() 882 delay = ((hh*3600LL + mm*60LL + ss) * 1000LL + ms) * sign; in vobsub_read_header()
|
/third_party/node/deps/openssl/openssl/ssl/statem/ |
H A D | extensions.c | 1492 unsigned char *binderout, SSL_SESSION *sess, int sign, in tls_psk_do_binder() 1639 if (!sign) in tls_psk_do_binder() 1652 if (sign) { in tls_psk_do_binder() 1490 tls_psk_do_binder(SSL *s, const EVP_MD *md, const unsigned char *msgstart, size_t binderoffset, const unsigned char *binderin, unsigned char *binderout, SSL_SESSION *sess, int sign, int external) tls_psk_do_binder() argument
|
/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitNativeX86_64.c | 1021 static sljit_s32 emit_mov_int(struct sljit_compiler *compiler, sljit_s32 sign, in emit_mov_int() argument 1032 if (sign || ((sljit_uw)srcw <= 0x7fffffff)) { in emit_mov_int() 1053 if (sign) { in emit_mov_int()
|
/third_party/openssl/ssl/statem/ |
H A D | extensions.c | 1460 unsigned char *binderout, SSL_SESSION *sess, int sign, in tls_psk_do_binder() 1607 if (!sign) in tls_psk_do_binder() 1620 if (sign) { in tls_psk_do_binder() 1458 tls_psk_do_binder(SSL *s, const EVP_MD *md, const unsigned char *msgstart, size_t binderoffset, const unsigned char *binderin, unsigned char *binderout, SSL_SESSION *sess, int sign, int external) tls_psk_do_binder() argument
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | webpinfo.c | 230 int sign; in GetSignedBits() local 232 if (!GetBits(data, data_size, 1, &sign, bit_pos)) return 0; in GetSignedBits() 233 if (sign) *val = -(*val); in GetSignedBits()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | enc.c | 659 const int sign = (in[j] < 0); in QuantizeBlock_C() local 660 const uint32_t coeff = (sign ? -in[j] : in[j]) + mtx->sharpen_[j]; in QuantizeBlock_C() 667 if (sign) level = -level; in QuantizeBlock_C()
|
H A D | enc_mips_dsp_r2.c | 1197 "shra.ph %[sign], %[temp1], 15 \n\t" \ 1216 "andi %[temp6], %[sign], 0xffff \n\t" \ 1232 "srl %[temp6], %[sign], 16 \n\t" \ 1260 "xor %[level], %[level], %[sign] \n\t" \ 1261 "subu.ph %[level], %[level], %[sign] \n\t" \ 1278 int sign, coeff, level; in QuantizeBlock_MIPSdspR2() local 1304 [sign]"=&r"(sign), [coeff]"=&r"(coeff), in QuantizeBlock_MIPSdspR2()
|
H A D | enc_neon.c | 832 const int16x8_t sign = vshrq_n_s16(a, 15); // sign in Quantize_NEON() local 841 const int16x8_t c2 = veorq_s16(vreinterpretq_s16_u16(c1), sign); in Quantize_NEON() 842 const int16x8_t c3 = vsubq_s16(c2, sign); // restore sign in Quantize_NEON()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | frame_enc.c | 246 const int sign = c < 0; in PutCoeffs() local 247 int v = sign ? -c : c; in PutCoeffs() 301 VP8PutBitUniform(bw, sign); in PutCoeffs()
|
/third_party/skia/third_party/externals/freetype/src/cff/ |
H A D | cffparse.c | 257 FT_Int sign = 0, exponent_sign = 0, have_overflow = 0; in cff_parse_real() local 294 sign = 1; in cff_parse_real() 498 if ( sign ) in cff_parse_real()
|
/third_party/python/Lib/test/ |
H A D | test_fractions.py | 197 # Denominators don't need a sign. 786 i, lasts, s, fact, num, sign = 0, 0, F(1), 1, 1, 1 792 sign *= -1 793 s += num / fact * sign
|
/third_party/vulkan-loader/loader/ |
H A D | cJSON.c | 97 double n = 0, sign = 1, scale = 0; in parse_number() local 100 if (*num == '-') sign = -1, num++; /* Has sign? */ in parse_number() 116 signsubscale = -1, num++; /* With sign? */ in parse_number() 120 n = sign * n * pow(10.0, (scale + subscale * signsubscale)); /* number = +/- in parse_number()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | celt_pvq_search.asm | 339 andps m1, m2 ; m1 = sign(X[i]) 340 orps m0, m1 ; m0 = Y[i]*sign
|
/third_party/glslang/SPIRV/ |
H A D | hex_float.h | 188 // 1 sign bit, 8 exponent bits, 23 fractional bits. 202 // 1 sign bit, 11 exponent bits, 52 fractional bits. 216 // 1 sign bit, 5 exponent bits, 10 fractional bits. 291 // The bit that is used as a sign. 314 // Returns the bits associated with the value, without the leading sign bit. 619 // zero out any underflowing value (but retain the sign). in castTo() 668 const char* const sign = (bits & HF::sign_mask) ? "-" : ""; in operator <<() local 711 os << sign << "0x" << (is_zero ? '0' : '1'); in operator <<() 727 // input stream is a plus or minus sign. In that case we also set the fail bit
|
/third_party/FreeBSD/contrib/gdtoa/ |
H A D | misc.c | 81 rv->sign = rv->wds = 0; 557 c->sign = i; 719 d0 &= 0x7fffffff; /* clear sign bit, which we ignore */
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_bld_interp.c | 697 coeff_type.sign = TRUE; in lp_build_interp_soa_init() 703 setup_type.sign = TRUE; in lp_build_interp_soa_init()
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ec_local.h | 594 void ossl_ec_GFp_nistp_recode_scalar_bits(unsigned char *sign, 648 int (*sign)(int type, const unsigned char *dgst, int dlen, unsigned char member
|
/third_party/openssl/crypto/ec/ |
H A D | ec_local.h | 594 void ossl_ec_GFp_nistp_recode_scalar_bits(unsigned char *sign, 648 int (*sign)(int type, const unsigned char *dgst, int dlen, unsigned char member
|
/third_party/skia/samplecode/ |
H A D | SampleClip.cpp | 195 SkScalar sign = test*this->eval(diagMax.fX, diagMin.fY); in test() local 196 if (sign > 0) { in test()
|
/third_party/openssl/ohos_lite/crypto/ec/ |
H A D | ec_local.h | 580 void ec_GFp_nistp_recode_scalar_bits(unsigned char *sign, 616 int (*sign)(int type, const unsigned char *dgst, int dlen, unsigned char member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | APFloat.h | 95 /// Non-zero finite numbers are represented internally as a sign bit, a 16-bit 102 /// significant bit of the significand set. The sign of zeroes and infinities 105 /// for zero exponent, all 1 bits for infinity exponent. For NaNs the sign and 299 /// \brief A static helper to produce a copy of an APFloat value with its sign 352 bool isNegative() const { return sign; } in isNegative() 583 /// Only 2 bits are required, but VisualStudio incorrectly sign extends it. 588 unsigned int sign : 1;
|