/external/toolchain-utils/binary_search_tool/ |
D | README.bisect | 2 bisect.py is a wrapper around the general purpose 17 This method will bisect across all packages in a ChromeOS repository and find 21 board: The board to bisect on. For example: daisy, falco, etc. 35 bisect.py does most cleanup for you, the only 55 ./bisect.py package daisy 172.17.211.184 58 ./bisect.py package daisy 172.17.211.184 -t cros_pkg/boot_test.sh 61 This method will bisect across all objects in a ChromeOS package and find 65 board: The board to bisect on. For example: daisy, falco, etc. 67 package: The package to bisect with. For example: chromeos-chrome 113 ./bisect.py object daisy 172.17.211.184 cryptohome [all …]
|
D | MAINTENANCE | 24 specifically test binary_search_state.py, binary_search_perforce.py, bisect.py. 36 the majority of it isn't even used to bisect object files. The file was 37 originally intended to bisect CLs, and binary_search_state.py just reused 47 bisect, you have to run scripts/edit sources in this repo. Ideally these 48 scripts would be static, and if you wanted to bisect/make changes you would 65 binary_search_state.py and bisect.py both have to have near identical 66 arguments in order to support argument overriding in bisect.py. However 67 they do have to be slightly different. Mainly, bisect.py needs to have no
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Other/ |
D | opt-bisect-legacy-pass-manager.ll | 19 ; RUN: opt -O3 -opt-bisect-limit=0 < %s | llc -O3 -opt-bisect-limit=0 22 ; Verify that no skippable passes are run with -opt-bisect-limit=0. 24 ; RUN: opt -disable-output -disable-verify -O3 -opt-bisect-limit=0 %s 2>&1 \ 31 ; RUN: opt -opt-bisect-limit=0 < %s 2>&1 | FileCheck %s --check-prefix=OPTBISECT-O0 37 ; Verify that we can use the opt-bisect-helper.py script (derived from 38 ; utils/bisect) to locate the optimization that inlines the call to 41 ; RUN: %python %S/opt-bisect-helper.py --start=0 --end=256 --optcmd=opt \ 54 ; RUN: opt -disable-output -disable-verify -deadargelim -opt-bisect-limit=-1 %s \ 58 ; RUN: opt -disable-output -disable-verify -deadargelim -opt-bisect-limit=0 %s \ 65 ; RUN: opt -disable-output -disable-verify -inline -opt-bisect-limit=-1 %s \ [all …]
|
/external/llvm/test/Other/ |
D | opt-bisect-legacy-pass-manager.ll | 18 ; RUN: opt -O3 -opt-bisect-limit=0 < %s | llc -O3 -opt-bisect-limit=0 21 ; Verify that no skippable passes are run with -opt-bisect-limit=0. 23 ; RUN: opt -disable-output -disable-verify -O3 -opt-bisect-limit=0 %s 2>&1 \ 30 ; RUN: opt -opt-bisect-limit=0 < %s 2>&1 | FileCheck %s --check-prefix=OPTBISECT-O0 36 ; Verify that we can use the opt-bisect-helper.py script (derived from 37 ; utils/bisect) to locate the optimization that inlines the call to 40 ; RUN: %python %S/opt-bisect-helper.py --start=0 --end=256 --optcmd=opt \ 53 ; RUN: opt -disable-output -disable-verify -deadargelim -opt-bisect-limit=-1 %s \ 57 ; RUN: opt -disable-output -disable-verify -deadargelim -opt-bisect-limit=0 %s \ 64 ; RUN: opt -disable-output -disable-verify -inline -opt-bisect-limit=-1 %s \ [all …]
|
/external/python/cpython3/Doc/library/ |
D | bisect.rst | 1 :mod:`bisect` --- Array bisection algorithm 4 .. module:: bisect 10 **Source code:** :source:`Lib/bisect.py` 17 approach. The module is called :mod:`bisect` because it uses a basic bisection 38 bisect(a, x, lo=0, hi=len(a)) 50 ``a.insert(bisect.bisect_left(a, x, lo, hi), x)`` assuming that *a* is 64 bisect to build a full-featured collection class with straight-forward search 72 The above :func:`bisect` functions are useful for finding insertion points but 118 The :func:`bisect` function can be useful for numeric table lookups. This 119 example uses :func:`bisect` to look up a letter grade for an exam score (say) [all …]
|
/external/python/cpython2/Doc/library/ |
D | bisect.rst | 1 :mod:`bisect` --- Array bisection algorithm 4 .. module:: bisect 12 **Source code:** :source:`Lib/bisect.py` 19 approach. The module is called :mod:`bisect` because it uses a basic bisection 40 bisect(a, x, lo=0, hi=len(a)) 52 ``a.insert(bisect.bisect_left(a, x, lo, hi), x)`` assuming that *a* is 66 bisect to build a full-featured collection class with straight-forward search 74 The above :func:`bisect` functions are useful for finding insertion points but 120 The :func:`bisect` function can be useful for numeric table lookups. This 121 example uses :func:`bisect` to look up a letter grade for an exam score (say) [all …]
|
/external/skia/tools/viewer/ |
D | BisectSlide.cpp | 28 sk_sp<BisectSlide> bisect(new BisectSlide(filepath)); in Create() local 29 if (bisect->fFilePath.endsWith(".svg")) { in Create() 41 svg->setContainerSize(SkSize::Make(bisect->getDimensions())); in Create() 42 svg->render(bisect.get()); in Create() 52 skp->playback(bisect.get()); in Create() 55 return bisect; in Create()
|
/external/skqp/tools/viewer/ |
D | BisectSlide.cpp | 28 sk_sp<BisectSlide> bisect(new BisectSlide(filepath)); in Create() local 29 if (bisect->fFilePath.endsWith(".svg")) { in Create() 41 svg->setContainerSize(SkSize::Make(bisect->getDimensions())); in Create() 42 svg->render(bisect.get()); in Create() 52 skp->playback(bisect.get()); in Create() 55 return bisect; in Create()
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | OptBisect.rst | 2 Using -opt-bisect-limit to debug optimization errors 11 The -opt-bisect-limit option provides a way to disable all optimization passes 19 check the opt-bisect limit before performing optimizations. Passes which 25 The -opt-bisect-limit option can be used with any tool, including front ends 39 The -opt-bisect-limit command line option can be passed directly to tools such 44 <tool name> [other options] -opt-bisect-limit=<limit> 50 opt-bisect-limit. All optimizations with a higher index value will be skipped. 52 In order to use the -opt-bisect-limit option with a driver that provides a 60 clang -O2 -mllvm -opt-bisect-limit=256 my_file.c 62 The -opt-bisect-limit option may also be applied to link-time optimizations by [all …]
|
/external/libyuv/files/tools/ |
D | OWNERS | 19 per-file bisect*.py=anantha@chromium.org 20 per-file bisect*.py=prasadv@chromium.org 21 per-file bisect*.py=robertocn@chromium.org 22 per-file run-bisect*.py=prasadv@chromium.org 23 per-file run-bisect*.py=robertocn@chromium.org 24 per-file prepare-bisect*.py=prasadv@chromium.org 25 per-file prepare-bisect*.py=robertocn@chromium.org
|
/external/tremolo/Tremolo/ |
D | vorbisfile.c | 219 ogg_int64_t bisect; in _bisect_forward_serialno() local 222 bisect=searched; in _bisect_forward_serialno() 224 bisect=(searched+endsearched)/2; in _bisect_forward_serialno() 227 _seek_helper(vf,bisect); in _bisect_forward_serialno() 231 endsearched=bisect; in _bisect_forward_serialno() 1196 ogg_int64_t bisect; in ov_pcm_seek_page() local 1199 bisect=begin; in ov_pcm_seek_page() 1202 bisect=begin + in ov_pcm_seek_page() 1204 if(bisect<=begin) in ov_pcm_seek_page() 1205 bisect=begin+1; in ov_pcm_seek_page() [all …]
|
/external/syzkaller/tools/syz-bisect/ |
D | bisect.go | 59 cfg := &bisect.Config{ 64 Kernel: bisect.KernelConfig{ 71 Syzkaller: bisect.SyzkallerConfig{ 81 bisect.Run(cfg)
|
/external/python/cpython2/Misc/NEWS.d/next/Tests/ |
D | 2018-05-30-00-39-57.bpo-29512.EHrDzs.rst | 1 Rename Lib/test/bisect.py to Lib/test/bisect_cmd.py. The old name was in 2 conflict with Lib/bisect.py, causing test failures, depending how tests
|
/external/autotest/client/common_lib/cros/ |
D | string_utils.py | 11 import bisect 62 index = bisect.bisect_right(length_list,
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Other/X86/ |
D | opt-bisect-isel.ll | 2 ; when the -opt-bisect-limit=0 option is used. In particular, the X86 6 ; RUN: llc -O3 -opt-bisect-limit=0 -o - %s | FileCheck %s
|
/external/llvm/test/Other/X86/ |
D | opt-bisect-isel.ll | 2 ; when the -opt-bisect-limit=0 option is used. In particular, the X86 6 ; RUN: llc -O3 -opt-bisect-limit=0 -o - %s | FileCheck %s
|
/external/ImageMagick/MagickCore/ |
D | quantize.c | 769 bisect; in ClassifyImageColors() local 835 bisect=((double) QuantumRange+1.0)/2.0; in ClassifyImageColors() 843 bisect*=0.5; in ClassifyImageColors() 845 mid.red+=(id & 1) != 0 ? bisect : -bisect; in ClassifyImageColors() 846 mid.green+=(id & 2) != 0 ? bisect : -bisect; in ClassifyImageColors() 847 mid.blue+=(id & 4) != 0 ? bisect : -bisect; in ClassifyImageColors() 848 mid.alpha+=(id & 8) != 0 ? bisect : -bisect; in ClassifyImageColors() 942 bisect=((double) QuantumRange+1.0)/2.0; in ClassifyImageColors() 950 bisect*=0.5; in ClassifyImageColors() 952 mid.red+=(id & 1) != 0 ? bisect : -bisect; in ClassifyImageColors() [all …]
|
/external/python/cpython2/Lib/multiprocessing/ |
D | heap.py | 35 import bisect 115 i = bisect.bisect_left(self._lengths, size) 160 bisect.insort(self._lengths, length)
|
/external/python/cpython2/Lib/ |
D | mhlib.py | 85 from bisect import bisect 395 i = bisect(all, anchor) 398 i = bisect(all, anchor-1) 405 i = bisect(all, begin-1) 406 j = bisect(all, end) 445 i = bisect(all, n) 452 i = bisect(all, n-1)
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
D | sancov.py | 7 import bisect 160 map_idx = bisect.bisect(mem_map_keys, pc) - 1
|
/external/python/cpython3/Lib/multiprocessing/ |
D | heap.py | 10 import bisect 129 i = bisect.bisect_left(self._lengths, size) 174 bisect.insort(self._lengths, length)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | replace_unsupported_masked_mem_intrin.ll | 4 ; RUN: llc -O2 -opt-bisect-limit=0 -mtriple=x86_64-unknown-linux-gnu -mattr=+sse,+sse2 < %s -o /dev… 6 ; because of opt-bisect-limit that in turn causes crash in instruction selection
|
/external/toolchain-utils/binary_search_tool/ndk/ |
D | README | 5 required to bisect a compiler problem in an arbitrary NDK app build system. 37 flavor for arm7, our compiler wrapper won't try to bisect object files meant 47 If we want to bisect for an x86-64 device we first need to provide a arch
|
/external/python/cpython2/Lib/test/ |
D | test_bisect.py | 17 import bisect as py_bisect 24 import bisect as c_bisect 213 self.assertEqual(self.module.bisect, self.module.bisect_right) 219 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
|
/external/syzkaller/pkg/bisect/ |
D | bisect.go | 4 package bisect package 81 res, err := env.bisect() 101 func (env *env) bisect() (*vcs.Commit, error) { func
|