/external/boringssl/src/crypto/asn1/ |
tasn_fre.c | 192 int utype; local 204 utype = typ->type; 209 utype = -1; 213 utype = it->utype; 214 if ((utype != V_ASN1_BOOLEAN) && !*pval) 218 switch (utype) {
|
tasn_new.c | 319 int utype; local 331 utype = -1; 333 utype = it->utype; 334 switch (utype) { 357 str = ASN1_STRING_type_new(utype); 370 int utype; local 380 utype = -1; 382 utype = it->utype; [all...] |
tasn_enc.c | 488 int utype; local 492 utype = it->utype; 498 len = asn1_ex_i2c(pval, NULL, &utype, it); 503 * call to asn1_ex_i2c() could change utype. 505 if ((utype == V_ASN1_SEQUENCE) || (utype == V_ASN1_SET) || 506 (utype == V_ASN1_OTHER)) 524 tag = utype; 530 asn1_ex_i2c(pval, *out, &utype, it) 550 int utype; local [all...] |
tasn_dec.c | 244 if (!(ASN1_tag2bit(otag) & it->utype)) { 267 exptag = it->utype; 304 | it->utype); 735 int ret = 0, utype; local 748 utype = tag; 751 utype = it->utype; 753 if (utype == V_ASN1_ANY) { 765 ret = asn1_check_tlen(NULL, &utype, &oclass, NULL, NULL, 772 utype = V_ASN1_OTHER [all...] |
/external/strace/ |
msghdr.c | 239 const unsigned int utype = cmsg_type; local 243 if (utype < ARRAY_SIZE(cmsg_socket_printers) 244 && cmsg_socket_printers[utype].printer 245 && data_len >= cmsg_socket_printers[utype].min_len) { 247 cmsg_socket_printers[utype].printer(tcp, cmsg_data, data_len); 252 if (utype < ARRAY_SIZE(cmsg_ip_printers) 253 && cmsg_ip_printers[utype].printer 254 && data_len >= cmsg_ip_printers[utype].min_len) { 256 cmsg_ip_printers[utype].printer(tcp, cmsg_data, data_len);
|
/external/boringssl/src/crypto/x509/ |
asn1_gen.c | 119 int utype; member in struct:__anon15482 134 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf, 136 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype); 186 if ((asn1_tags.utype == V_ASN1_SEQUENCE) 187 || (asn1_tags.utype == V_ASN1_SET)) { 196 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf, depth, perr); 198 ret = asn1_str2type(asn1_tags.str, asn1_tags.format, asn1_tags.utype); 307 int utype; local 326 utype = asn1_str2tag(elem, len); 328 if (utype == -1) [all...] |
/external/flatbuffers/src/ |
reflection.cpp | 28 case reflection::UType: 120 case reflection::UType: 526 case reflection::UType: 601 case reflection::UType: 655 auto utype = table->GetField<uint8_t>(utype_offset, 0); local 656 if (utype != 0) { 659 auto child_obj = fb_enum->values()->Get(utype)->object();
|
/art/compiler/optimizing/ |
loop_optimization.cc | 235 DataType::Type utype = HVecOperation::ToUnsignedType(type); local 236 if (IsZeroExtensionAndGet(a, utype, r) && IsZeroExtensionAndGet(b, utype, s)) { 256 DataType::Type utype = HVecOperation::ToUnsignedType(type); local 257 if (IsZeroExtensionAndGet(a, utype, r)) { [all...] |
/external/boringssl/src/include/openssl/ |
asn1t.h | 518 long utype; /* underlying type */ member in struct:ASN1_ITEM_st 562 * structure. In this case the 'utype' field 619 typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it); 872 int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
|