Searched refs:max (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/aggs/
H A Dtst.max_neg.d31 * Positive max() test using negative values
35 * NOTES: This is verifiable simple positive test of the max() function.
43 @ = max(0);
44 @ = max(-900);
H A Derr.D_PROTO_LEN.maxnoarg.d31 * max() should not accept a call with no arguments
39 @a[1] = max();
H A Derr.D_PROTO_LEN.maxtoomany.d31 * max() should not more than one argument
39 @a[1] = max(1, 2);
H A Derr.D_AGG_SCALAR.maxnoarg.d32 * max() should not accept a non-scalar value
39 @a[pid] = max(probefunc);
H A Derr.D_AGG_REDEF.redef.d44 @a = max(0);
H A Dtst.forms.d43 @b = max(1);
45 @d[0] = max(1);
H A Dtst.max.d31 * Positive max() test
35 * NOTES: This is verifiable simple positive test of the max() function.
49 @a = max(i);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/clauses/
H A Derr.D_IDENT_UNDEF.aggfun.d39 @a = max(x);
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/
H A Dstrcpy.c50 PL_strncpy(char *dest, const char *src, PRUint32 max) argument
57 for( rv = dest; max && ((*dest = *src) != 0); dest++, src++, max-- )
62 while( --max )
70 PL_strncpyz(char *dest, const char *src, PRUint32 max) argument
76 if( 0 == max ) return (char *)0;
78 for( rv = dest, max--; max && ((*dest = *src) != 0); dest++, src++, max-- )
H A Dstrcat.c51 PL_strncat(char *dest, const char *src, PRUint32 max) argument
55 if( ((char *)0 == dest) || ((const char *)0 == src) || (0 == max) )
61 (void)PL_strncpy(dest, src, max);
66 PL_strcatn(char *dest, PRUint32 max, const char *src) argument
77 if( max <= dl ) return rv;
78 (void)PL_strncpyz(dest, src, max-dl);
H A Dstrpbrk.c69 PL_strnpbrk(const char *s, const char *list, PRUint32 max) argument
75 for( ; max && *s; s++, max-- )
84 PL_strnprbrk(const char *s, const char *list, PRUint32 max) argument
91 for( r = s; max && *r; r++, max-- )
H A Dstrlen.c62 PL_strnlen(const char *str, PRUint32 max)
67 for( s = str; max && *s; s++, max-- )
H A Dstrcstr.c80 PL_strncasestr(const char *big, const char *little, PRUint32 max) argument
88 if( ll > max ) return (char *)0;
89 max -= ll;
90 max++;
92 for( ; max && *big; big++, max-- )
101 PL_strncaserstr(const char *big, const char *little, PRUint32 max) argument
111 for( p = big; max && *p; p++, max-- )
H A Dstrstr.c74 PL_strnstr(const char *big, const char *little, PRUint32 max) argument
82 if( ll > (size_t)max ) return (char *)0;
83 max -= (PRUint32)ll;
84 max++;
86 for( ; max && *big; big++, max-- )
95 PL_strnrstr(const char *big, const char *little, PRUint32 max) argument
105 for( p = big; max && *p; p++, max-- )
H A Dstrcmp.c51 PL_strncmp(const char *a, const char *b, PRUint32 max)
56 return (PRIntn)strncmp(a, b, (size_t)max);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dminmax.h2 * min/max macros
33 #ifndef max
34 #define max(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
33 #ifndef max
34 #define max(a,b) (((a) > (b)) ? (a) : (b)) macro
/vbox/src/VBox/GuestHost/OpenGL/spu_loader/
H A Dspuinit.c32 const char *max )
39 if (max && sscanf(max, "%d", &imax) == 1 && imax < i)
46 const char *max )
53 if (max && sscanf(max, "%f", &fmax) == 1 && fmax < f)
61 const char *max )
67 return validate_int( response, min, max );
69 return validate_float( response, min, max );
99 const char *max local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Delf.h15 extern int elf_load ( struct image *image, physaddr_t *entry, physaddr_t *max );
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/grammar/
H A Dtst.stmts.d50 @b = max(x);
52 @d[x] = max(x);
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/core/
H A Drelocate.c45 unsigned long start, end, size, padded_size, max; local
61 max = MAX_ADDR;
62 if ( ix86->regs.ebp && ( ix86->regs.ebp < max ) ) {
63 max = ix86->regs.ebp;
64 DBG ( "Limiting relocation to [0,%lx)\n", max );
81 if ( region->start > max ) {
82 DBG ( "...starts after max=%lx\n", max );
86 if ( region->end > max ) {
87 DBG ( "...end truncated to max
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMaxConsumers.java58 int max = (property == null ? 0 : property);
59 int n = (property == null ? 11 : (max < 1 ? 1 : max));
82 if (max > 0) {
83 System.out.println("Error: " + (max + 1) + " > " +
/vbox/src/libs/zlib-1.2.6/examples/
H A Denough.c15 Fix bug for initial root table size == max - 1
124 len: 1..max - 1 (max == maximum code length in bits)
131 len is less than max, since the code completes immediately when len == max.
135 We build the array with length max-1 lists for the len index, with syms-3
167 local int max; /* maximum allowed bit length for the codes */ variable
176 #define INDEX(i,j,k) (((size_t)((i-1)>>1)*((i-2)>>1)+(j>>1)-1)*(max-1)+k-1)
196 len through max inclusive, coding syms symbols, with left bit patterns of
199 calculation. Uses the globals max an
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dhull.c82 _four_point_box(double *points, double *min, double *max) argument
136 max[1] = points[2 * sort[2] + 1];
155 max[0] = npnts[2 * sort[2]];
169 double max[2], min[2], cent[2], dir[2], pnt[2]; local
175 max[0] = max[1] = -9999;
183 if (x > max[0])
184 max[0] = x;
187 if (y > max[1])
188 max[
[all...]

Completed in 86 milliseconds

1234567891011>>