/external/freetype/src/tools/ |
D | cordic.py | 7 shrink = 1.0 variable 26 shrink /= math.sqrt( 1 + x*x ) 29 print "shrink factor = " + repr( shrink ) 30 print "shrink factor 2 = " + repr( int( shrink * (2**32) ) ) 31 print "expansion factor = " + repr( 1/shrink )
|
/external/proguard/src/proguard/ |
D | ProGuard.java | 30 import proguard.shrink.Shrinker; 83 if (configuration.shrink || in execute() 92 configuration.shrink || in execute() 110 if (configuration.shrink) in execute() 112 shrink(); in execute() 133 if (configuration.shrink) in execute() 139 shrink(); in execute() 154 if (configuration.shrink || in execute() 266 private void shrink() throws IOException in shrink() method in ProGuard
|
/external/llvm-project/llvm/test/CodeGen/PowerPC/ |
D | ppc64-sibcall-shrinkwrap.ll | 1 … %s -mtriple=powerpc64-unknown-linux-gnu -disable-ppc-sco=false --enable-shrink-wrap=false | FileC… 2 … %s -mtriple=powerpc64-unknown-linux-gnu -disable-ppc-sco=false --enable-shrink-wrap=true | FileCh… 3 …s -mtriple=powerpc64le-unknown-linux-gnu -disable-ppc-sco=false --enable-shrink-wrap=false | FileC… 4 …s -mtriple=powerpc64le-unknown-linux-gnu -disable-ppc-sco=false --enable-shrink-wrap=true | FileCh… 5 ; Edit: D63152 prevents stack popping before loads and stores, so shrink-wrap does nothing here
|
/external/skia/src/core/ |
D | SkAutoMalloc.h | 51 void* reset(size_t size = 0, OnShrink shrink = kAlloc_OnShrink) { 52 if (size != fSize && (size > fSize || kReuse_OnShrink != shrink)) { 132 SkAutoMalloc::OnShrink shrink = SkAutoMalloc::kAlloc_OnShrink, 135 bool alloc = size != fSize && (SkAutoMalloc::kAlloc_OnShrink == shrink || size > fSize);
|
/external/skqp/src/core/ |
D | SkAutoMalloc.h | 51 void* reset(size_t size = 0, OnShrink shrink = kAlloc_OnShrink) { 52 if (size != fSize && (size > fSize || kReuse_OnShrink != shrink)) { 133 SkAutoMalloc::OnShrink shrink = SkAutoMalloc::kAlloc_OnShrink, 136 bool alloc = size != fSize && (SkAutoMalloc::kAlloc_OnShrink == shrink || size > fSize);
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | disable-shrink-store.ll | 2 ; RUN: llc < %s -mtriple=x86_64-- -combiner-shrink-load-replace-store-with-store=false | FileCheck … 4 define void @shrink(i16* %ptr) { 5 ; CHECK-LABEL: shrink:
|
D | late-address-taken.ll | 1 ; RUN: llc -mtriple=x86_64-pc-windows-msvc < %s -enable-shrink-wrap=false | FileCheck %s 2 ; Make sure shrink-wrapping does not break the lowering of exception handling. 3 ; RUN: llc -mtriple=x86_64-pc-windows-msvc < %s -enable-shrink-wrap=true -pass-remarks-output=%t | … 41 ; REMARKS: Pass: shrink-wrap
|
/external/llvm-project/compiler-rt/test/fuzzer/ |
D | shrink.test | 3 …1 -exit_on_item=0eb8e4ed029b774d80f2b66408203801cb982a60 -runs=2000000 -shrink=1 -reduce_inputs=0… 5 …=1 -exit_on_item=0eb8e4ed029b774d80f2b66408203801cb982a60 -runs=1000000 -shrink=0 -reduce_inputs=0… 6 …d=1 -exit_on_item=aea2e3923af219a8956f626558ef32f30a914ebc -runs=100000 -shrink=1 -reduce_inputs=0…
|
/external/llvm/test/CodeGen/PowerPC/ |
D | ppc64-sibcall-shrinkwrap.ll | 1 ; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -disable-ppc-sco=false --enable-shrink-wrap=fa… 2 ; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -disable-ppc-sco=false --enable-shrink-wrap=tr… 3 ; RUN: llc < %s -mtriple=powerpc64le-unknown-linux-gnu -disable-ppc-sco=false --enable-shrink-wrap=… 4 ; RUN: llc < %s -mtriple=powerpc64le-unknown-linux-gnu -disable-ppc-sco=false --enable-shrink-wrap=…
|
/external/webrtc/modules/desktop_capture/win/ |
D | window_capture_utils.cc | 112 const int shrink = ((width - result->width()) / 2); in GetWindowContentRect() local 114 result->Extend(shrink, 0, shrink, 0); in GetWindowContentRect() 117 if (result->height() > shrink * 2) { in GetWindowContentRect() 118 result->Extend(0, shrink, 0, shrink); in GetWindowContentRect()
|
/external/llvm-project/clang/lib/AST/Interp/ |
D | InterpStack.h | 39 shrink(aligned_size<T>()); in pop() 47 shrink(aligned_size<T>()); in discard() 77 void shrink(size_t Size);
|
/external/flac/src/test_libFLAC/ |
D | matrix | 49 a:shrink A->30 write nopad 55 d:shrink A->37 write pad 57 e:shrink A->33 write pad 59 f:shrink A->20 write pad
|
/external/flatbuffers/tests/fuzzer/ |
D | readme.md | 32 `./verifier_fuzzer -reduce_depth=1 -use_value_profile=1 -shrink=1 ../.corpus_verifier/` 34 `./parser_fuzzer -reduce_depth=1 -use_value_profile=1 -shrink=1 ../.corpus_parser/` 36 `./scalar_fuzzer -reduce_depth=1 -use_value_profile=1 -shrink=1 -max_len=3000 ../.corpus_parser/ ..… 39 `./scalar_fuzzer -only_ascii=1 -reduce_depth=1 -use_value_profile=1 -shrink=1 -max_len=3000 -timeou… 42 …ALE="ru_RU.CP1251" ./scalar_fuzzer -reduce_depth=1 -use_value_profile=1 -shrink=1 -max_len=3000 -t…
|
/external/python/cpython2/Lib/test/ |
D | tokenize_tests.txt | 74 x = "doesn't \"shrink\" does it" 75 y = 'doesn\'t "shrink" does it' 76 x = "does \"shrink\" doesn't it" 77 y = 'does "shrink" doesn\'t it'
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | modernize-shrink-to-fit.rst | 1 .. title:: clang-tidy - modernize-shrink-to-fit 3 modernize-shrink-to-fit
|
/external/python/cpython3/Lib/test/ |
D | tokenize_tests.txt | 74 x = "doesn't \"shrink\" does it" 75 y = 'doesn\'t "shrink" does it' 76 x = "does \"shrink\" doesn't it" 77 y = 'does "shrink" doesn\'t it'
|
/external/skqp/src/gpu/ |
D | GrRectanizer_skyline.cpp | 89 int shrink = fSkyline[i-1].fX + fSkyline[i-1].fWidth - fSkyline[i].fX; in addSkylineLevel() local 91 fSkyline[i].fX += shrink; in addSkylineLevel() 92 fSkyline[i].fWidth -= shrink; in addSkylineLevel()
|
/external/skia/src/gpu/ |
D | GrRectanizerSkyline.cpp | 91 int shrink = fSkyline[i-1].fX + fSkyline[i-1].fWidth - fSkyline[i].fX; in addSkylineLevel() local 93 fSkyline[i].fX += shrink; in addSkylineLevel() 94 fSkyline[i].fWidth -= shrink; in addSkylineLevel()
|
/external/llvm/test/CodeGen/MIR/X86/ |
D | frame-info-save-restore-points.mir | 1 # RUN: llc -march=x86-64 -enable-shrink-wrap=true -start-after shrink-wrap -stop-after shrink-wrap …
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/vmscan/mm_shrink_slab_end/ |
D | format | 10 field:void * shrink; offset:16; size:8; signed:0; 16 …%ld new scan count %ld total_scan %ld last shrinker return val %d", REC->shrink, REC->shr, REC->un…
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/vmscan/mm_shrink_slab_end/ |
D | format | 10 field:void * shrink; offset:12; size:4; signed:0; 16 …%ld new scan count %ld total_scan %ld last shrinker return val %d", REC->shrink, REC->shr, REC->un…
|
/external/llvm-project/llvm/test/CodeGen/AArch64/ |
D | wineh_shrinkwrap.mir | 1 # RUN: llc -O2 -o - %s -mtriple=aarch64-windows -start-before=shrink-wrap \ 3 # RUN: llc -O2 -o - %s -mtriple=aarch64-linux -start-before=shrink-wrap \ 6 # This tests checks that shrink wrapping bails out on Windows AMR64 due to the 9 # The same test gets shrink wrapped on Linux ARM64. 21 ; ModuleID = 'shrink.cpp'
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/vmscan/mm_shrink_slab_end/ |
D | format | 11 field:void * shrink; offset:16; size:4; signed:0; 17 …%ld new scan count %ld total_scan %ld last shrinker return val %d", REC->shrink, REC->shr, REC->un…
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/vmscan/mm_shrink_slab_end/ |
D | format | 11 field:void * shrink; offset:24; size:8; signed:0; 17 …%ld new scan count %ld total_scan %ld last shrinker return val %d", REC->shrink, REC->shr, REC->ni…
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/vmscan/mm_shrink_slab_start/ |
D | format | 10 field:void * shrink; offset:16; size:8; signed:0; 19 …t: "%pF %p: objects to shrink %ld gfp_flags %s pgs_scanned %ld lru_pgs %ld cache items %ld delta %…
|