Searched defs:bisect (Results 1 - 14 of 14) sorted by relevance

/external/autotest/site_utils/autoupdate/
H A Drelease.py9 import bisect namespace
160 i = bisect.bisect_left(self._sorted_shifted_branchpoint_rel_key_list,
/external/clang/utils/perf-training/
H A Dperf-helper.py17 import bisect namespace
172 start_index = bisect.bisect_left(all_symbols, symbol)
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dsancov.py7 import bisect namespace
160 map_idx = bisect.bisect(mem_map_keys, pc) - 1
/external/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py11 import bisect namespace
325 index = bisect.bisect_left(self.address_list, addr)
/external/toolchain-utils/binary_search_tool/test/
H A Dbinary_search_tool_tester.py17 from binary_search_tool import bisect namespace
39 """Tests for bisect.py"""
58 class FullBisector(bisect.Bisector):
59 """Test bisector to test bisect.py with"""
81 ret = bisect.Run(self.FullBisector({}, {}))
/external/ImageMagick/MagickCore/
H A Dsplay-tree.c259 bisect;
261 bisect=low+(high-low)/2;
262 node=nodes[bisect];
263 if ((low+1) > bisect)
266 node->left=LinkSplayTreeNodes(nodes,low,bisect-1);
267 if ((bisect+1) > high)
270 node->right=LinkSplayTreeNodes(nodes,bisect+1,high);
253 bisect; local
H A Dquantize.c776 bisect;
842 bisect=((double) QuantumRange+1.0)/2.0;
850 bisect*=0.5;
852 mid.red+=(id & 1) != 0 ? bisect : -bisect;
853 mid.green+=(id & 2) != 0 ? bisect : -bisect;
854 mid.blue+=(id & 4) != 0 ? bisect : -bisect;
855 mid.alpha+=(id & 8) != 0 ? bisect
769 bisect; local
[all...]
H A Dresize.c2468 bisect,
2490 bisect=(double) (x+0.5)/x_factor+MagickEpsilon;
2491 start=(ssize_t) MagickMax(bisect-support+0.5,0.0);
2492 stop=(ssize_t) MagickMin(bisect+support+0.5,(double) image->columns);
2499 ((double) (start+n)-bisect+0.5));
2559 j=(ssize_t) (MagickMin(MagickMax(bisect,(double) start),(double)
2683 bisect,
2705 bisect=(double) (y+0.5)/y_factor+MagickEpsilon;
2706 start=(ssize_t) MagickMax(bisect-support+0.5,0.0);
2707 stop=(ssize_t) MagickMin(bisect
2452 bisect, local
2667 bisect, local
[all...]
/external/mesa3d/src/glsl/
H A Dlower_variable_index_to_cond_assign.cpp289 void bisect(unsigned begin, unsigned end, exec_list *list) function in struct:switch_generator
321 return bisect(begin, end, list);
/external/avb/
H A Davbtool29 import bisect namespace
779 chunk_idx = bisect.bisect_right(self._chunk_output_offsets,
838 chunk_idx = bisect.bisect_right(self._chunk_output_offsets, size) - 1
/external/tremolo/Tremolo/
H A Dvorbisfile.c219 ogg_int64_t bisect; local
222 bisect=searched;
224 bisect=(searched+endsearched)/2;
227 _seek_helper(vf,bisect);
231 endsearched=bisect;
1196 ogg_int64_t bisect; local
1199 bisect=begin;
1202 bisect=begin +
1204 if(bisect<=begin)
1205 bisect
[all...]
/external/v8/tools/
H A Dll_prof.py30 import bisect namespace
169 j = bisect.bisect_left(ticks_offsets, end_offset)
H A Dgrokdump.py31 import bisect namespace
940 bisect.insort_left(self.symbols,
969 i = bisect.bisect_left(self.symbols, addr)
/external/libvorbis/lib/
H A Dvorbisfile.c528 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
1424 bisect=begin;
1427 bisect=begin +
1430 if(bisect<=begin)
1431 bisect
[all...]

Completed in 282 milliseconds