/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/aggs/ |
H A D | tst.max_neg.d | 31 * 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 D | err.D_PROTO_LEN.maxnoarg.d | 31 * max() should not accept a call with no arguments 39 @a[1] = max();
|
H A D | err.D_PROTO_LEN.maxtoomany.d | 31 * max() should not more than one argument 39 @a[1] = max(1, 2);
|
H A D | err.D_AGG_SCALAR.maxnoarg.d | 32 * max() should not accept a non-scalar value 39 @a[pid] = max(probefunc);
|
H A D | err.D_AGG_REDEF.redef.d | 44 @a = max(0);
|
H A D | tst.forms.d | 43 @b = max(1); 45 @d[0] = max(1);
|
H A D | tst.max.d | 31 * 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 D | err.D_IDENT_UNDEF.aggfun.d | 39 @a = max(x);
|
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/ |
H A D | strcpy.c | 50 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 D | strcat.c | 51 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 D | strpbrk.c | 69 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 D | strlen.c | 62 PL_strnlen(const char *str, PRUint32 max) 67 for( s = str; max && *s; s++, max-- )
|
H A D | strcstr.c | 80 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 D | strstr.c | 74 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 D | strcmp.c | 51 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 D | minmax.h | 2 * min/max macros 33 #ifndef max 34 #define max(a,b) (((a) > (b)) ? (a) : (b)) macro
|
/vbox/src/VBox/GuestHost/OpenGL/include/ |
H A D | cr_rand.h | 18 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 D | minmax.h | 2 * 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 D | spuinit.c | 32 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 D | elf.h | 15 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 D | tst.stmts.d | 50 @b = max(x); 52 @d[x] = max(x);
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/core/ |
H A D | relocate.c | 45 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 D | TestMaxConsumers.java | 58 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 D | enough.c | 15 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 D | hull.c | 82 _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...] |