Searched defs:typ (Results 1 - 25 of 32) sorted by relevance

12

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cc66 static const char *conv(ReportType typ) { argument
67 if (typ == ReportTypeRace)
69 else if (typ == ReportTypeVptrRace)
71 else if (typ == ReportTypeUseAfterFree)
73 else if (typ == ReportTypeVptrUseAfterFree)
75 else if (typ == ReportTypeThreadLeak)
77 else if (typ == ReportTypeMutexDestroyLocked)
79 else if (typ == ReportTypeMutexDoubleLock)
81 else if (typ == ReportTypeMutexBadUnlock)
83 else if (typ
97 IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp) argument
121 IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) argument
[all...]
H A Dtsan_vector.h27 explicit Vector(MBlockType typ) argument
28 : typ_(typ)
H A Dtsan_mman.cc165 void *internal_alloc(MBlockType typ, uptr sz) { argument
H A Dtsan_report.h105 ReportType typ; member in class:__tsan::ReportDesc
H A Dtsan_rtl_mutex.cc49 static void ReportMutexMisuse(ThreadState *thr, uptr pc, ReportType typ, argument
56 ScopedReport rep(typ);
H A Dtsan_report.cc84 static const char *ReportTypeString(ReportType typ) { argument
85 if (typ == ReportTypeRace)
87 if (typ == ReportTypeVptrRace)
89 if (typ == ReportTypeUseAfterFree)
91 if (typ == ReportTypeVptrUseAfterFree)
93 if (typ == ReportTypeThreadLeak)
95 if (typ == ReportTypeMutexDestroyLocked)
97 if (typ == ReportTypeMutexDoubleLock)
99 if (typ == ReportTypeMutexBadUnlock)
101 if (typ
[all...]
H A Dtsan_rtl_report.cc137 ScopedReport::ScopedReport(ReportType typ) { argument
141 rep_->typ = typ;
403 EventType typ = (EventType)(ev >> 61); local
405 DPrintf2(" %zu typ=%d pc=%zx\n", i, typ, pc);
406 if (typ == EventTypeMop) {
408 } else if (typ == EventTypeFuncEnter) {
410 } else if (typ == EventTypeFuncExit) {
415 if (typ
600 ReportType typ = ReportTypeRace; local
[all...]
H A Dtsan_rtl.h516 explicit ScopedReport(ReportType typ);
565 void ALWAYS_INLINE StatInc(ThreadState *thr, StatType typ, u64 n = 1) { argument
567 thr->stat[typ] += n;
570 void ALWAYS_INLINE StatSet(ThreadState *thr, StatType typ, u64 n) { argument
572 thr->stat[typ] = n;
734 EventType typ, u64 addr) {
737 DCHECK_GE((int)typ, 0);
738 DCHECK_LE((int)typ, 7);
751 Event ev = (u64)addr | ((u64)typ << 61);
733 TraceAddEvent(ThreadState *thr, FastState fs, EventType typ, u64 addr) argument
/external/boringssl/src/crypto/asn1/
H A Dtasn_fre.c218 ASN1_TYPE *typ = (ASN1_TYPE *)*pval; local
219 utype = typ->type;
220 pval = &typ->value.asn1_value;
H A Dtasn_new.c326 ASN1_TYPE *typ; local
359 typ = OPENSSL_malloc(sizeof(ASN1_TYPE));
360 if (!typ)
362 typ->value.ptr = NULL;
363 typ->type = -1;
364 *pval = (ASN1_VALUE *)typ;
H A Dtasn_dec.c927 ASN1_TYPE *typ = NULL; local
940 typ = ASN1_TYPE_new();
941 if (typ == NULL)
943 *pval = (ASN1_VALUE *)typ;
946 typ = (ASN1_TYPE *)*pval;
948 if (utype != typ->type)
949 ASN1_TYPE_set(typ, utype, NULL);
951 pval = &typ->value.asn1_value;
1065 if (typ && (utype == V_ASN1_NULL))
1066 typ
[all...]
H A Dtasn_enc.c601 ASN1_TYPE *typ; local
602 typ = (ASN1_TYPE *)*pval;
603 utype = typ->type;
605 pval = &typ->value.asn1_value;
/external/boringssl/src/crypto/x509v3/
H A Dv3_conf.c313 ASN1_TYPE *typ; local
315 typ = ASN1_generate_v3(value, ctx);
316 if (typ == NULL)
318 *ext_len = i2d_ASN1_TYPE(typ, &ext_der);
319 ASN1_TYPE_free(typ);
/external/compiler-rt/lib/tsan/go/
H A Dtsan_go.cc35 void *internal_alloc(MBlockType typ, uptr sz) { argument
/external/openssh/
H A Daudit-bsm.c258 bsm_audit_record(int typ, char *string, au_event_t event_no) argument
271 rc = (typ == 0) ? 0 : -1;
273 debug3("BSM audit: typ %d rc %d \"%s\"", typ, rc, string);
283 (void) au_write(ad, AUToReturnFunc(typ, rc));
/external/tcpdump/
H A Dprint-domain.c360 register u_short typ, len; local
374 typ = EXTRACT_16BITS(cp);
383 if (class != C_IN && typ != T_OPT)
390 if (typ == T_OPT) {
412 printf(" %s", tok2str(ns_type2str, "Type%d", typ));
416 switch (typ) {
/external/icu/icu4c/source/test/intltest/
H A Ddcfmtest.cpp158 static const char *formattableType(Formattable::Type typ) { argument
167 if (typ<0 || typ>Formattable::kObject) {
170 return types[typ];
/external/openfst/src/include/fst/
H A Dstring-weight.h454 DivideType typ) {
456 if (typ != DIVIDE_LEFT) {
484 DivideType typ) {
486 if (typ != DIVIDE_RIGHT) {
514 DivideType typ) {
516 if (typ != DIVIDE_RIGHT) {
452 Divide(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2, DivideType typ) argument
482 Divide(const StringWeight<L, STRING_RIGHT> &w1, const StringWeight<L, STRING_RIGHT> &w2, DivideType typ) argument
512 Divide(const StringWeight<L, STRING_RIGHT_RESTRICT> &w1, const StringWeight<L, STRING_RIGHT_RESTRICT> &w2, DivideType typ) argument
/external/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc45 MachineType typ = TypeOf(OpParameter<LoadRepresentation>(node)); local
61 opcode = typ == kTypeInt32 ? kIA32Movsxbl : kIA32Movzxbl;
64 opcode = typ == kTypeInt32 ? kIA32Movsxwl : kIA32Movzxwl;
/external/boringssl/src/crypto/x509/
H A Dasn1_gen.c487 ASN1_TYPE *typ = ASN1_generate_v3(sk_CONF_VALUE_value(sect, i)->value, cnf); local
488 if (!typ)
490 if (!sk_ASN1_TYPE_push(sk, typ))
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Djp2.h97 OPJ_UINT16 cn, typ, asoc; member in struct:opj_jp2_cdef_info
/external/v8/src/compiler/arm/
H A Dinstruction-selector-arm.cc286 MachineType typ = TypeOf(OpParameter<LoadRepresentation>(node)); local
301 opcode = typ == kTypeUint32 ? kArmLdrb : kArmLdrsb;
304 opcode = typ == kTypeUint32 ? kArmLdrh : kArmLdrsh;
/external/v8/src/compiler/arm64/
H A Dinstruction-selector-arm64.cc160 MachineType typ = TypeOf(OpParameter<LoadRepresentation>(node)); local
177 opcode = typ == kTypeInt32 ? kArm64Ldrsb : kArm64Ldrb;
181 opcode = typ == kTypeInt32 ? kArm64Ldrsh : kArm64Ldrh;
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc60 MachineType typ = TypeOf(OpParameter<LoadRepresentation>(node)); local
76 opcode = typ == kTypeInt32 ? kX64Movsxbl : kX64Movzxbl;
79 opcode = typ == kTypeInt32 ? kX64Movsxwl : kX64Movzxwl;
/external/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c441 unsigned char typ = *p++; local
442 if (sp->typecnt <= typ)
445 sp->types[timecnt++] = typ;

Completed in 977 milliseconds

12