/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/ |
H A D | AVRAsmBackend.cpp | 33 namespace adjust { namespace 227 } // end of adjust namespace 244 // To handle both cases, we simply un-adjust the temporary label in adjustFixupValue() 255 adjust::fixup_7_pcrel(Size, Fixup, Value, Ctx); in adjustFixupValue() 258 adjust::fixup_13_pcrel(Size, Fixup, Value, Ctx); in adjustFixupValue() 261 adjust::fixup_call(Size, Fixup, Value, Ctx); in adjustFixupValue() 264 adjust::ldi::fixup(Size, Fixup, Value, Ctx); in adjustFixupValue() 267 adjust::ldi::lo8(Size, Fixup, Value, Ctx); in adjustFixupValue() 271 adjust::pm(Value); in adjustFixupValue() 272 adjust in adjustFixupValue() [all...] |
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | makesRGB.c | 82 double adjust; in main() local 104 adjust = adjust_lo; in main() 107 adjust = adjust_hi; in main() 110 adjust = adjust_mid; in main() 113 adjust = (adjust_mid + adjust_hi)/2; in main() 116 adjust = (adjust_mid + adjust_lo)/2; in main() 124 /* Calculate the table using the current 'adjust' */ in main() 131 calc = nearbyint((lo+adjust) * 256); in main() 178 printf("/* adjust (mid ): %f: %u -> %u */\n", adjust, ec_mi in main() [all...] |
/third_party/ffmpeg/tools/ |
H A D | normalize.py | 25 adjust = ref - float(loudness) variable 26 if abs(adjust) < 0.0001: 29 print "Adjust %s by %.1fdB" % (ifile, adjust) 30 norm_cmd = ['ffmpeg', '-i', ifile, '-af', 'volume=%fdB' % adjust]
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | glX_proto_send.py | 492 def common_emit_one_arg(self, p, pc, adjust, extra_offset): 500 % (pc, p.offset + adjust, p.size_string() )) 503 % (pc, p.offset + adjust, src_ptr, p.size_string() )) 506 % (pc, p.offset + adjust, extra_offset, src_ptr, p.size_string() )) 508 def common_emit_args(self, f, pc, adjust, skip_vla): 513 self.common_emit_one_arg(p, pc, adjust, extra_offset) 533 adjust = 8 535 adjust = 4 539 self.common_emit_one_arg(param, pc, adjust, None) 542 print('(void) memcpy((void *)(%s + %u), zero, 4);' % (pc, (param.offset + param.size()) + adjust)) [all...] |
/third_party/ltp/lib/ |
H A D | tst_wallclock.c | 46 static struct timespec mono_end, elapsed, adjust; in tst_wallclock_restore() local 59 adjust = tst_timespec_add(real_begin, elapsed); in tst_wallclock_restore() 63 if (tst_clock_settime(CLOCK_REALTIME, &adjust)) in tst_wallclock_restore()
|
/third_party/lame/libmp3lame/ |
H A D | quantize_pvt.c | 205 ATH formula for this wave: -5db. To adjust to LAME scaling, we need 342 FLOAT adjust, db; in iteration_init() local 376 adjust = powf(10.f, db * 0.1f); in iteration_init() 378 gfc->sv_qnt.longfact[i] = adjust; in iteration_init() 381 adjust = powf(10.f, db * 0.1f); in iteration_init() 383 gfc->sv_qnt.longfact[i] = adjust; in iteration_init() 386 adjust = powf(10.f, db * 0.1f); in iteration_init() 388 gfc->sv_qnt.longfact[i] = adjust; in iteration_init() 391 adjust = powf(10.f, db * 0.1f); in iteration_init() 393 gfc->sv_qnt.longfact[i] = adjust; in iteration_init() [all...] |
H A D | quantize.c | 385 break; /* nothing to adjust anymore */ in bin_search_StepSize() 1399 FLOAT masking_lower_db, adjust = 0.0; in VBR_old_prepare() local 1419 adjust = 1.28 / (1 + exp(3.5 - pe[gr][ch] / 300.)) - 0.05; in VBR_old_prepare() 1420 masking_lower_db = gfc->sv_qnt.mask_adjust - adjust; in VBR_old_prepare() 1423 adjust = 2.56 / (1 + exp(3.5 - pe[gr][ch] / 300.)) - 0.14; in VBR_old_prepare() 1424 masking_lower_db = gfc->sv_qnt.mask_adjust_short - adjust; in VBR_old_prepare() 1801 Since we are tracking the average bitrate, we should adjust in calc_target_bits() 1946 FLOAT adjust, masking_lower_db; in ABR_iteration_loop() local 1950 /* adjust = 1.28/(1+exp(3.5-pe[gr][ch]/300.))-0.05; */ in ABR_iteration_loop() 1951 adjust in ABR_iteration_loop() 2037 FLOAT adjust, masking_lower_db; CBR_iteration_loop() local [all...] |
/third_party/python/Lib/distutils/command/ |
H A D | build_scripts.py | 56 ie. starts with "\#!" and contains "python"), then adjust the first 63 adjust = False 91 adjust = True 94 if adjust:
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/ |
H A D | CoverageMappingWriter.cpp | 88 Counter adjust(Counter C) const { in adjust() function in __anon24296::CounterExpressionsMinimizer 156 writeCounter(MinExpressions, Minimizer.adjust(E.LHS), OS); in write() 157 writeCounter(MinExpressions, Minimizer.adjust(E.RHS), OS); in write() 179 Counter Count = Minimizer.adjust(I->Count); in write()
|
/third_party/ffmpeg/libavcodec/ |
H A D | libopenjpegdec.c | 258 int adjust[4]; in libopenjpeg_copy_to_packed16() local 260 adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift; in libopenjpeg_copy_to_packed16() 268 (unsigned)image->comps[c].data[index] << adjust[c]; in libopenjpeg_copy_to_packed16() 295 int adjust[4]; in libopenjpeg_copyto16() local 297 adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift; in libopenjpeg_copyto16() 305 (unsigned)*comp_data << adjust[index]; in libopenjpeg_copyto16()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftgloadr.c | 141 /* re-adjust the `current' outline fields */ 188 /* re-adjust the `current' subglyphs field */ 213 FT_Bool adjust = 0; in FT_BASE_DEF() local 251 adjust = 1; in FT_BASE_DEF() 273 adjust = 1; in FT_BASE_DEF() 277 if ( adjust ) in FT_BASE_DEF() 366 /* adjust contours count in newest outline */ in FT_GlyphLoader_Add()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_nist.c | 499 bn_addsub_f adjust; in BN_nist_mod_224() local 613 adjust = bn_sub_words; in BN_nist_mod_224() 632 adjust = carry ? bn_sub_words : bn_add_words; in BN_nist_mod_224() 637 res = ((*adjust) (c_d, r_d, _nist_p_224[0], BN_NIST_224_TOP) && carry) in BN_nist_mod_224() 671 bn_addsub_f adjust; in BN_nist_mod_256() local 857 adjust = bn_sub_words; in BN_nist_mod_256() 866 adjust = carry ? bn_sub_words : bn_add_words; in BN_nist_mod_256() 870 res = ((*adjust) (c_d, r_d, _nist_p_256[0], BN_NIST_256_TOP) && carry) in BN_nist_mod_256() 908 bn_addsub_f adjust; in BN_nist_mod_384() local 1129 adjust in BN_nist_mod_384() [all...] |
/third_party/openssl/crypto/bn/ |
H A D | bn_nist.c | 477 bn_addsub_f adjust; in BN_nist_mod_224() local 591 adjust = bn_sub_words; in BN_nist_mod_224() 610 adjust = carry ? bn_sub_words : bn_add_words; in BN_nist_mod_224() 615 res = ((*adjust) (c_d, r_d, _nist_p_224[0], BN_NIST_224_TOP) && carry) in BN_nist_mod_224() 649 bn_addsub_f adjust; in BN_nist_mod_256() local 835 adjust = bn_sub_words; in BN_nist_mod_256() 844 adjust = carry ? bn_sub_words : bn_add_words; in BN_nist_mod_256() 848 res = ((*adjust) (c_d, r_d, _nist_p_256[0], BN_NIST_256_TOP) && carry) in BN_nist_mod_256() 886 bn_addsub_f adjust; in BN_nist_mod_384() local 1107 adjust in BN_nist_mod_384() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_eq.c | 80 param->adjust = NULL; in check_values() 82 param->adjust = eq->process; in check_values() 84 param->adjust = apply_lut; in check_values() 257 if (i == 3 || !eq->param[i].adjust) in filter_frame() 262 eq->param[i].adjust(&eq->param[i], out->data[i], out->linesize[i], in filter_frame()
|
H A D | asrc_sinc.c | 248 float adjust = detect * ((delta < -detect * .7f) - (delta > detect * .7f)); in fir_to_phase() local 251 cum_2pi += adjust; in fir_to_phase() 255 adjust = detect * ((delta < -detect * .7f) - (delta > detect * .7f)); in fir_to_phase() 257 cum_1pi += fabsf(adjust); /* fabs for when 2pi and 1pi have combined */ in fir_to_phase()
|
H A D | vf_eq.h | 48 void (*adjust)(struct EQParameters *eq, uint8_t *dst, int dst_stride, member
|
H A D | vf_selectivecolor.c | 96 { color_name"s", "adjust "color_name" regions", OFFSET(opt_cmyk_adjust[range]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS } 299 static inline int comp_adjust(int scale, float value, float adjust, float k, int correction_method) in comp_adjust() argument 303 float res = (-1.f - adjust) * k - adjust; in comp_adjust()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | AnyTransliterator.java | 86 // adjust the offsets in line with the changes in handleTransliterate() 87 it.adjust(run.limit); in handleTransliterate() 121 public void adjust(int newCurrentLimit); in adjust() method 238 public void adjust(int newCurrentLimit) { in adjust() method in AnyTransliterator.ScriptRunIterator
|
/third_party/skia/docs/examples/ |
H A D | IRect_adjust.cpp | 8 rect.adjust(2, -1, 1, -2); in REG_FIDDLE()
|
/third_party/node/deps/brotli/c/enc/ |
H A D | compress_fragment.c | 90 const uint32_t adjust = 2 * BROTLI_MIN(uint32_t, histogram[i], 11u); in BuildAndStoreLiteralPrefixCode() local 91 histogram[i] += adjust; in BuildAndStoreLiteralPrefixCode() 92 histogram_total += adjust; in BuildAndStoreLiteralPrefixCode() 106 const uint32_t adjust = 1 + 2 * BROTLI_MIN(uint32_t, histogram[i], 11u); in BuildAndStoreLiteralPrefixCode() local 107 histogram[i] += adjust; in BuildAndStoreLiteralPrefixCode() 108 histogram_total += adjust; in BuildAndStoreLiteralPrefixCode()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | compress_fragment.c | 90 const uint32_t adjust = 2 * BROTLI_MIN(uint32_t, histogram[i], 11u); in BuildAndStoreLiteralPrefixCode() local 91 histogram[i] += adjust; in BuildAndStoreLiteralPrefixCode() 92 histogram_total += adjust; in BuildAndStoreLiteralPrefixCode() 106 const uint32_t adjust = 1 + 2 * BROTLI_MIN(uint32_t, histogram[i], 11u); in BuildAndStoreLiteralPrefixCode() local 107 histogram[i] += adjust; in BuildAndStoreLiteralPrefixCode() 108 histogram_total += adjust; in BuildAndStoreLiteralPrefixCode()
|
/third_party/node/deps/npm/node_modules/ip-address/dist/ |
H A D | ipv6.js | 338 const adjust = new jsbn_1.BigInteger('1'); 339 return Address6.fromBigInteger(this._startAddress().add(adjust)); 368 const adjust = new jsbn_1.BigInteger('1'); 369 return Address6.fromBigInteger(this._endAddress().subtract(adjust));
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_conversion_builder.h | 168 nir_ssa_def *adjust = nir_ishl(b, one, bits_to_lose); in nir_round_int_to_float() local 169 nir_ssa_def *mask = nir_inot(b, nir_isub(b, adjust, one)); in nir_round_int_to_float() 178 src, nir_uadd_sat(b, truncated, adjust)); in nir_round_int_to_float()
|
H A D | nir_lower_idiv.c | 228 nir_ssa_def *adjust = nir_iand(b, diff_sign, nir_ine(b, res, zero)); in convert_instr_small() local 229 res = nir_iadd(b, res, nir_bcsel(b, adjust, denom, zero)); in convert_instr_small()
|
/third_party/skia/tests/ |
H A D | PathOpsTestCommon.cpp | 21 const double adjust = sqrt(3.) / 36; in calc_t_div() local 35 double tDiv3 = precision / (adjust * dist); in calc_t_div()
|