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

/external/libffi/src/
H A Dprep_cif.c89 ffi_type *rtype, ffi_type **atypes)
101 cif->rtype = rtype;
106 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
110 FFI_ASSERT_VALID_TYPE(cif->rtype);
115 if (cif->rtype->type == FFI_TYPE_STRUCT
117 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
120 && (cif->rtype->size > 8)
88 ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes) argument
/external/libffi/src/cris/
H A Dffi.c159 ffi_type * rtype, ffi_type ** atypes)
171 cif->rtype = rtype;
175 if ((cif->rtype->size == 0)
176 && (initialize_aggregate_packed_struct (cif->rtype) != FFI_OK))
179 FFI_ASSERT_VALID_TYPE (cif->rtype);
218 switch (cif->rtype->type)
226 cif->flags = (unsigned) cif->rtype->type;
250 if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT))
252 ecif.rvalue = alloca (cif->rtype
157 ffi_prep_cif(ffi_cif * cif, ffi_abi abi, unsigned int nargs, ffi_type * rtype, ffi_type ** atypes) argument
[all...]
/external/javassist/src/main/javassist/
H A DCtBehavior.java777 CtClass rtype = getReturnType0();
778 int varNo = jv.recordReturnType(rtype, true);
782 int handlerLen = insertAfterHandler(asFinally, b, rtype, varNo,
785 insertAfterAdvice(b, jv, src, pool, rtype, varNo);
827 ConstPool cp, CtClass rtype, int varNo)
830 if (rtype == CtClass.voidType) {
839 code.addStore(varNo, rtype);
841 code.addLoad(varNo, rtype);
842 if (rtype.isPrimitive())
843 code.addOpcode(((CtPrimitiveType)rtype)
826 insertAfterAdvice(Bytecode code, Javac jv, String src, ConstPool cp, CtClass rtype, int varNo) argument
878 insertAfterHandler(boolean asFinally, Bytecode b, CtClass rtype, int returnVarNo, Javac javac, String src) argument
[all...]
/external/libffi/darwin-x86/
H A Dffi.h181 ffi_type *rtype; member in struct:__anon6078
350 ffi_type *rtype,
/external/libffi/include/
H A Dffi_real.h182 ffi_type *rtype; member in struct:__anon6086
351 ffi_type *rtype,
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp218 ffi_type *rtype = ffiTypeFor(RetTy); local
220 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) {
/external/opencv/ml/src/
H A Dmlnbayes.cpp294 int rtype = 0, rstep = 0, size; local
317 rtype = CV_MAT_TYPE(results->type);
318 rstep = CV_IS_MAT_CONT(results->type) ? 1 : results->step/CV_ELEM_SIZE(rtype);
370 if( rtype == CV_32SC1 )
/external/ppp/pppd/
H A Deap.c2150 int code, id, len, rtype, vallen; local
2175 GETCHAR(rtype, inp);
2177 if (rtype >= 1 &&
2178 rtype <= sizeof (eap_typenames) / sizeof (char *))
2179 printer(arg, " %s", eap_typenames[rtype-1]);
2181 printer(arg, " type=0x%x", rtype);
2182 switch (rtype) {
2310 GETCHAR(rtype, inp);
2312 if (rtype >= 1 &&
2313 rtype <
[all...]
/external/bluetooth/glib/gobject/
H A Dgsignal.c2029 GType rtype = signal_return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE; local
2032 g_value_init (&return_value, rtype);
2985 GType rtype = signal_return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE; local
2988 g_value_init (&return_value, rtype);
/external/clang/lib/CodeGen/
H A DCGClass.cpp1178 const RecordType *rtype = type->castAs<RecordType>(); local
1179 const CXXRecordDecl *record = cast<CXXRecordDecl>(rtype->getDecl());
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp1191 int rtype = QMetaType::type(returnTypeName); local
1192 if ((rtype == 0) && !returnTypeName.isEmpty()) {
1210 types.append(QtMethodMatchType::metaType(rtype, returnTypeName));
/external/skia/src/core/
H A DSkDraw.cpp674 RectType rtype; local
686 rtype = kPath_RectType;
688 rtype = kFill_RectType;
690 rtype = kHair_RectType;
692 rtype = kStroke_RectType;
694 rtype = kPath_RectType;
696 return rtype;
714 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize); local
717 if (kStroke_RectType == rtype && paint.isAntiAlias()) {
718 rtype
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp1340 const RecordType *rtype; local
1342 (rtype = type->getAs<RecordType>())) {
1350 S.FinalizeVarWithDestructor(var, rtype);

Completed in 1763 milliseconds