Searched refs:ftype (Results 1 - 16 of 16) 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/jdk/src/share/classes/java/io/
H A DObjectStreamField.java138 Class<?> ftype = field.getType();
139 type = (showType || ftype.isPrimitive()) ? ftype : Object.class;
140 signature = getClassSignature(ftype).intern();
H A DObjectStreamClass.java840 Class<?> ftype = f.getType();
841 if (ftype != null && type.isAssignableFrom(ftype)) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.cpp49 void ResourceArray::sort(size_t esize, ftype f) {
52 template <MEMFLAGS F> void CHeapArray<F>::sort(size_t esize, ftype f) {
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/com/sun/jndi/ldap/
H A DFilter.java338 int ftype;
342 ftype = LDAP_FILTER_LE;
346 ftype = LDAP_FILTER_GE;
350 ftype = LDAP_FILTER_APPROX;
354 ftype = LDAP_FILTER_EXT;
359 //initializing ftype to make the compiler happy
360 ftype = 0x00;
409 if (filter[i] == ':' && ftype == LDAP_FILTER_EXT) {
442 } else if (ftype == LDAP_FILTER_EXT && filter[typeStart] == ':') {
462 if (filter[i] == ':' && ftype
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFilterParentPath.java79 final Type ftype = _filterExpr.typeCheck(stable);
80 if (ftype instanceof NodeSetType == false) {
81 if (ftype instanceof ReferenceType) {
85 else if (ftype instanceof ResultTreeType) {
89 else if (ftype instanceof NodeType) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.hpp86 Node *value_from_mem(Node *mem, BasicType ft, const Type *ftype, const TypeOopPtr *adr_t, Node *alloc);
87 Node *value_from_mem_phi(Node *mem, BasicType ft, const Type *ftype, const TypeOopPtr *adr_t, Node *alloc, Node_Stack *value_phis, int level);
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/jdk/src/share/classes/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java463 String ftype = guessContentTypeFromName(fullpath);
464 if (ftype == null && is.markSupported()) {
465 ftype = guessContentTypeFromStream(is);
467 if (ftype != null) {
468 msgh.add("content-type", ftype);
/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...]
H A DMethodHandles.java2167 MethodType ftype = fallback.type();
2168 if (!ttype.equals(ftype))
2169 throw misMatchedTypes("target and fallback types", ttype, ftype);
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java1046 Class<?> ftype;
1052 ftype = f.getType();
1058 ftype = (Class<?>) scnt[3];
1071 expType = MethodType.methodType(ftype, HasFields.class);
1073 expType = MethodType.methodType(void.class, HasFields.class, ftype);
1080 case TEST_FIND_FIELD: mh = lookup.findGetter(fclass, fname, ftype); break;
1081 case TEST_FIND_STATIC: mh = lookup.findStaticGetter(fclass, fname, ftype); break;
1085 TEST_FIND_FIELD: mh = lookup.findSetter(fclass, fname, ftype); break;
1087 TEST_FIND_STATIC: mh = lookup.findStaticSetter(fclass, fname, ftype); break;
1101 System.out.println("find"+(isStatic?"Static":"")+(isGetter?"Getter":"Setter")+" "+fclass.getName()+"."+fname+"/"+ftype
[all...]
/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)) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftVoice.java169 double[] ftype = co_filter_type;
177 return ftype;

Completed in 945 milliseconds