HomeSort by relevance Sort by last modified time
    Searched refs:bisect (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/tools/
bisect_test.py 7 bisect_builds = __import__('bisect-builds')
35 def bisect(self, good_rev, bad_rev, evaluate): member in class:BisectTest
36 return bisect_builds.Bisect(good_rev=good_rev,
46 self.assertEqual(self.bisect(1000, 100, lambda *args: 'g'), (100, 101))
47 self.assertEqual(self.bisect(100, 1000, lambda *args: 'b'), (100, 101))
48 self.assertEqual(self.bisect(2000, 200, lambda *args: 'b'), (1999, 2000))
49 self.assertEqual(self.bisect(200, 2000, lambda *args: 'g'), (1999, 2000))
run-bisect-perf-regression.py 6 """Run Performance Test Bisect Tool
8 This script is used by a try bot to run the bisect script with the parameters
9 specified in the bisect config file. It checks out a copy of the depot in
10 a subdirectory 'bisect' of the working directory provided, annd runs the
11 bisect scrip there.
30 BISECT_CONFIG_PATH = os.path.join(SCRIPT_DIR, 'auto_bisect', 'bisect.cfg')
137 This is used when we're doing a perf try job, rather than a bisect.
159 """Validates the bisect config file contents.
242 # Bisect script expects to be run from the src directory
368 """Attempts to execute the bisect script with the given parameters
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
memory_map.py 5 import bisect namespace
21 bisect.insort_right(self.entries, entry)
25 idx = bisect.bisect_right(self.entries, addr) - 1
95 """Comparison operator required for bisect."""
  /external/tremolo/Tremolo/
vorbisfile.c 219 ogg_int64_t bisect; local
222 bisect=searched;
224 bisect=(searched+endsearched)/2;
227 _seek_helper(vf,bisect);
231 endsearched=bisect;
526 /* Chained bitstream. Bisect-search each logical bitstream
1196 ogg_int64_t bisect; local
    [all...]
  /external/libvorbis/lib/
vorbisfile.c 528 ogg_int64_t bisect; local
531 bisect=searched;
533 bisect=(searched+endsearched)/2;
536 ret=_seek_helper(vf,bisect);
542 endsearched=bisect;
1421 ogg_int64_t bisect; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
DNSUtil.java 207 selectedPos = bisect(totals, rnd);
220 private static int bisect(int[] array, double value) { method in class:DNSUtil
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
bisect.py 45 bisect = bisect_right # backward compatibility variable
mhlib.py 85 from bisect import bisect namespace
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)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
bisect.py 45 bisect = bisect_right # backward compatibility variable
mhlib.py 85 from bisect import bisect namespace
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)
    [all...]
  /build/tools/releasetools/
sparse_img.py 15 import bisect namespace
136 idx = bisect.bisect_right(self.offset_index, s) - 1
188 idx = bisect.bisect_right(self.offset_index, b) - 1
  /external/compiler-rt/lib/sanitizer_common/scripts/
sancov.py 9 import bisect namespace
109 map_idx = bisect.bisect(mem_map_keys, pc) - 1
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 35 import bisect namespace
115 i = bisect.bisect_left(self._lengths, size)
160 bisect.insort(self._lengths, length)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 35 import bisect namespace
115 i = bisect.bisect_left(self._lengths, size)
160 bisect.insort(self._lengths, length)
  /cts/apps/CameraITS/tests/sensor_fusion/
test_sensor_fusion.py 28 import bisect namespace
217 igyrowindow0 = bisect.bisect(all_times, tcam0)
218 igyrowindow1 = bisect.bisect(all_times, tcam1)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
bisect_test_ordering.py 60 def bisect(self): member in class:Bisector
161 option_parser.add_option('--test-list', action='store', help='file that list tests to bisect. The last test in the list is the expected failure.', metavar='FILE'),
167 return bisector.bisect()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bisect.py 11 # We must also handle the case that bisect was imported before.
12 if 'bisect' in sys.modules:
13 del sys.modules['bisect']
16 import bisect as py_bisect
20 del sys.modules['bisect']
23 import bisect as c_bisect
212 self.assertEqual(self.module.bisect, self.module.bisect_right)
218 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
323 Example from the Library Reference: Doc/library/bisect.rst
325 The bisect() function is generally useful for categorizing numeric data
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bisect.py 11 # We must also handle the case that bisect was imported before.
12 if 'bisect' in sys.modules:
13 del sys.modules['bisect']
16 import bisect as py_bisect
20 del sys.modules['bisect']
23 import bisect as c_bisect
212 self.assertEqual(self.module.bisect, self.module.bisect_right)
218 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
323 Example from the Library Reference: Doc/library/bisect.rst
325 The bisect() function is generally useful for categorizing numeric data
    [all...]
  /external/chromium_org/tools/find_runtime_symbols/
static_symbols.py 5 import bisect namespace
55 found_index = bisect.bisect_left(self._sorted_start_list, address)
  /frameworks/base/tools/velocityplot/
velocityplot.py 34 import bisect namespace
237 bottom_index = bisect.bisect_left(timeseries[0], bottom)
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_variable_index_to_cond_assign.cpp 289 void bisect(unsigned begin, unsigned end, exec_list *list) function in struct:switch_generator
321 return bisect(begin, end, list);
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 10 import bisect namespace
298 index = bisect.bisect_left(self.address_list, addr)
  /external/mesa3d/src/glsl/
lower_variable_index_to_cond_assign.cpp 289 void bisect(unsigned begin, unsigned end, exec_list *list) function in struct:switch_generator
321 return bisect(begin, end, list);
  /external/chromium_org/chrome/test/chromedriver/
run_buildbot_steps.py 8 import bisect namespace
185 index = bisect.bisect_right(keys, revision)
  /external/chromium_org/tools/valgrind/asan/third_party/
asan_symbolize.py 11 import bisect namespace
310 index = bisect.bisect_left(self.address_list, addr)

Completed in 531 milliseconds

1 2