/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/ |
D | AVRAsmBackend.cpp | 33 namespace adjust { namespace 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::ldi::lo8(Size, Fixup, Value, Ctx); in adjustFixupValue() 275 adjust::ldi::hi8(Size, Fixup, Value, Ctx); in adjustFixupValue() 279 adjust::pm(Value); in adjustFixupValue() [all …]
|
/third_party/libpng/contrib/tools/ |
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() 131 calc = nearbyint((lo+adjust) * 256); in main() 178 printf("/* adjust (mid ): %f: %u -> %u */\n", adjust, ec_mid, in main() 181 adjust_mid = adjust; in main() 184 else if (adjust < adjust_mid && error_count16 < ec_lo) in main() [all …]
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
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() 131 calc = nearbyint((lo+adjust) * 256); in main() 178 printf("/* adjust (mid ): %f: %u -> %u */\n", adjust, ec_mid, in main() 181 adjust_mid = adjust; in main() 184 else if (adjust < adjust_mid && error_count16 < ec_lo) in main() [all …]
|
/third_party/flutter/skia/third_party/externals/libpng/contrib/tools/ |
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() 131 calc = nearbyint((lo+adjust) * 256); in main() 178 printf("/* adjust (mid ): %f: %u -> %u */\n", adjust, ec_mid, in main() 181 adjust_mid = adjust; in main() 184 else if (adjust < adjust_mid && error_count16 < ec_lo) in main() [all …]
|
/third_party/boost/libs/convert/test/ |
D | spirit_converter.cpp | 74 (arg::adjust = cnv::adjust::left)).value()); in main() 77 (arg::adjust = cnv::adjust::left)).value()); in main() 78 BOOST_TEST( "x12xx" == convert<string>(12, cnv(arg::adjust = cnv::adjust::center)).value()); in main() 79 BOOST_TEST(L"x12xx" == convert<wstring>(12, cnv(arg::adjust = cnv::adjust::center)).value()); in main()
|
D | strtol_converter.cpp | 180 (arg::adjust = cnv::adjust::left)).value(); in test_width() 183 (arg::adjust = cnv::adjust::right)).value(); in test_width() 188 (arg::adjust = cnv::adjust::left)).value(); in test_width() 189 string s06 = convert<string>(-12.3450, cnv(arg::adjust = cnv::adjust::right)).value(); in test_width() 190 string s07 = convert<string>(-12.3450, cnv(arg::adjust = cnv::adjust::center)).value(); in test_width()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/ |
D | SDL_fillrect.c | 73 int adjust = 16 - ((uintptr_t)p & 15); \ 74 if (adjust < 16) { \ 75 n -= adjust; \ 76 adjust /= bpp; \ 77 while (adjust--) { \ 109 int adjust = 16 - ((uintptr_t)p & 15); in SDL_FillRect1SSE() local 110 if (adjust) { in SDL_FillRect1SSE() 111 n -= adjust; in SDL_FillRect1SSE() 112 SDL_memset(p, color, adjust); in SDL_FillRect1SSE() 113 p += adjust; in SDL_FillRect1SSE()
|
/third_party/ffmpeg/tools/ |
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/boost/boost/convert/ |
D | stream.hpp | 106 BOOST_CNV_PARAM(adjust, boost::cnv::adjust) in BOOST_CNV_PARAM() 108 cnv::adjust adjust = arg[cnv::parameter::adjust]; in BOOST_CNV_PARAM() local 110 /**/ if (adjust == cnv::adjust:: left) stream_.setf(std::ios::adjustfield, std::ios:: left); in BOOST_CNV_PARAM() 111 else if (adjust == cnv::adjust::right) stream_.setf(std::ios::adjustfield, std::ios::right); in BOOST_CNV_PARAM()
|
D | parameters.hpp | 12 enum class adjust { left, right, center }; enum 18 BOOST_PARAMETER_NAME(( adjust, type) adjust)
|
D | base.hpp | 83 BOOST_CNV_PARAM (adjust, cnv::adjust) { adjust_ = arg[ARG:: adjust]; return dncast(); } in BOOST_CNV_PARAM() 100 adjust_ (boost::cnv::adjust::right) in cnvbase() 140 int num_left = adjust_ == cnv::adjust::left ? 0 in to_str_() 141 : adjust_ == cnv::adjust::right ? num_fill in to_str_() 170 cnv::adjust adjust_;
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
D | glX_proto_send.py | 492 def common_emit_one_arg(self, p, pc, adjust, extra_offset): argument 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): argument 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/ |
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/boost/libs/hana/include/boost/hana/fwd/ |
D | adjust.hpp | 48 constexpr auto adjust = [](auto&& xs, auto&& value, auto&& f) { in __anon0c52de5b0102() variable 60 constexpr adjust_t adjust{};
|
/third_party/boost/boost/hana/fwd/ |
D | adjust.hpp | 48 constexpr auto adjust = [](auto&& xs, auto&& value, auto&& f) { in __anon8659f2280102() variable 60 constexpr adjust_t adjust{};
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/ |
D | CoverageMappingWriter.cpp | 88 Counter adjust(Counter C) const { in adjust() function in __anonf8ea1b860111::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/boost/boost/beast/core/impl/ |
D | buffers_adaptor.hpp | 104 adjust( 464 adjust(pos, n); in subrange() 472 adjust( in adjust() function in boost::beast::buffers_adaptor::subrange 494 auto adjust = (std::min)(pos, first_->size()); in adjust() local 495 if (adjust >= first_->size()) in adjust() 499 pos -= adjust; in adjust() 503 first_offset_ = adjust; in adjust()
|
/third_party/boost/libs/beast/include/boost/beast/core/impl/ |
D | buffers_adaptor.hpp | 104 adjust( 464 adjust(pos, n); in subrange() 472 adjust( in adjust() function in boost::beast::buffers_adaptor::subrange 494 auto adjust = (std::min)(pos, first_->size()); in adjust() local 495 if (adjust >= first_->size()) in adjust() 499 pos -= adjust; in adjust() 503 first_offset_ = adjust; in adjust()
|
/third_party/python/Lib/distutils/command/ |
D | build_scripts.py | 63 adjust = False 91 adjust = True 94 if adjust:
|
/third_party/flutter/skia/third_party/externals/freetype/src/base/ |
D | ftgloadr.c | 209 FT_Bool adjust = 0; in FT_GlyphLoader_CheckPoints() local 243 adjust = 1; in FT_GlyphLoader_CheckPoints() 261 adjust = 1; in FT_GlyphLoader_CheckPoints() 265 if ( adjust ) in FT_GlyphLoader_CheckPoints()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
D | ftgloadr.c | 213 FT_Bool adjust = 0; in FT_GlyphLoader_CheckPoints() local 251 adjust = 1; in FT_GlyphLoader_CheckPoints() 273 adjust = 1; in FT_GlyphLoader_CheckPoints() 277 if ( adjust ) in FT_GlyphLoader_CheckPoints()
|
/third_party/freetype/src/base/ |
D | ftgloadr.c | 213 FT_Bool adjust = 0; in FT_GlyphLoader_CheckPoints() local 251 adjust = 1; in FT_GlyphLoader_CheckPoints() 273 adjust = 1; in FT_GlyphLoader_CheckPoints() 277 if ( adjust ) in FT_GlyphLoader_CheckPoints()
|
/third_party/ffmpeg/libavcodec/ |
D | libopenjpegdec.c | 257 int adjust[4]; in libopenjpeg_copy_to_packed16() local 259 … adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift; in libopenjpeg_copy_to_packed16() 267 (unsigned)image->comps[c].data[index] << adjust[c]; in libopenjpeg_copy_to_packed16() 294 int adjust[4]; in libopenjpeg_copyto16() local 296 … adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift; in libopenjpeg_copyto16() 304 (unsigned)*comp_data << adjust[index]; in libopenjpeg_copyto16()
|
/third_party/libinput/doc/user/ |
D | trackpoint-configuration.rst | 55 model**, so proceed with caution. You must be capable/willing to adjust 57 to adjust the multiplier. If this does not apply, wait for someone else with 65 .. warning:: The multiplier is not a configuration to adjust to personal 69 To adjust the local multiplier, first 99 multiplier is good enough. If not, adjust the ``.quirks`` file and re-run the
|
/third_party/boost/boost/wave/cpplexer/re2clex/ |
D | strict_cpp.re | 338 BOOST_WAVE_UPDATE_CURSOR(); // adjust the input cursor 350 BOOST_WAVE_UPDATE_CURSOR(); // adjust the input cursor 375 BOOST_WAVE_UPDATE_CURSOR(); // adjust the input cursor 382 BOOST_WAVE_UPDATE_CURSOR(); // adjust the input cursor 391 BOOST_WAVE_UPDATE_CURSOR(); // adjust the input cursor 415 BOOST_WAVE_UPDATE_CURSOR(); // adjust the input cursor 423 BOOST_WAVE_UPDATE_CURSOR(); // adjust the input cursor 433 BOOST_WAVE_UPDATE_CURSOR(); // adjust the input cursor
|