Searched refs:primType (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_reference.c84 unsigned primType : 8; /* If primitive data involved, it's type */ member in struct:RefInfo
122 get_prim_size(jvmtiPrimitiveType primType) argument
126 switch ( primType ) {
161 get_key_elements(RefIndex index, jvmtiPrimitiveType primType, argument
174 *nelements = byteLen / get_prim_size(primType);
184 ", primType=%d"
192 info->primType,
217 jint index, jvalue value, jvmtiPrimitiveType primType)
231 if ( fields[index].primType!=0 || fields[index].primType!
216 dump_field(FieldInfo *fields, jvalue *fvalues, int n_fields, jint index, jvalue value, jvmtiPrimitiveType primType) argument
269 verify_field(RefIndex list, FieldInfo *fields, jvalue *fvalues, int n_fields, jint index, jvalue value, jvmtiPrimitiveType primType) argument
295 fill_in_field_value(RefIndex list, FieldInfo *fields, jvalue *fvalues, int n_fields, jint index, jvalue value, jvmtiPrimitiveType primType) argument
504 jvmtiPrimitiveType primType; local
748 reference_prim_field(RefIndex next, jvmtiHeapReferenceKind refKind, jvmtiPrimitiveType primType, jvalue field_value, jint field_index) argument
771 reference_prim_array(RefIndex next, jvmtiPrimitiveType primType, const void *elements, jint elementCount) argument
[all...]
H A Dhprof_reference.h48 jvmtiPrimitiveType primType, jvalue value, jint field_index);
H A Dhprof_util.c992 primTypeToSigChar(jvmtiPrimitiveType primType) argument
997 switch ( primType ) {
1033 jvmtiPrimitiveType primType; local
1035 primType = 0;
1037 return primType;
1041 primType = JVMTI_PRIMITIVE_TYPE_BYTE;
1044 primType = JVMTI_PRIMITIVE_TYPE_CHAR;
1047 primType = JVMTI_PRIMITIVE_TYPE_FLOAT;
1050 primType = JVMTI_PRIMITIVE_TYPE_DOUBLE;
1053 primType
[all...]
H A Dhprof.h164 unsigned char primType; member in struct:FieldInfo
H A Dhprof_util.h126 char primTypeToSigChar(jvmtiPrimitiveType primType);
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DAccessorGenerator.java653 protected short unboxingMethodForPrimitiveType(Class primType) { argument
654 if (primType == Boolean.TYPE) {
656 } else if (primType == Byte.TYPE) {
658 } else if (primType == Character.TYPE) {
660 } else if (primType == Short.TYPE) {
662 } else if (primType == Integer.TYPE) {
664 } else if (primType == Long.TYPE) {
666 } else if (primType == Float.TYPE) {
668 } else if (primType == Double.TYPE) {
671 throw new InternalError("Illegal primitive type " + primType
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgCDebugInfoBuilder.java696 int primType = intIndex & RESERVED_TYPE_MASK;
697 switch (primType) {
700 boolean unsigned = (primType == RESERVED_TYPE_UNSIGNED_INT);

Completed in 67 milliseconds