Home
last modified time | relevance | path

Searched refs:rtype (Results 1 – 25 of 60) sorted by relevance

123

/external/libxml2/
Dgentest.py402 def is_known_param_type(name, rtype): argument
412 if rtype[0:6] == 'const ':
413 crtype = rtype[6:]
415 crtype = rtype
428 """ % (name, crtype, name, name, rtype))
686 rtype = arg.xpathEval("string(@type)")
687 if rtype == 'void':
691 type = type_convert(rtype, nam, info, module, name, n)
692 if is_known_param_type(type, rtype) == 0:
696 rtype[0:6] == 'const ':
[all …]
/external/opencv3/modules/core/src/cuda/
Dgpu_mat.cu470 void cv::cuda::GpuMat::convertTo(OutputArray _dst, int rtype, Stream& stream) const in convertTo() argument
472 if (rtype < 0) in convertTo()
473 rtype = type(); in convertTo()
475 rtype = CV_MAKE_TYPE(CV_MAT_DEPTH(rtype), channels()); in convertTo()
478 const int ddepth = CV_MAT_DEPTH(rtype); in convertTo()
493 _dst.create(size(), rtype); in convertTo()
511 void cv::cuda::GpuMat::convertTo(OutputArray _dst, int rtype, double alpha, double beta, Stream& st… in convertTo() argument
513 if (rtype < 0) in convertTo()
514 rtype = type(); in convertTo()
516 rtype = CV_MAKETYPE(CV_MAT_DEPTH(rtype), channels()); in convertTo()
[all …]
/external/kernel-headers/original/uapi/linux/
Duhid.h83 __u8 rtype; member
89 __u8 rtype; member
102 __u8 rtype; member
159 __u8 rtype; member
/external/javassist/src/main/javassist/compiler/
DJavac.java162 CtClass rtype = gen.resolver.lookupClass(r); in compileMethod() local
163 recordReturnType(rtype, false); in compileMethod()
164 CtMethod method = new CtMethod(rtype, r.getVariable().get(), in compileMethod()
197 CtClass rtype; in compileBody() local
200 rtype = ((CtMethod)method).getReturnType(); in compileBody()
203 rtype = CtClass.voidType; in compileBody()
205 recordReturnType(rtype, false); in compileBody()
206 boolean isVoid = rtype == CtClass.voidType; in compileBody()
209 makeDefaultBody(bytecode, rtype); in compileBody()
/external/javassist/src/main/javassist/
DCtBehavior.java777 CtClass rtype = getReturnType0(); in insertAfter() local
778 int varNo = jv.recordReturnType(rtype, true); in insertAfter()
782 int handlerLen = insertAfterHandler(asFinally, b, rtype, varNo, in insertAfter()
785 insertAfterAdvice(b, jv, src, pool, rtype, varNo); in insertAfter()
827 ConstPool cp, CtClass rtype, int varNo) in insertAfterAdvice() argument
830 if (rtype == CtClass.voidType) { in insertAfterAdvice()
839 code.addStore(varNo, rtype); in insertAfterAdvice()
841 code.addLoad(varNo, rtype); in insertAfterAdvice()
842 if (rtype.isPrimitive()) in insertAfterAdvice()
843 code.addOpcode(((CtPrimitiveType)rtype).getReturnOp()); in insertAfterAdvice()
[all …]
/external/opencv3/modules/core/src/
Dprecomp.hpp118 typedef T3 rtype; typedef
126 typedef T3 rtype; typedef
134 typedef T3 rtype; typedef
142 typedef T rtype; typedef
150 typedef T rtype; typedef
Dcuda_gpu_mat.cpp503 void cv::cuda::GpuMat::convertTo(OutputArray _dst, int rtype, Stream& _stream) const in convertTo() argument
506 (void) rtype; in convertTo()
511 void cv::cuda::GpuMat::convertTo(OutputArray _dst, int rtype, double alpha, double beta, Stream& _s… in convertTo() argument
514 (void) rtype; in convertTo()
/external/opencv3/modules/core/include/opencv2/core/
Dcuda.hpp194 void convertTo(OutputArray dst, int rtype) const;
197 void convertTo(OutputArray dst, int rtype, Stream& stream) const;
200 void convertTo(OutputArray dst, int rtype, double alpha, double beta = 0.0) const;
203 void convertTo(OutputArray dst, int rtype, double alpha, Stream& stream) const;
206 void convertTo(OutputArray dst, int rtype, double alpha, double beta, Stream& stream) const;
Dcuda.inl.hpp180 void GpuMat::convertTo(OutputArray dst, int rtype) const in convertTo()
182 convertTo(dst, rtype, Stream::Null()); in convertTo()
186 void GpuMat::convertTo(OutputArray dst, int rtype, double alpha, double beta) const in convertTo() argument
188 convertTo(dst, rtype, alpha, beta, Stream::Null()); in convertTo()
192 void GpuMat::convertTo(OutputArray dst, int rtype, double alpha, Stream& stream) const in convertTo() argument
194 convertTo(dst, rtype, alpha, 0.0, stream); in convertTo()
/external/opencv3/modules/core/misc/java/src/java/
Dcore+Mat.java280 public void convertTo(Mat m, int rtype, double alpha, double beta) in convertTo() argument
283 n_convertTo(nativeObj, m.nativeObj, rtype, alpha, beta); in convertTo()
289 public void convertTo(Mat m, int rtype, double alpha) in convertTo() argument
292 n_convertTo(nativeObj, m.nativeObj, rtype, alpha); in convertTo()
298 public void convertTo(Mat m, int rtype) in convertTo() argument
301 n_convertTo(nativeObj, m.nativeObj, rtype); in convertTo()
1154 …private static native void n_convertTo(long nativeObj, long m_nativeObj, int rtype, double alpha, … in n_convertTo() argument
1156 … private static native void n_convertTo(long nativeObj, long m_nativeObj, int rtype, double alpha); in n_convertTo() argument
1158 private static native void n_convertTo(long nativeObj, long m_nativeObj, int rtype); in n_convertTo() argument
/external/ppp/pppd/
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 <= sizeof (eap_typenames) / sizeof (char *))
[all …]
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
Dresolver.py397 servers, rtype = _winreg.QueryValueEx(key, 'NameServer')
403 dom, rtype = _winreg.QueryValueEx(key, 'Domain')
410 servers, rtype = _winreg.QueryValueEx(key, 'DhcpNameServer')
416 dom, rtype = _winreg.QueryValueEx(key, 'DhcpDomain')
422 search, rtype = _winreg.QueryValueEx(key, 'SearchList')
/external/opencv3/modules/calib3d/src/
Dcalibration.cpp3022 static Mat prepareCameraMatrix(Mat& cameraMatrix0, int rtype) in prepareCameraMatrix() argument
3024 Mat cameraMatrix = Mat::eye(3, 3, rtype); in prepareCameraMatrix()
3026 cameraMatrix0.convertTo(cameraMatrix, rtype); in prepareCameraMatrix()
3030 static Mat prepareDistCoeffs(Mat& distCoeffs0, int rtype) in prepareDistCoeffs() argument
3032 Mat distCoeffs = Mat::zeros(distCoeffs0.cols == 1 ? Size(1, 12) : Size(12, 1), rtype); in prepareDistCoeffs()
3043 distCoeffs0.convertTo(dstCoeffs, rtype); in prepareDistCoeffs()
3089 int rtype = rvec1.type(); in composeRT() local
3090 _rvec3.create(rvec1.size(), rtype); in composeRT()
3091 _tvec3.create(tvec1.size(), rtype); in composeRT()
3101 _dr3dr1.create(3, 3, rtype); in composeRT()
[all …]
Dsolvepnp.cpp69 int rtype = _rvec.type(), ttype = _tvec.type(); in solvePnP() local
71 CV_Assert( (rtype == CV_32F || rtype == CV_64F) && in solvePnP()
/external/opencv/ml/src/
Dmlnbayes.cpp294 int rtype = 0, rstep = 0, size; in predict() local
317 rtype = CV_MAT_TYPE(results->type); in predict()
318 rstep = CV_IS_MAT_CONT(results->type) ? 1 : results->step/CV_ELEM_SIZE(rtype); in predict()
370 if( rtype == CV_32SC1 ) in predict()
/external/webrtc/webrtc/p2p/base/
Dport_unittest.cc401 void TestLocalToRelay(RelayType rtype, ProtocolType proto) { in TestLocalToRelay() argument
404 Port* port2 = CreateRelayPort(kLocalAddr2, rtype, proto, PROTO_UDP); in TestLocalToRelay()
406 TestConnectivity("udp", port1, RelayName(rtype, proto), port2, in TestLocalToRelay()
407 rtype == RELAY_GTURN, true, true, true); in TestLocalToRelay()
430 void TestStunToRelay(NATType ntype, RelayType rtype, ProtocolType proto) { in TestStunToRelay() argument
434 Port* port2 = CreateRelayPort(kLocalAddr2, rtype, proto, PROTO_UDP); in TestStunToRelay()
436 TestConnectivity(StunName(ntype), port1, RelayName(rtype, proto), port2, in TestStunToRelay()
437 rtype == RELAY_GTURN, ntype != NAT_SYMMETRIC, true, true); in TestStunToRelay()
446 void TestTcpToRelay(RelayType rtype, ProtocolType proto) { in TestTcpToRelay() argument
449 Port* port2 = CreateRelayPort(kLocalAddr2, rtype, proto, PROTO_TCP); in TestTcpToRelay()
[all …]
/external/toybox/toys/pending/
Dip.c2323 static int tnl_ioctl(char *dev, int rtype, struct ip_tunnel_parm *ptnl) in tnl_ioctl() argument
2328 if ((rtype == SIOCCHGTUNNEL || rtype == SIOCDELTUNNEL) && *ptnl->name) in tnl_ioctl()
2332 if (rtype != SIOCGIFHWADDR) req.ifr_ifru.ifru_data = (void*)ptnl; in tnl_ioctl()
2335 if (rtype == SIOCGETTUNNEL) ret = ioctl(fd, rtype, &req); in tnl_ioctl()
2336 else if (rtype == SIOCGIFHWADDR) in tnl_ioctl()
2337 ret = (ioctl(fd, rtype, &req) < 0) ? -1 : req.ifr_addr.sa_family; in tnl_ioctl()
2338 else xioctl(fd, rtype, &req); in tnl_ioctl()
2633 int idx = 2, rtype = SIOCDELTUNNEL; in tunnelupdate() local
2637 rtype = SIOCADDTUNNEL; in tunnelupdate()
2640 rtype = SIOCCHGTUNNEL; in tunnelupdate()
[all …]
/external/opencv3/modules/ml/src/
Dnbayes.cpp224 int rtype = 0, rptype = 0; in operator ()() local
233 rtype = results->type(); in operator ()()
291 if( rtype == CV_32SC1 ) in operator ()()
/external/skia/src/core/
DSkDraw.cpp765 RectType rtype; in ComputeRectType() local
777 rtype = kPath_RectType; in ComputeRectType()
779 rtype = kFill_RectType; in ComputeRectType()
781 rtype = kHair_RectType; in ComputeRectType()
783 rtype = kStroke_RectType; in ComputeRectType()
785 rtype = kPath_RectType; in ComputeRectType()
787 return rtype; in ComputeRectType()
819 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize); in drawRect() local
821 if (kPath_RectType == rtype) { in drawRect()
847 const SkPoint& ssize = (kStroke_RectType == rtype) in drawRect()
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/docs/source/
Dcrcmod.predefined.rst91 :rtype: function
103 :rtype: integer
/external/wpa_supplicant_8/wpa_supplicant/dbus/
Ddbus_new.h146 enum wpa_ctrl_req_type rtype,
279 enum wpa_ctrl_req_type rtype, const char *default_txt) in wpas_dbus_signal_network_request() argument
/external/elfutils/libdwfl/
Drelocate.c323 int rtype, in relocate() argument
329 if (unlikely (rtype == 0)) in relocate()
337 Elf_Type type = ebl_reloc_simple_type (mod->ebl, rtype); in relocate()
/external/opencv3/modules/java/generator/src/cpp/
DMat.cpp512 (JNIEnv* env, jclass, jlong self, jlong m_nativeObj, jint rtype, jdouble alpha, jdouble beta);
515 (JNIEnv* env, jclass, jlong self, jlong m_nativeObj, jint rtype, jdouble alpha, jdouble beta) in Java_org_opencv_core_Mat_n_1convertTo__JJIDD() argument
522 me->convertTo( m, rtype, alpha, beta ); in Java_org_opencv_core_Mat_n_1convertTo__JJIDD()
532 (JNIEnv* env, jclass, jlong self, jlong m_nativeObj, jint rtype, jdouble alpha);
535 (JNIEnv* env, jclass, jlong self, jlong m_nativeObj, jint rtype, jdouble alpha) in Java_org_opencv_core_Mat_n_1convertTo__JJID() argument
542 me->convertTo( m, rtype, alpha ); in Java_org_opencv_core_Mat_n_1convertTo__JJID()
552 (JNIEnv* env, jclass, jlong self, jlong m_nativeObj, jint rtype);
555 (JNIEnv* env, jclass, jlong self, jlong m_nativeObj, jint rtype) in Java_org_opencv_core_Mat_n_1convertTo__JJI() argument
562 me->convertTo( m, rtype ); in Java_org_opencv_core_Mat_n_1convertTo__JJI()
/external/wpa_supplicant_8/wpa_supplicant/
Dnotify.h37 enum wpa_ctrl_req_type rtype,
/external/llvm/lib/ExecutionEngine/Interpreter/
DExternalFunctions.cpp217 ffi_type *rtype = ffiTypeFor(RetTy); in ffiInvoke() local
219 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) { in ffiInvoke()

123