/external/srtp/crypto/kernel/ |
D | crypto_kernel.c | 179 kernel_auth_type_t *atype = crypto_kernel.auth_type_list; in crypto_kernel_status() local 207 while(atype != NULL) { in crypto_kernel_status() 208 printf("auth func: %s\n", atype->auth_type->description); in crypto_kernel_status() 209 printf(" instance count: %d\n", atype->auth_type->ref_count); in crypto_kernel_status() 211 status = auth_type_self_test(atype->auth_type); in crypto_kernel_status() 217 atype = atype->next; in crypto_kernel_status() 272 kernel_auth_type_t *atype = crypto_kernel.auth_type_list; in crypto_kernel_shutdown() local 273 crypto_kernel.auth_type_list = atype->next; in crypto_kernel_shutdown() 276 atype->auth_type->description); in crypto_kernel_shutdown() 277 crypto_free(atype); in crypto_kernel_shutdown() [all …]
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | opengl.hpp | 112 Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease = false); 120 Buffer(Size asize, int atype, unsigned int abufId, bool autoRelease = false); 129 Buffer(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false); 137 Buffer(Size asize, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false); 154 …void create(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = fals… 162 void create(Size asize, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false); 542 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, Target target, bool autoRelease) : rows_(0… in Buffer() argument 544 create(arows, acols, atype, target, autoRelease); in Buffer() 548 cv::ogl::Buffer::Buffer(Size asize, int atype, Target target, bool autoRelease) : rows_(0), cols_(0… in Buffer() argument 550 create(asize, atype, target, autoRelease); in Buffer() [all …]
|
/external/iproute2/ip/ |
D | tcp_metrics.c | 100 int family, i, atype, stype, dlen = 0, slen = 0; in process_msg() local 123 atype = TCP_METRICS_ATTR_ADDR_IPV4; in process_msg() 133 atype = TCP_METRICS_ATTR_ADDR_IPV6; in process_msg() 173 addattr_l(&req2.n, sizeof(req2), atype, &daddr.data, in process_msg() 313 int atype = -1, stype = -1; in tcpm_do_cmd() local 370 atype = TCP_METRICS_ATTR_ADDR_IPV4; in tcpm_do_cmd() 372 atype = TCP_METRICS_ATTR_ADDR_IPV6; in tcpm_do_cmd() 374 if ((CMD_DEL & cmd) && atype < 0) { in tcpm_do_cmd() 383 if (cmd == CMD_DEL && atype < 0) in tcpm_do_cmd() 387 if (cmd == CMD_FLUSH && atype >= 0) in tcpm_do_cmd() [all …]
|
/external/javassist/src/main/javassist/expr/ |
D | NewArray.java | 81 int atype = iterator.byteAt(currentPos + 1); in getComponentType() local 82 return getPrimitiveType(atype); in getComponentType() 96 CtClass getPrimitiveType(int atype) { in getPrimitiveType() argument 97 switch (atype) { in getPrimitiveType() 115 throw new RuntimeException("bad atype: " + atype); in getPrimitiveType()
|
/external/clang/test/Parser/ |
D | declarators.c | 29 typedef int atype; typedef 31 atype /* expected-error {{unexpected type name 'atype': expected identifier}} */ in test3() argument 32 ) int x, atype; {} in test3()
|
/external/opencv3/modules/core/src/ |
D | opengl.cpp | 466 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease) : r… in Buffer() argument 471 (void) atype; in Buffer() 479 type_ = atype; in Buffer() 483 cv::ogl::Buffer::Buffer(Size asize, int atype, unsigned int abufId, bool autoRelease) : rows_(0), c… in Buffer() argument 487 (void) atype; in Buffer() 495 type_ = atype; in Buffer() 531 void cv::ogl::Buffer::create(int arows, int acols, int atype, Target target, bool autoRelease) in create() argument 536 (void) atype; in create() 541 if (rows_ != arows || cols_ != acols || type_ != atype) in create() 543 const GLsizeiptr asize = arows * acols * CV_ELEM_SIZE(atype); in create() [all …]
|
D | precomp.hpp | 214 inline bool checkScalar(const Mat& sc, int atype, int sckind, int akind) in checkScalar() argument 221 int cn = CV_MAT_CN(atype); in checkScalar() 228 inline bool checkScalar(InputArray sc, int atype, int sckind, int akind) in checkScalar() argument 235 int cn = CV_MAT_CN(atype); in checkScalar()
|
D | dxt.cpp | 2916 int atype = _srcA.type(), btype = _srcB.type(), in ocl_mulSpectrums() local 2921 if ( !(atype == CV_32FC2 && btype == CV_32FC2) || flags != 0 ) in ocl_mulSpectrums() 2927 _dst.create(A.size(), atype); in ocl_mulSpectrums()
|
/external/javassist/src/main/javassist/ |
D | CtPrimitiveType.java | 32 String methodName, String mDesc, int opcode, int atype, in CtPrimitiveType() argument 40 arrayType = atype; in CtPrimitiveType()
|
/external/boringssl/src/crypto/x509/ |
D | x509_att.c | 283 int atype = 0; in X509_ATTRIBUTE_set1_data() local 292 atype = stmp->type; in X509_ATTRIBUTE_set1_data() 296 atype = attrtype; in X509_ATTRIBUTE_set1_data() 313 ASN1_TYPE_set(ttmp, atype, stmp); in X509_ATTRIBUTE_set1_data()
|
/external/javassist/src/main/javassist/compiler/ |
D | MemberCodeGen.java | 351 int atype = 0; in atNewArrayExpr2() local 354 atype = T_BOOLEAN; in atNewArrayExpr2() 357 atype = T_CHAR; in atNewArrayExpr2() 360 atype = T_FLOAT; in atNewArrayExpr2() 363 atype = T_DOUBLE; in atNewArrayExpr2() 366 atype = T_BYTE; in atNewArrayExpr2() 369 atype = T_SHORT; in atNewArrayExpr2() 372 atype = T_INT; in atNewArrayExpr2() 375 atype = T_LONG; in atNewArrayExpr2() 383 bytecode.add(atype); in atNewArrayExpr2()
|
/external/libxml2/ |
D | valid.c | 1853 if (cur->atype == XML_ATTRIBUTE_ID) { in xmlScanIDAttributeDecl() 2036 ret->atype = type; in xmlAddAttributeDecl() 2171 cur->atype = attr->atype; in xmlCopyAttribute() 2221 switch (attr->atype) { in xmlDumpAttributeDecl() 2646 attr->atype = XML_ATTRIBUTE_ID; in xmlAddID() 2720 if ((attrDecl != NULL) && (attrDecl->atype == XML_ATTRIBUTE_ID)) in xmlIsID() 2760 attr->atype = 0; in xmlRemoveID() 3038 (attrDecl->atype == XML_ATTRIBUTE_IDREF || in xmlIsRef() 3039 attrDecl->atype == XML_ATTRIBUTE_IDREFS)) in xmlIsRef() 3995 if (attrDecl->atype == XML_ATTRIBUTE_CDATA) in xmlValidCtxtNormalizeAttributeValue() [all …]
|
D | xmlschemastypes.c | 2754 if (attr->atype != XML_ATTRIBUTE_ID) { in xmlSchemaValAtomicType() 2767 attr->atype = XML_ATTRIBUTE_ID; in xmlSchemaValAtomicType() 2792 attr->atype = XML_ATTRIBUTE_IDREF; in xmlSchemaValAtomicType() 2806 attr->atype = XML_ATTRIBUTE_IDREFS; in xmlSchemaValAtomicType() 2837 attr->atype = XML_ATTRIBUTE_ENTITY; in xmlSchemaValAtomicType() 2854 attr->atype = XML_ATTRIBUTE_ENTITIES; in xmlSchemaValAtomicType()
|
D | tree.c | 2083 if ((cur->doc != NULL) && (cur->atype == XML_ATTRIBUTE_ID)) { in xmlFreeProp() 2802 if (prop->atype == XML_ATTRIBUTE_ID) { in xmlSetTreeDoc() 6874 if (prop->atype == XML_ATTRIBUTE_ID) { in xmlSetNsProp() 6876 prop->atype = XML_ATTRIBUTE_ID; in xmlSetNsProp() 6902 if (prop->atype == XML_ATTRIBUTE_ID) in xmlSetNsProp() 9208 (((xmlAttrPtr) cur)->atype == XML_ATTRIBUTE_ID)) in xmlDOMWrapAdoptBranch() 9212 ((xmlAttrPtr) cur)->atype = 0; in xmlDOMWrapAdoptBranch() 9932 attr->atype = 0; in xmlDOMWrapAdoptAttr()
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | AddressImpl.java | 208 public void setAddressType(int atype) { in setAddressType() argument 209 addressType = atype; in setAddressType()
|
/external/tcpdump/ |
D | print-bgp.c | 1305 u_int atype, const u_char *pptr, u_int len) in bgp_attr_print() argument 1324 switch (atype) { in bgp_attr_print() 1360 as_size = bgp_attr_get_as_size(ndo, atype, pptr, len); in bgp_attr_print() 2164 u_int aflags, atype, alenlen, alen; in bgp_attr_print() local 2170 atype = *(tptr + 1); in bgp_attr_print() 2183 "Unknown Attribute", atype, in bgp_attr_print() 2185 atype, in bgp_attr_print() 2199 if (!bgp_attr_print(ndo, atype, tptr, alen)) in bgp_attr_print() 2209 …ND_PRINT((ndo, "\n\t no Attribute %u decoder", atype)); /* we have no decoder for the attribute… in bgp_attr_print() 2460 int aflags, atype, alenlen, alen; in bgp_update_print() local [all …]
|
/external/opencv3/modules/python/src2/ |
D | hdr_parser.py | 344 atype = arg[:pos+1].strip() 346 atype = (atype + " " + aname).strip() 349 atype = arg 353 atype += aname[bidx:] 355 decl[3].append([atype, aname, defval, []])
|
/external/boringssl/src/crypto/asn1/ |
D | tasn_prn.c | 556 ASN1_TYPE *atype = (ASN1_TYPE *)*fld; in asn1_primitive_print() local 557 utype = atype->type; in asn1_primitive_print() 558 fld = &atype->value.asn1_value; in asn1_primitive_print()
|
/external/llvm/test/Transforms/LICM/ |
D | hoist-bitcast-load.ll | 202 %atype = type opaque 209 %cab = bitcast i16* %ca to %atype* 210 %c = bitcast %atype* %cab to i32*
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
D | records.py | 194 def __exit__(self, atype, value, traceback): argument
|
D | output_writers.py | 412 def __exit__(self, atype, value, traceback): argument
|
/external/chromium-trace/catapult/perf_insights/third_party/cloudstorage/ |
D | storage_api.py | 486 def __exit__(self, atype, value, traceback): argument 756 def __exit__(self, atype, value, traceback): argument
|
/external/javassist/src/main/javassist/bytecode/ |
D | Bytecode.java | 1246 public void addNewarray(int atype, int length) { in addNewarray() argument 1249 add(atype); in addNewarray()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_tgsi_soa.c | 793 enum tgsi_opcode_type atype; // Actual type of the value in emit_fetch_system_value() local 800 atype = TGSI_TYPE_UNSIGNED; in emit_fetch_system_value() 805 atype = TGSI_TYPE_UNSIGNED; in emit_fetch_system_value() 811 atype = TGSI_TYPE_FLOAT; in emit_fetch_system_value() 815 if (atype != stype) { in emit_fetch_system_value()
|
/external/libxml2/include/libxml/ |
D | tree.h | 265 xmlAttributeType atype; /* The attribute type */ member 445 xmlAttributeType atype; /* the attribute type if validating */ member
|