Searched refs:min (Results 1 - 25 of 273) sorted by relevance

1234567891011

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/aggs/
H A Dtst.min_neg.d31 * Positive min() test using negative values
35 * NOTES: This is verifiable simple positive test of the min() function.
43 @ = min(0);
44 @ = min(-900);
H A Derr.D_PROTO_LEN.minnoarg.d31 * min() should not accept a call with no arguments
39 @a[1] = min();
H A Derr.D_PROTO_LEN.mintoomany.d32 * min() should not more than one argument
40 @a[1] = min(1, 2);
H A Derr.D_AGG_SCALAR.mintoofew.d32 * min() should not accept a non-scalar value
40 @a[pid] = min(probefunc);
H A Dtst.min.d31 * Positive min() test
35 * NOTES: This is verifiable simple positive test of the min() function.
49 @a = min(i);
H A Dtst.multiaggs2.d48 @c = min(i);
/vbox/src/VBox/GuestHost/OpenGL/spu_loader/
H A Dspuinit.c31 const char *min,
37 if (min && sscanf(min, "%d", &imin) == 1 && imin > i)
45 const char *min,
51 if (min && sscanf(min, "%f", &fmin) == 1 && fmin > f)
60 const char *min,
67 return validate_int( response, min, max );
69 return validate_float( response, min, max );
71 /* Make sure response string is present in the min strin
30 validate_int( const char *response, const char *min, const char *max ) argument
44 validate_float( const char *response, const char *min, const char *max ) argument
58 validate_one_option( const SPUOptions *opt, const char *response, const char *min, const char *max ) argument
98 const char *min = opt->min; local
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dminmax.h2 * min/max macros
36 #ifndef min
37 #define min(a,b) (((a) < (b)) ? (a) : (b)) macro
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_rand.h18 DECLEXPORT(float) crRandFloat( float min, float max );
19 DECLEXPORT(int) crRandInt( int min, int max );
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dminmax.h2 * min/max macros
36 #ifndef min
37 #define min(a,b) (((a) < (b)) ? (a) : (b)) macro
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/sched/
H A Dticktime.d32 @[cpu] = min(timestamp - last[cpu]);
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Didpool.c16 GLuint min; member in struct:FreeElemRec
32 pool->freeList->min = 1;
64 if (f->max - f->min + 1 >= (GLuint) count)
67 ret = f->min;
68 f->min += count;
70 if (f->min == f->max)
123 for (i = pool->freeList; i && i->next && i->next->min < first; i = i->next)
138 if (i->next && i->max+1 >= i->next->min)
141 i->next->min = i->min;
[all...]
H A Dhull.c82 _four_point_box(double *points, double *min, double *max) argument
135 min[1] = points[2 * sort[1] + 1];
154 min[0] = npnts[2 * sort[1]];
169 double max[2], min[2], cent[2], dir[2], pnt[2]; local
176 min[0] = min[1] = 9999;
181 if (x < min[0])
182 min[0] = x;
185 if (y < min[1])
186 min[
[all...]
H A Dhash.c22 GLuint min; member in struct:FreeElemRec
28 GLuint min; member in struct:CRHashIdPool
48 CRHashIdPool *crAllocHashIdPoolEx( GLuint min, GLuint max ) argument
52 if (min < CR_HASH_ID_MIN || max > CR_HASH_ID_MAX || min >= max)
54 crWarning("invalid min man vals");
60 elem->min = min;
63 pool->min = min;
88 GLuint min = 0; local
374 crAllocHashtableEx( GLuint min, GLuint max ) argument
[all...]
H A Drand.c100 float crRandFloat(float min, float max) argument
103 return (float) (t*min + (1-t)*max);
106 /* return a random integer in [min, max] (inclusive). */
107 int crRandInt(int min, int max) argument
110 return min + (int) (t * (max - min + 1));
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithMin.d49 @Minimus["speculate"] = min(i);
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Detherfabric.h156 * which contains bits [min,max).
169 #define EFAB_EXTRACT_NATIVE( native_element, min ,max ,low ,high ) \
170 ( ( ( low > max ) || ( high < min ) ) ? 0 : \
171 ( ( low > min ) ? \
172 ( (native_element) >> ( low - min ) ) : \
173 ( (native_element) << ( min - low ) ) ) )
177 * element which contains bits [min,max)
179 #define EFAB_EXTRACT64( element, min, max, low, high ) \
180 EFAB_EXTRACT_NATIVE ( le64_to_cpu(element), min, max, low, high )
184 * element which contains bits [min,ma
[all...]
/vbox/src/libs/zlib-1.2.6/
H A Dinftrees.c42 unsigned min, max; /* minimum and maximum code lengths */ local
126 for (min = 1; min < max; min++)
127 if (count[min] != 0) break;
128 if (root < min) root = min;
202 len = min; /* starting code length */
235 min = fill; /* save offset to next table */
266 next += min; /* her
[all...]
/vbox/src/VBox/Devices/Network/scripts/
H A DVBoxConvertNATStats.sh64 \$6 = "min"
88 min = \$12
95 \$6 = substr(min,0, index(min, ")") - 1)
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/printa/
H A Dtst.basics.d43 @e = min(1);
H A Dtst.walltimestamp.ksh44 @foo = min(1075064400 * (hrtime_t)1000000000);
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQIAdvancedSlider.h58 void setOptimalHint(int min, int max);
59 void setWarningHint(int min, int max);
60 void setErrorHint(int min, int max);
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxmlautomata.h81 int min,
90 int min,
98 int min,
107 int min,
131 int min,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dxf86Module.h71 #define SET_ABI_VERSION(maj, min) \
72 ((((maj) << 16) & ABI_MAJOR_MASK) | ((min) & ABI_MINOR_MASK))
164 #define MODULE_VERSION_NUMERIC(maj, min, patch) \
165 ((((maj) & 0xFF) << 24) | (((min) & 0xFF) << 16) | (patch & 0xFFFF))
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dxf86Module.h71 #define SET_ABI_VERSION(maj, min) \
72 ((((maj) << 16) & ABI_MAJOR_MASK) | ((min) & ABI_MINOR_MASK))
164 #define MODULE_VERSION_NUMERIC(maj, min, patch) \
165 ((((maj) & 0xFF) << 24) | (((min) & 0xFF) << 16) | (patch & 0xFFFF))

Completed in 111 milliseconds

1234567891011