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

12345

/external/chromium_org/third_party/libvpx/source/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
33 #define DECLARE_ALIGNED_ARRAY(a,typ,val,n)\
34 typ val##_[(n)+(a)/sizeof(typ)+1];\
35 typ *va
[all...]
/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.cc95 SuppressionType conv(ReportType typ) { argument
96 if (typ == ReportTypeRace)
98 else if (typ == ReportTypeVptrRace)
100 else if (typ == ReportTypeUseAfterFree)
102 else if (typ == ReportTypeThreadLeak)
104 else if (typ == ReportTypeMutexDestroyLocked)
106 else if (typ == ReportTypeMutexDoubleLock)
108 else if (typ == ReportTypeMutexBadUnlock)
110 else if (typ == ReportTypeMutexBadReadLock)
112 else if (typ
124 IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp) argument
145 IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) argument
[all...]
H A Dtsan_report.cc66 static const char *ReportTypeString(ReportType typ) { argument
67 if (typ == ReportTypeRace)
69 if (typ == ReportTypeVptrRace)
71 if (typ == ReportTypeUseAfterFree)
73 if (typ == ReportTypeThreadLeak)
75 if (typ == ReportTypeMutexDestroyLocked)
77 if (typ == ReportTypeMutexDoubleLock)
79 if (typ == ReportTypeMutexBadUnlock)
81 if (typ == ReportTypeMutexBadReadLock)
83 if (typ
[all...]
H A Dtsan_rtl_report.cc150 ScopedReport::ScopedReport(ReportType typ) { argument
154 rep_->typ = typ;
425 EventType typ = (EventType)(ev >> 61); local
427 DPrintf2(" %zu typ=%d pc=%zx\n", i, typ, pc);
428 if (typ == EventTypeMop) {
430 } else if (typ == EventTypeFuncEnter) {
432 } else if (typ == EventTypeFuncExit) {
437 if (typ
665 ReportType typ = ReportTypeRace; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/
H A Dvpx_codec.h393 # define VPX_CTRL_USE_TYPE(id, typ)
394 # define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ)
395 # define VPX_CTRL_VOID(id, typ)
422 # define VPX_CTRL_USE_TYPE(id, typ) \
424 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) UNUSED;\
427 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
442 # define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) \
444 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) DEPRECATED UNUSED;\
447 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
/external/chromium_org/tools/usb_gadget/
H A Dhid_descriptors.py18 def _PackItem(tag, typ, value=0, force_length=0):
26 typ: Item type.
34 return struct.pack('<B', tag << 4 | typ << 2 | 0)
36 return struct.pack('<BB', tag << 4 | typ << 2 | 1, value)
38 return struct.pack('<BH', tag << 4 | typ << 2 | 2, value)
40 return struct.pack('<BI', tag << 4 | typ << 2 | 3, value)
45 def _DefineItem(name, tag, typ):
51 typ: Item type.
57 assert typ >= 0 and typ <
[all...]
H A Dgadget.py111 typ = request_type & usb_constants.Type.MASK
113 if typ == usb_constants.Type.STANDARD:
116 elif typ == usb_constants.Type.CLASS:
119 elif typ == usb_constants.Type.VENDOR:
137 typ = request_type & usb_constants.Type.MASK
139 if typ == usb_constants.Type.STANDARD:
142 elif typ == usb_constants.Type.CLASS:
145 elif typ == usb_constants.Type.VENDOR:
211 def GetDescriptor(self, recipient, typ, index, lang, length):
218 typ
[all...]
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_ip6_var.h107 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
112 (val) = (typ)(mtod((m), caddr_t) + (off)); \
118 (val) = (typ)(mtod(t, caddr_t) + tmp); \
120 (val) = (typ)NULL; \
/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:__anon31096
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);
/external/libvpx/libvpx/vpx/internal/
H A Dvpx_codec_internal.h404 #define VPX_CTRL_USE_TYPE(id, typ) \
405 static typ id##__value(va_list args) {return va_arg(args, typ);} \
406 static typ id##__convert(void *x)\
411 typ d;\
419 #define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) \
420 static typ id##__value(va_list args) {return va_arg(args, typ);} \
421 static typ id##__convert(void *x)\
426 typ
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/internal/
H A Dvpx_codec_internal.h365 #define VPX_CTRL_USE_TYPE(id, typ) \
366 static VPX_INLINE typ id##__value(va_list args) {return va_arg(args, typ);}
369 #define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) \
370 static VPX_INLINE typ id##__value(va_list args) {return va_arg(args, typ);}
/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))
/external/okhttp/website/static/
H A Dapp-theme.css41 .typ { color: #222; }
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dtasn_new.c325 ASN1_TYPE *typ; local
355 typ = OPENSSL_malloc(sizeof(ASN1_TYPE));
356 if (!typ)
358 typ->value.ptr = NULL;
359 typ->type = -1;
360 *pval = (ASN1_VALUE *)typ;
H A Dtasn_fre.c218 ASN1_TYPE *typ = (ASN1_TYPE *)*pval; local
219 utype = typ->type;
220 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;
/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...]
/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 5642 milliseconds

12345