/third_party/skia/third_party/externals/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 )
|
/third_party/littlefs/scripts/ |
D | tailpipe.py | 75 shrink = LinesIO.canvas_lines - len(self.lines) 76 if shrink > 0: 77 for i in range(shrink): 79 if shrink-1-i > 0: 80 sys.stdout.write('\x1b[%dA' % (shrink-1-i)) 82 if shrink-1-i > 0: 83 sys.stdout.write('\x1b[%dB' % (shrink-1-i)) 84 sys.stdout.write('\x1b[%dA' % shrink)
|
D | watch.py | 111 shrink = LinesIO.canvas_lines - len(self.lines) 112 if shrink > 0: 113 for i in range(shrink): 115 if shrink-1-i > 0: 116 sys.stdout.write('\x1b[%dA' % (shrink-1-i)) 118 if shrink-1-i > 0: 119 sys.stdout.write('\x1b[%dB' % (shrink-1-i)) 120 sys.stdout.write('\x1b[%dA' % shrink)
|
D | tracebd.py | 97 shrink = LinesIO.canvas_lines - len(self.lines) 98 if shrink > 0: 99 for i in range(shrink): 101 if shrink-1-i > 0: 102 sys.stdout.write('\x1b[%dA' % (shrink-1-i)) 104 if shrink-1-i > 0: 105 sys.stdout.write('\x1b[%dB' % (shrink-1-i)) 106 sys.stdout.write('\x1b[%dA' % shrink)
|
D | plot.py | 211 shrink = LinesIO.canvas_lines - len(self.lines) 212 if shrink > 0: 213 for i in range(shrink): 215 if shrink-1-i > 0: 216 sys.stdout.write('\x1b[%dA' % (shrink-1-i)) 218 if shrink-1-i > 0: 219 sys.stdout.write('\x1b[%dB' % (shrink-1-i)) 220 sys.stdout.write('\x1b[%dA' % shrink)
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ms-feature-ranges.cc | 36 feature_records.shrink(0); in hb_ms_setup_features() 37 range_records.shrink(0); in hb_ms_setup_features() 145 range_features.shrink (0); in hb_ms_make_feature_ranges() 146 range_counts.shrink (0); in hb_ms_make_feature_ranges() 163 range_features.shrink (0); in hb_ms_make_feature_ranges() 164 range_counts.shrink (0); in hb_ms_make_feature_ranges()
|
D | hb-ot-map.cc | 217 feature_infos.shrink (j + 1); in compile() 293 feature_infos.shrink (0); /* Done with these */ in compile() 339 m.lookups[table_index].shrink (j + 1); in compile()
|
D | hb-aat-map.cc | 95 features.shrink (j + 1); in compile()
|
D | hb-priority-queue.hh | 69 heap.shrink (heap.length - 1); in pop_minimum()
|
/third_party/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);
|
/third_party/json/tests/thirdparty/Fuzzer/test/ |
D | shrink.test | 1 …1 -exit_on_item=0eb8e4ed029b774d80f2b66408203801cb982a60 -runs=1000000 -shrink=1 2>&1 | FileCheck… 2 …=1 -exit_on_item=0eb8e4ed029b774d80f2b66408203801cb982a60 -runs=1000000 -shrink=0 2>&1 | FileCheck… 3 …d=1 -exit_on_item=aea2e3923af219a8956f626558ef32f30a914ebc -runs=100000 -shrink=1 -use_value_profi…
|
/third_party/python/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'
|
/third_party/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()
|
/third_party/ffmpeg/libavcodec/ |
D | mpegvideoencdsp.c | 238 c->shrink[0] = av_image_copy_plane; in ff_mpegvideoencdsp_init() 239 c->shrink[1] = shrink22; in ff_mpegvideoencdsp_init() 240 c->shrink[2] = shrink44; in ff_mpegvideoencdsp_init() 241 c->shrink[3] = shrink88; in ff_mpegvideoencdsp_init()
|
D | mpegvideoencdsp.h | 40 void (*shrink[4])(uint8_t *dst, int dst_wrap, const uint8_t *src, member
|
/third_party/libcoap/src/ |
D | coap_pdu.c | 574 size_t shrink = 0; in coap_insert_option() local 602 pdu->used_size + shift - shrink)) in coap_insert_option() 622 shrink = 1; in coap_insert_option() 629 shrink = 2; in coap_insert_option() 634 shrink = 1; in coap_insert_option() 641 memmove(&option[shift], &option[shrink], in coap_insert_option() 642 pdu->used_size - (option - pdu->token) - shrink); in coap_insert_option() 647 if (shift >= shrink) { in coap_insert_option() 648 pdu->used_size += shift - shrink; in coap_insert_option() 650 pdu->data += shift - shrink; in coap_insert_option() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactorDebugInfo.cpp | 157 auto shrink = [this](size_t newsize) { in syncScope() local 172 shrink(backtrace.size()); in syncScope() 185 shrink(i); in syncScope() 198 shrink(i + 1); in syncScope()
|
/third_party/skia/third_party/externals/angle2/third_party/proguard/ |
D | README.chromium | 10 This directory includes proguard.jar to allow Chromium to shrink, optimize java
|
/third_party/node/deps/v8/ |
D | .clang-tidy | 6 modernize-shrink-to-fit,
|
/third_party/skia/demos.skia.org/demos/textedit/ |
D | textapi_utils.js | 548 const shrink = Math.min(N, s._length - skip); 549 ASSERT(shrink > 0); 550 s._length -= shrink; 551 N -= shrink;
|
/third_party/skia/modules/canvaskit/npm_build/ |
D | textapi_utils.js | 569 const shrink = Math.min(N, s._length - skip); 570 ASSERT(shrink > 0); 571 s._length -= shrink; 572 N -= shrink;
|
/third_party/node/deps/icu-small/ |
D | README-FULL-ICU.txt | 1 ICU sources - auto generated by shrink-icu-src.py
|
/third_party/skia/modules/skplaintexteditor/include/ |
D | stringslice.h | 36 void shrink() { this->realloc(fLength); } in shrink() function
|
/third_party/node/ |
D | pyproject.toml | 42 "tools/icu/shrink-icu-src.py" = ["W605"]
|
/third_party/json/tests/thirdparty/Fuzzer/ |
D | FuzzerFlags.def | 54 FUZZER_FLAG_INT(shrink, 0, "Experimental. Try to shrink corpus elements.")
|