HomeSort by relevance Sort by last modified time
    Searched full:minsize (Results 51 - 75 of 385) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
SocketStream.cpp 64 void *SocketStream::allocBuffer(size_t minSize)
66 size_t allocSize = (m_bufsize < minSize ? minSize : m_bufsize);
SocketStream.h 33 virtual void *allocBuffer(size_t minSize);
  /external/jemalloc/src/
base.c 42 base_chunk_alloc(size_t minsize)
48 assert(minsize != 0);
52 csize = CHUNK_CEILING(minsize + nsize);
  /external/jetty/src/java/org/eclipse/jetty/util/
ByteArrayOutputStream2.java 35 public void reset(int minSize)
38 if (buf.length<minSize)
40 buf=new byte[minSize];
  /external/llvm/test/CodeGen/X86/
pop-stack-cleanup.ll 12 define void @test() minsize nounwind {
51 define void @spill(i32 inreg %a, i32 inreg %b, i32 inreg %c) minsize nounwind {
66 define void @test_linux64(i32 %size) minsize nounwind {
divide-by-constant.ll 98 define i32 @testsize1(i32 %x) minsize nounwind {
106 define i32 @testsize2(i32 %x) minsize nounwind {
114 define i32 @testsize3(i32 %x) minsize nounwind {
122 define i32 @testsize4(i32 %x) minsize nounwind {
x86-64-double-shifts-Oz-Os-O2.ll 12 ; Function Attrs: minsize nounwind readnone uwtable
22 attributes #0 = { minsize nounwind readnone uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
  /external/llvm/test/CodeGen/ARM/
fold-stack-adjust.ll 15 define void @check_simple() minsize {
47 define void @check_simple_too_big() minsize {
59 define void @check_vfp_fold() minsize {
94 define i64 @check_no_return_clobber() minsize {
110 define arm_aapcs_vfpcc double @check_vfp_no_return_clobber() minsize {
133 define void @test_fold_point(i1 %tst) minsize {
167 define void @test_varsize(...) minsize {
199 define fastcc float @check_vfp_no_return_clobber2(i16* %r, i16* %chars, i32 %length, i1 zeroext %flag) minsize {
build-attributes-optimization-mixed.ll 22 attributes #1 = { minsize optsize }
wrong-t2stmia-size-opt.ll 8 define i32* @wrong-t2stmia-size-reduction(i32* %addr, i32 %val0, i32 %val1) minsize {
dwarf-unwind.ll 33 define void @test_dpr_align_tiny(i8 %l, i8 %r) minsize {
72 define void @test_frame_pointer_offset() minsize "no-frame-pointer-elim"="true" {
  /external/opencv3/modules/imgproc/test/ocl/
test_filters.cpp 88 void random_roi(int minSize = 1)
90 if (minSize == 0)
91 minSize = ksize;
93 Size roiSize = randomSize(minSize, MAX_VALUE);
300 void random_roi(int minSize = 1)
302 if (minSize == 0)
303 minSize = ksize;
305 Size roiSize = randomSize(minSize, MAX_VALUE);
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
QemuPipeStream.h 34 virtual void *allocBuffer(size_t minSize);
  /external/dng_sdk/source/
dng_string_list.h 58 void Allocate (uint32 minSize);
dng_mosaic_info.h 126 /// to prefSize as possible in longer dimension, but no smaller than minSize.
127 /// \param minSize Number of pixels as minium for longer dimension of downsampled image.
132 virtual dng_point DownScale (uint32 minSize,
192 uint32 minSize) const;
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_SymbolInfo.h 38 CBC_Dimension* minSize,
BC_EncoderContext.cpp 58 void CBC_EncoderContext::setSizeConstraints(CBC_Dimension* minSize,
61 m_minSize = minSize;
  /external/chromium-trace/catapult/third_party/flot/
jquery.flot.selection.js 12 minSize: number of pixels
22 "minSize" is the minimum size a selection can be in pixels. This value can
27 minute, setting "minSize" to 1 will not make the minimum selection size 1
28 minute, but rather 1 pixel. Note also that setting "minSize" to 0 will prevent
48 mouse to remove the selection. As stated above, setting "minSize" to 0 will
291 var minSize = plot.getOptions().selection.minSize;
292 return Math.abs(selection.second.x - selection.first.x) >= minSize &&
293 Math.abs(selection.second.y - selection.first.y) >= minSize;
354 minSize: 5 // minimum number of pixel
    [all...]
jquery.flot.selection.min.js 7 (function($){function init(plot){var selection={first:{x:-1,y:-1},second:{x:-1,y:-1},show:false,active:false};var savedhandlers={};var mouseUpHandler=null;function onMouseMove(e){if(selection.active){updateSelection(e);plot.getPlaceholder().trigger("plotselecting",[getSelection()])}}function onMouseDown(e){if(e.which!=1)return;document.body.focus();if(document.onselectstart!==undefined&&savedhandlers.onselectstart==null){savedhandlers.onselectstart=document.onselectstart;document.onselectstart=function(){return false}}if(document.ondrag!==undefined&&savedhandlers.ondrag==null){savedhandlers.ondrag=document.ondrag;document.ondrag=function(){return false}}setSelectionPos(selection.first,e);selection.active=true;mouseUpHandler=function(e){onMouseUp(e)};$(document).one("mouseup",mouseUpHandler)}function onMouseUp(e){mouseUpHandler=null;if(document.onselectstart!==undefined)document.onselectstart=savedhandlers.onselectstart;if(document.ondrag!==undefined)document.ondrag=savedhandlers.ondrag;selection.active=false;updateSelection(e);if(selectionIsSane())triggerSelectedEvent();else{plot.getPlaceholder().trigger("plotunselected",[]);plot.getPlaceholder().trigger("plotselecting",[null])}return false}function getSelection(){if(!selectionIsSane())return null;if(!selection.show)return null;var r={},c1=selection.first,c2=selection.second;$.each(plot.getAxes(),function(name,axis){if(axis.used){var p1=axis.c2p(c1[axis.direction]),p2=axis.c2p(c2[axis.direction]);r[name]={from:Math.min(p1,p2),to:Math.max(p1,p2)}}});return r}function triggerSelectedEvent(){var r=getSelection();plot.getPlaceholder().trigger("plotselected",[r]);if(r.xaxis&&r.yaxis)plot.getPlaceholder().trigger("selected",[{x1:r.xaxis.from,y1:r.yaxis.from,x2:r.xaxis.to,y2:r.yaxis.to}])}function clamp(min,value,max){return value<min?min:value>max?max:value}function setSelectionPos(pos,e){var o=plot.getOptions();var offset=plot.getPlaceholder().offset();var plotOffset=plot.getPlotOffset();pos.x=clamp(0,e.pageX-offset.left-plotOffset.left,plot.width());pos.y=clamp(0,e.pageY-offset.top-plotOffset.top,plot.height());if(o.selection.mode=="y")pos.x=pos==selection.first?0:plot.width();if(o.selection.mode=="x")pos.y=pos==selection.first?0:plot.height()}function updateSelection(pos){if(pos.pageX==null)return;setSelectionPos(selection.second,pos);if(selectionIsSane()){selection.show=true;plot.triggerRedrawOverlay()}else clearSelection(true)}function clearSelection(preventEvent){if(selection.show){selection.show=false;plot.triggerRedrawOverlay();if(!preventEvent)plot.getPlaceholder().trigger("plotunselected",[])}}function extractRange(ranges,coord){var axis,from,to,key,axes=plot.getAxes();for(var k in axes){axis=axes[k];if(axis.direction==coord){key=coord+axis.n+"axis";if(!ranges[key]&&axis.n==1)key=coord+"axis";if(ranges[key]){from=ranges[key].from;to=ranges[key].to;break}}}if(!ranges[key]){axis=coord=="x"?plot.getXAxes()[0]:plot.getYAxes()[0];from=ranges[coord+"1"];to=ranges[coord+"2"]}if(from!=null&&to!=null&&from>to){var tmp=from;from=to;to=tmp}return{from:from,to:to,axis:axis}}function setSelection(ranges,preventEvent){var axis,range,o=plot.getOptions();if(o.selection.mode=="y"){selection.first.x=0;selection.second.x=plot.width()}else{range=extractRange(ranges,"x");selection.first.x=range.axis.p2c(range.from);selection.second.x=range.axis.p2c(range.to)}if(o.selection.mode=="x"){selection.first.y=0;selection.second.y=plot.height()}else{range=extractRange(ranges,"y");selection.first.y=range.axis.p2c(range.from);selection.second.y=range.axis.p2c(range.to)}selection.show=true;plot.triggerRedrawOverlay();if(!preventEvent&&selectionIsSane())triggerSelectedEvent()}function selectionIsSane(){var minSize=plot.getOptions().selection.minSize;return Math.abs(selection.second.x-selection.first.x)>=minSize&&Math.abs(selection.second.y-selection.first.y)>=minSize}plot.clearSelection=clearSelection;plot.setSelection=setSelection;plot.getSelection=getSelection;plot.hooks.bindEvents.push(function(plot,eventHolder){var o=plot.getOptions();if(o.selection.mode!=null){eventHolder.mousemove(onMouseMove);eventHolder.mousedown(onMouseDown)}});plot.hooks.drawOverlay.push(function(plot,ctx){if(selection.show&&selectionIsSane()){var plotOffset=plot.getPlotOffset();var o=plot.getOptions();ctx.save();ctx.translate(plotOffset.left,plotOffset.top);var c=$.color.parse(o.selection.color);ctx.strokeStyle=c.scale("a",.8).toString();ctx.lineWidth=1;ctx.lineJoin=o.selection.shape;ctx.fillStyle=c.scale("a",.4).toString();var x=Math.min(selection.first.x,selection.second.x)+.5,y=Math.min(selection.first.y,selection.second.y)+.5,w=Math.abs(selection.second.x-selection.first.x)-1,h=Math.abs(selection.second.y-selection.first.y)-1;ctx.fillRect(x,y,w,h);ctx.strokeRect(x,y,w,h);ctx.restore()}});plot.hooks.shutdown.push(function(plot,eventHolder){eventHolder.unbind("mousemove",onMouseMove);eventHolder.unbind("mousedown",onMouseDown);if(mouseUpHandler)$(document).unbind("mouseup",mouseUpHandler)})}$.plot.plugins.push({init:init,options:{selection:{mode:null,color:"#e8cfac",shape:"round",minSize:5}},name:"selection",version:"1.1"})})(jQuery)
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 194 /// least one more element or MinSize if specified.
195 void grow(BumpVectorContext &C, size_type MinSize = 1);
220 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) {
224 if (NewCapacity < MinSize)
225 NewCapacity = MinSize;
  /external/jacoco/jacoco/
pom.xml 112 <minsize>2500000</minsize>
  /external/opencv3/modules/cudaimgproc/perf/
perf_mean_shift.cpp 137 const int minsize = 20; local
144 TEST_CYCLE() cv::cuda::meanShiftSegmentation(d_src, dst, sp, sr, minsize);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterAlbumSet.java 110 long minSize = ((SizeClustering) clustering).getMinSize(i);
111 childPath = mPath.getChild(minSize);
SizeClustering.java 104 String minSize = getSizeString(i);
107 res.getString(R.string.size_between), minSize, maxSize);
  /external/llvm/test/CodeGen/AArch64/
arm64-register-offset-addressing.ll 16 define void @ldst_8bit(i8* %base, i64 %offset) minsize {
40 define void @ldst_16bit(i16* %base, i64 %offset) minsize {
75 define void @ldst_32bit(i32* %base, i64 %offset) minsize {
109 define void @ldst_64bit(i64* %base, i64 %offset) minsize {

Completed in 2351 milliseconds

1 23 4 5 6 7 8 91011>>