Searched refs:typ (Results 1 - 25 of 81) sorted by relevance

1234

/external/libvpx/libvpx/vpx_ports/
H A Dmem.h19 #define DECLARE_ALIGNED(n,typ,val) typ val __attribute__ ((aligned (n)))
21 #define DECLARE_ALIGNED(n,typ,val) __declspec(align(n)) typ val
24 #define DECLARE_ALIGNED(n,typ,val) typ val
34 #define DECLARE_ALIGNED_ARRAY(a,typ,val,n)\
35 typ val##_[(n)+(a)/sizeof(typ)+1];\
36 typ *va
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.h23 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp);
24 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
H A Dtsan_suppressions.cc78 SuppressionType conv(ReportType typ) { argument
79 if (typ == ReportTypeRace)
81 else if (typ == ReportTypeVptrRace)
83 else if (typ == ReportTypeUseAfterFree)
85 else if (typ == ReportTypeThreadLeak)
87 else if (typ == ReportTypeMutexDestroyLocked)
89 else if (typ == ReportTypeSignalUnsafe)
91 else if (typ == ReportTypeErrnoInSignal)
93 Printf("ThreadSanitizer: unknown report type %d\n", typ),
97 uptr IsSuppressed(ReportType typ, cons argument
117 IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) argument
[all...]
H A Dtsan_report.cc47 static const char *ReportTypeString(ReportType typ) { argument
48 if (typ == ReportTypeRace)
50 if (typ == ReportTypeVptrRace)
52 if (typ == ReportTypeUseAfterFree)
54 if (typ == ReportTypeThreadLeak)
56 if (typ == ReportTypeMutexDestroyLocked)
58 if (typ == ReportTypeSignalUnsafe)
60 if (typ == ReportTypeErrnoInSignal)
181 const char *rep_typ_str = ReportTypeString(rep->typ);
206 if (rep->typ
[all...]
H A Dtsan_vector.h27 explicit Vector(MBlockType typ) argument
28 : typ_(typ)
H A Dtsan_rtl_report.cc135 ScopedReport::ScopedReport(ReportType typ) { argument
140 rep_->typ = typ;
424 EventType typ = (EventType)(ev >> 61); local
426 DPrintf2(" %zu typ=%d pc=%zx\n", i, typ, pc);
427 if (typ == EventTypeMop) {
429 } else if (typ == EventTypeFuncEnter) {
431 } else if (typ == EventTypeFuncExit) {
436 if (typ
655 ReportType typ = ReportTypeRace; local
[all...]
/external/libvpx/libvpx/vpx/
H A Dvpx_codec.h384 # define VPX_CTRL_USE_TYPE(id, typ)
385 # define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ)
386 # define VPX_CTRL_VOID(id, typ)
413 # define VPX_CTRL_USE_TYPE(id, typ) \
415 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) UNUSED;\
418 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
433 # define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) \
435 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) DEPRECATED UNUSED;\
438 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
/external/srec/srec/include/
H A Dduk_args.h79 int typ; member in struct:__anon26805
87 #define SET_ARG_ENTRY(A,W,X,Y,Z) ((A)->typ=(W), (A)->flag=(X), (A)->name.a_string=(Y), (A)->max_args=1, (A)->def=(Z))
88 #define SET_ARRAY_ARG_ENTRY(A,W,X,Y,N,Z) ((A)->typ=((W)|A_ARRAY), (A)->flag=(X), (A)->name.a_string=(Y), (A)->max_args=(N), (A)->def=(Z))
93 unsigned long *valueLen, int typ);
94 int get_string_argument(arg_info *avlist, int avc, char *key, char *value, int valueLen, int *bytes_required, int typ);
H A Dutteranc.h94 char typ; /* s (16 bit), c (8 bit), u (newton .utb) */ member in struct:__anon26878
233 char typ, int endian, int do_skip);
235 char typ, int endian);
H A Dsample.h114 char typ; /* R (RIFF), N (NIST), P (RAW PCM) M (MU-LAW) */ member in struct:__anon26836
130 char typ; /* -Undefined as yet- */ member in struct:__anon26837
/external/libvpx/libvpx/vpx/internal/
H A Dvpx_codec_internal.h370 #define VPX_CTRL_USE_TYPE(id, typ) \
371 static typ id##__value(va_list args) {return va_arg(args, typ);} \
372 static typ id##__convert(void *x)\
377 typ d;\
385 #define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) \
386 static typ id##__value(va_list args) {return va_arg(args, typ);} \
387 static typ id##__convert(void *x)\
392 typ
[all...]
/external/chromium_org/chrome/common/extensions/docs/static/css/
H A Dprettify.css10 .typ { color: #606 } /* a type name */
26 .typ { color: #404; font-weight: bold }
/external/mdnsresponder/Clients/
H A Ddns-sd.c984 const char *nam, const char *typ, const char *dom, const char *host, const char *port, int argc, char **argv, DNSServiceFlags flags)
995 printf("Registering Service %s.%s%s%s", nam[0] ? nam : "<<Default>>", typ, dom[0] ? "." : "", dom);
1021 return(DNSServiceRegister(sdref, flags, opinterface, nam, typ, dom, host, registerPort.NotAnInteger, (uint16_t) (ptr-txt), txt, reg_reply, NULL));
1025 static char *gettype(char *buffer, char *typ) argument
1027 if (!typ || !*typ || (typ[0] == '.' && typ[1] == 0)) typ = "_http._tcp";
1028 if (!strchr(typ, '
983 RegisterService(DNSServiceRef *sdref, const char *nam, const char *typ, const char *dom, const char *host, const char *port, int argc, char **argv, DNSServiceFlags flags) argument
1035 char buffer[TypeBufferSize], *typ, *dom; local
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dsummary.py70 typ, msg = sys.exc_info()[:2]
71 outfile.write(fmt_err % (cu.name, typ.__name__, msg))
H A Dexecfile.py125 typ, err, tb = sys.exc_info()
126 raise ExceptionDuringRun(typ, err, tb.tb_next.tb_next)
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DIndexRangeCache.cpp77 IndexRangeCache::IndexRange::IndexRange(GLenum typ, intptr_t off, GLsizei c) argument
78 : type(typ), offset(off), count(c)
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Dtasn_new.c327 ASN1_TYPE *typ; local
357 typ = OPENSSL_malloc(sizeof(ASN1_TYPE));
358 if (!typ)
360 typ->value.ptr = NULL;
361 typ->type = -1;
362 *pval = (ASN1_VALUE *)typ;
H A Dtasn_fre.c220 ASN1_TYPE *typ = (ASN1_TYPE *)*pval; local
221 utype = typ->type;
222 pval = &typ->value.asn1_value;
/external/openssl/crypto/asn1/
H A Dtasn_new.c327 ASN1_TYPE *typ; local
357 typ = OPENSSL_malloc(sizeof(ASN1_TYPE));
358 if (!typ)
360 typ->value.ptr = NULL;
361 typ->type = -1;
362 *pval = (ASN1_VALUE *)typ;
H A Dtasn_fre.c220 ASN1_TYPE *typ = (ASN1_TYPE *)*pval; local
221 utype = typ->type;
222 pval = &typ->value.asn1_value;
/external/openfst/src/include/fst/
H A Dfloat-weight.h286 DivideType typ = DIVIDE_ANY) {
300 DivideType typ = DIVIDE_ANY) {
301 return Divide<float>(w1, w2, typ);
306 DivideType typ = DIVIDE_ANY) {
307 return Divide<double>(w1, w2, typ);
421 DivideType typ = DIVIDE_ANY) {
435 DivideType typ = DIVIDE_ANY) {
436 return Divide<float>(w1, w2, typ);
441 DivideType typ = DIVIDE_ANY) {
442 return Divide<double>(w1, w2, typ);
[all...]
H A Dproduct-weight.h108 DivideType typ = DIVIDE_ANY) {
109 return ProductWeight<W1, W2>(Divide(w.Value1(), v.Value1(), typ),
110 Divide(w.Value2(), v.Value2(), typ));
/external/qemu/audio/
H A Dcoreaudio.c138 const char *typ,
145 AUD_log (AUDIO_CAP, "Could not initialize %s\n", typ);
294 const char* typ = input ? "input" : "playback"; local
322 coreaudio_logerr2 (status, typ,
323 "Could not get default %s device\n", typ);
327 dolog ("Could not initialize %s - Unknown Audiodevice\n", typ);
341 coreaudio_logerr2 (status, typ,
369 coreaudio_logerr2 (status, typ,
385 coreaudio_logerr2 (status, typ,
401 coreaudio_logerr2 (status, typ,
136 coreaudio_logerr2( OSStatus status, const char *typ, const char *fmt, ... ) argument
[all...]
H A Dalsaaudio.c186 const char *typ,
193 AUD_log (AUDIO_CAP, "Could not initialize %s\n", typ);
540 const char *typ = in ? "ADC" : "DAC"; local
556 alsa_logerr2 (err, typ, "Failed to open `%s':\n", pcm_name);
562 alsa_logerr2 (err, typ, "Failed to initialize hardware parameters\n");
572 alsa_logerr2 (err, typ, "Failed to set access type\n");
578 alsa_logerr2 (err, typ, "Failed to set format %d\n", req->fmt);
584 alsa_logerr2 (err, typ, "Failed to set frequency %d\n", req->freq);
594 alsa_logerr2 (err, typ, "Failed to set number of channels %d\n",
600 alsa_logerr2 (err, typ,
184 alsa_logerr2( int err, const char *typ, const char *fmt, ... ) argument
930 alsa_voice_ctl(snd_pcm_t *handle, const char *typ, int pause) argument
[all...]
H A Ddsound_template.h188 const char *typ = "ADC"; local
193 const char *typ = "DAC"; local
232 dsound_logerr2 (hr, typ, "Could not create " NAME "\n");
238 dsound_logerr2 (hr, typ, "Could not get " NAME " format\n");
252 dsound_logerr2 (hr, typ, "Could not get " NAME " format\n");

Completed in 423 milliseconds

1234