HomeSort by relevance Sort by last modified time
    Searched refs:bisect (Results 1 - 25 of 34) 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 trybot to run the src/tools/bisect-perf-regression.py
9 script with the parameters specified in run-bisect-perf-regression.cfg. It will
10 check out a copy of the depot in a subdirectory 'bisect' of the working
11 directory provided, and run the bisect-perf-regression.py script there.
23 bisect = imp.load_source('bisect-perf-regression', variable
25 'bisect-perf-regression.py'))
161 return bisect.BisectOptions.FromDict(opts_dict)
165 # Bisect script expects to be run from sr
    [all...]
bisect-builds.py 6 """Snapshot Build Bisect Tool
451 def Bisect(base_url,
506 # Get a list of revisions to bisect across.
507 if len(revlist) < 2: # Don't have enough builds to bisect.
508 msg = 'We don\'t have enough builds to bisect. revlist: %s' % revlist
671 for blink bisect, DEPS and REVISIONS file might not match since
721 help = 'The buildbot archive to bisect [%s].' %
724 help = 'Bisect across official ' +
755 help = 'Use Blink bisect instead of Chromium. ')
760 help='Allow the script to bisect aura builds'
    [all...]
  /external/chromium_org/tools/perf/metrics/
statistics.py 7 import bisect namespace
72 left.append(bisect.bisect_left(samples, location))
73 right.append(bisect.bisect_right(samples, location))
  /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...]
  /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)
  /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/chrome/test/chromedriver/
run_buildbot_steps.py 8 import bisect namespace
175 index = bisect.bisect_right(keys, revision)
  /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/chromium_org/tools/valgrind/asan/third_party/
asan_symbolize.py 10 import bisect namespace
266 index = bisect.bisect_left(self.address_list, addr)
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 10 import bisect namespace
291 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);
  /frameworks/base/tools/orientationplot/
orientationplot.py 30 import bisect namespace
385 bottom_index = bisect.bisect_left(timeseries[0], bottom)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
irclib.py 64 import bisect namespace
259 bisect.insort(self.handlers[event], ((priority, handler)))
303 bisect.insort(self.delayed_commands, (delay+time.time(), function, arguments))
    [all...]

Completed in 1361 milliseconds

1 2