Searched defs:Max (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DBlock_Array.java57 public int Max() { method in class:Block_Array
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp66 { return (i<Max()) ? _blocks[i] : (Block*)NULL; }
68 { assert( i < Max(), "oob" ); return _blocks[i]; }
70 void map( uint i, Block *n ) { if( i>=Max() ) grow(i); _blocks[i] = n; }
71 uint Max() const { debug_only(return _limit); return _size; } function in class:Block_Array
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.hpp512 Max = 0x7fffffff enumerator in enum:Expr::__anon115
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c62 #define MAXID 128 // Max lenght of identifier
63 #define MAXSTR 1024 // Max lenght of string
64 #define MAXTABLES 255 // Max Number of tables in a single stream
65 #define MAXINCLUDE 20 // Max number of nested includes
214 cmsUInt32Number Max; member in struct:__anon820
1591 if (f ->Used > f ->Max) {
1809 sd.Max = *BytesNeeded; // Write to memory?
1811 sd.Max = 0; // Just counting the needed bytes
H A Dcmstypes.c1439 // Max Derhak and Rohit Patil about this: basically the size of the string table should be guessed and cannot be
4587 double Max; member in struct:__anon845
4680 if (!_cmsRead15Fixed16Number(io, &Colorant[n].Max)) goto Error;
4687 // Y = (Max � Min) * (X ^ Gamma) + Min
4690 // a = (Max � Min) ^ ( 1 / Gamma)
4695 Params[1] = pow((Colorant[n].Max - Colorant[n].Min), (1.0 / Colorant[n].Gamma));
4748 v.Max = pow(Curves[i] ->Segments[0].Params[1], v.Gamma) + v.Min;
4752 if (!_cmsWrite15Fixed16Number(io, v.Max)) return FALSE;

Completed in 65 milliseconds