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

/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp1121 inline jlong build_long_from( u1 c1, u1 c2, u1 c3, u1 c4, u1 c5, u1 c6, u1 c7, u1 c8 ) { function
1132 inline jlong build_long_from( u1* p ) { function
1133 return build_long_from( p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7] );
1139 jlong u = build_long_from( c1, c2, c3, c4, c5, c6, c7, c8 );
1144 jlong u = build_long_from( p );

Completed in 37 milliseconds