HomeSort by relevance Sort by last modified time
    Searched refs:bisect (Results 1 - 25 of 30) 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))
bisect-builds.py 6 """Snapshot Build Bisect Tool
395 def Bisect(platform,
448 # Get a list of revisions to bisect across.
449 if len(revlist) < 2: # Don't have enough builds to bisect.
450 msg = 'We don\'t have enough builds to bisect. revlist: %s' % revlist
625 help = 'The buildbot archive to bisect [%s].' %
628 help = 'Bisect across official ' +
690 (min_chromium_rev, max_chromium_rev) = 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...]
urllib2.py 104 import bisect namespace
361 bisect.insort(handlers, handler)
367 bisect.insort(self.handlers, handler)
    [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...]
urllib2.py 104 import bisect namespace
361 bisect.insort(handlers, handler)
367 bisect.insort(self.handlers, handler)
    [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)
  /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/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...]
  /external/v8/tools/
ll_prof.py 30 import bisect namespace
153 j = bisect.bisect_left(ticks_offsets, end_offset)
  /external/chromium_org/v8/tools/
ll_prof.py 30 import bisect namespace
169 j = bisect.bisect_left(ticks_offsets, end_offset)
    [all...]

Completed in 2597 milliseconds

1 2