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

/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.cpp65 ffi_type *ftype; local
68 ftype = &ffi_type_void;
72 ftype = &ffi_type_uint8;
76 ftype = &ffi_type_uint16;
80 ftype = &ffi_type_sint8;
84 ftype = &ffi_type_sint16;
88 ftype = &ffi_type_sint32;
92 ftype = &ffi_type_sint64;
96 ftype = &ffi_type_float;
100 ftype
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.hpp33 extern "C" { typedef int (*ftype)(const void*, const void*); } typedef
71 void sort (size_t esize, ftype f); // sort the array
105 void sort (size_t esize, ftype f); // sort the array
147 void sort(int f(etype*, etype*)) { base_class::sort(esize, (ftype)f); } \
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DDirectMethodHandle.java498 private static int ftypeKind(Class<?> ftype) { argument
499 if (ftype.isPrimitive())
500 return Wrapper.forPrimitiveType(ftype).ordinal();
501 else if (VerifyType.isNullReferenceConversion(Object.class, ftype))
513 Class<?> ftype = m.getFieldType();
525 preparedFieldLambdaForm(formOp, isVolatile, ftype);
530 LambdaForm lform = preparedFieldLambdaForm(formOp, isVolatile, ftype);
537 private static LambdaForm preparedFieldLambdaForm(byte formOp, boolean isVolatile, Class<?> ftype) { argument
538 int afIndex = afIndex(formOp, isVolatile, ftypeKind(ftype));
541 lform = makePreparedFieldLambdaForm(formOp, isVolatile, ftypeKind(ftype));
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.cpp1104 const Type* ftype = phase->type(test_value->in(CMoveNode::IfFalse)); local
1106 if (ftype == TypeInt::ZERO && !TypeInt::ZERO->higher_equal(ttype)) {
1108 } else if (ttype == TypeInt::ZERO && !TypeInt::ZERO->higher_equal(ftype)) {
H A Dmacro.cpp472 Node *PhaseMacroExpand::value_from_mem(Node *sfpt_mem, BasicType ft, const Type *ftype, const TypeOopPtr *adr_t, Node *alloc) { argument
544 Node * phi = value_from_mem_phi(mem, ft, ftype, adr_t, alloc, &value_phis, ValueSearchLimit);
/openjdk7/hotspot/src/share/vm/prims/
H A DjniCheck.cpp208 checkStaticFieldID(JavaThread* thr, jfieldID fid, jclass cls, int ftype) argument
229 if ((fd.field_type() != ftype) &&
230 !(fd.field_type() == T_ARRAY && ftype == T_OBJECT)) {
236 checkInstanceFieldID(JavaThread* thr, jfieldID fid, jobject obj, int ftype) argument
266 if ((fd.field_type() != ftype) &&
267 !(fd.field_type() == T_ARRAY && ftype == T_OBJECT)) {

Completed in 166 milliseconds