Searched refs:max (Results 301 - 325 of 1843) sorted by relevance

<<11121314151617181920>>

/external/iptables/extensions/
H A Dlibxt_osf.c57 .flags = XTOPT_PUT, XTOPT_POINTER(s, ttl), .min = 0, .max = 2},
59 .flags = XTOPT_PUT, XTOPT_POINTER(s, loglevel), .min = 0, .max = 2},
/external/libppp/src/
H A Ddatalink.h78 int max; /* initially try again this number of times */ member in struct:datalink::__anon8037::__anon8040
85 int max; /* initially try again this number of times */ member in struct:datalink::__anon8037::__anon8041
/external/libvorbis/lib/
H A Dos.h78 #ifndef max
79 # define max(x,y) ((x)<(y)?(y):(x)) macro
/external/openssh/
H A Dssh-pkcs11-helper.c271 int in, out, max, log_stderr = 0; local
291 max = 0;
292 if (in > max)
293 max = in;
294 if (out > max)
295 max = out;
300 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask);
321 if (select(max+1, rset, wset, NULL, NULL) < 0) {
/external/quake/quake/src/QW/client/
H A Dquakedef.h84 #ifndef max
85 #define max(a,b) ((a) > (b) ? (a) : (b)) macro
/external/regex-re2/re2/
H A Dsimplify.cc122 // Simplifies the expression re{min,max} in terms of *, +, and ?.
125 static Regexp* SimplifyRepeat(Regexp* re, int min, int max,
307 // Simplifies the expression re{min,max} in terms of *, +, and ?.
313 Regexp* SimplifyWalker::SimplifyRepeat(Regexp* re, int min, int max, argument
316 if (max == -1) {
337 if (min == 0 && max == 0)
341 if (min == 1 && max == 1)
359 if (max > min) {
361 for (int i = min+1; i < max; i++)
370 // Some degenerate case, like min > max, o
372 LOG(DFATAL) << "Malformed repeat " << re->ToString() << " " << min << " " << max; local
[all...]
/external/skia/src/core/
H A DSkBitmapProcState_matrix.h146 static inline uint32_t PACK_FILTER_Y_NAME(SkFixed f, unsigned max, argument
148 unsigned i = TILEY_PROCF(f, max);
149 i = (i << 4) | TILEY_LOW_BITS(f, max);
150 return (i << 14) | (TILEY_PROCF((f + one), max));
153 static inline uint32_t PACK_FILTER_X_NAME(SkFixed f, unsigned max, argument
155 unsigned i = TILEX_PROCF(f, max);
156 i = (i << 4) | TILEX_LOW_BITS(f, max);
157 return (i << 14) | (TILEX_PROCF((f + one), max));
H A DSkBitmapProcShader.cpp172 int max = fState.maxCountForBufferSize(sizeof(buffer[0]) * BUF_MAX); local
180 if (n > max) {
181 n = max;
216 int max = fState.maxCountForBufferSize(sizeof(buffer)); local
224 if (n > max) {
225 n = max;
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-fasta.js8 function rand(max) {
10 return max * last / M;
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-fasta.js8 function rand(max) {
10 return max * last / M;
/external/webkit/Source/JavaScriptCore/profiler/
H A DCallIdentifier.h90 new (&slot) JSC::CallIdentifier(JSC::UString(), JSC::UString(), std::numeric_limits<unsigned>::max());
94 return value.m_name.isNull() && value.m_url.isNull() && value.m_lineNumber == std::numeric_limits<unsigned>::max();
/external/webkit/Source/WebCore/platform/audio/
H A DAudioBus.cpp170 float max = 0.0f; local
173 max = std::max(max, channel->maxAbsValue());
176 return max;
181 float max = maxAbsValue(); local
182 if (max)
183 scale(1.0f / max);
/external/webkit/Source/WebCore/platform/mac/
H A DScrollViewMac.mm134 NSSize tempSize = { max(0, w), max(0, h) }; // workaround for 4213314
151 NSPoint tempPoint = { max(-[scrollView() scrollOrigin].x, floatPoint.x), max(-[scrollView() scrollOrigin].y, floatPoint.y) }; // Don't use NSMakePoint to work around 4213314.
/external/webkit/Source/WebCore/rendering/
H A DRenderIFrame.cpp58 setHeight(max(height(), view->contentsHeight() + border));
76 setWidth(max(width(), view->contentsWidth() + border));
H A DRenderFieldset.cpp37 using std::max;
63 m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, legendMinWidth + borderAndPaddingWidth());
110 setLogicalTopForChild(legend, max((b - h) / 2, 0));
111 setLogicalHeight(max(b, h) + paddingBefore());
172 int clipHeight = max(static_cast<int>(style()->borderTopWidth()), legend->height());
176 int clipWidth = max(static_cast<int>(style()->borderLeftWidth()), legend->width());
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Dui.js119 // To get the max width we get the width of the treeItem minus the position
136 var max = parentEl.clientWidth - startPos - inner - parentPadding;
139 if (el.scrollWidth > max) {
140 el.style.width = max + 'px';
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_selection.js65 wmax = Math.max(wmax, hit.slice.end);
70 max: wmax
78 return this.range.max - this.range.min;
H A Dui.js119 // To get the max width we get the width of the treeItem minus the position
136 var max = parentEl.clientWidth - startPos - inner - parentPadding;
139 if (el.scrollWidth > max) {
140 el.style.width = max + 'px';
/external/e2fsprogs/misc/
H A De2freefrag.c65 info->max = info->avg = 0;
84 if (chunk_size > info->max)
85 info->max = chunk_size;
171 info->max = (info->max * fs->blocksize) >> 10;
179 "Avg. free extent: %lu KB\n", info->min, info->max, info->avg);
192 strcpy(end_str, "max ");
/external/easymock/src/org/easymock/
H A DMockControl.java530 * @param max maximum number of times the call is expected
533 int min, int max) {
534 EasyMock.expectLastCall().andReturn(value).times(min, max);
537 public void expectAndReturn(int ignored, int value, int min, int max) { argument
538 this.expectAndReturn((Object) ignored, (Object) value, min, max);
592 * @param max maximum number of times the call is expected
595 int max) {
596 expect(ignored).andThrow(throwable).times(min, max);
532 expectAndReturn(V1 ignored, V2 value, int min, int max) argument
594 expectAndThrow(Object ignored, Throwable throwable, int min, int max) argument
/external/jmonkeyengine/engine/src/android/jme3tools/android/
H A DFixed.java121 int max = lut[n + 1];
122 for (int i = min; i < max; i++) {
372 public static int max(int a, int b) { method in class:Fixed
377 * Clamps the value n between min and max.
379 public static int clamp(int n, int min, int max) { argument
380 return (n < min) ? min : (n > max) ? max : n;
/external/oprofile/libutil/
H A Dop_fileio.c131 size_t max = 512; local
133 buf = xmalloc(max);
152 if (((size_t)(cp - buf)) == max) {
153 buf = xrealloc(buf, max + 128);
154 cp = buf + max;
155 max += 128;
/external/skia/third_party/glu/libtess/
H A Dpriorityq.c76 pq->max = INIT_SIZE;
163 pq->max = pq->size;
188 if( ++ pq->size >= pq->max ) {
192 pq->max <<= 1;
195 (pq->max * sizeof( pq->keys[0] )));
261 assert( curr < pq->max && pq->keys[curr] != NULL );
/external/tremolo/Tremolo/
H A Dres012.c114 int max=pcmend>>1; local
115 int end=(info->end<max?info->end:max);
186 int max=(pcmend*ch)>>1; local
187 int end=(info->end<max?info->end:max);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DImageDiff.cpp116 float red = (actualPixel[0] - basePixel[0]) / max<float>(255 - basePixel[0], basePixel[0]);
117 float green = (actualPixel[1] - basePixel[1]) / max<float>(255 - basePixel[1], basePixel[1]);
118 float blue = (actualPixel[2] - basePixel[2]) / max<float>(255 - basePixel[2], basePixel[2]);
119 float alpha = (actualPixel[3] - basePixel[3]) / max<float>(255 - basePixel[3], basePixel[3]);
127 maxDistance = max<float>(maxDistance, distance);
142 difference = max(difference, 0.01f); // round to 2 decimal places

Completed in 728 milliseconds

<<11121314151617181920>>