/third_party/ltp/testcases/kernel/syscalls/ipc/msgrcv/ |
D | msgrcv08.c | 53 long mtype; /* message type, must be > 0 */ member 62 long mtype = 121; in msr() local 65 msbs.mtype = mtype; in msr() 70 sret = msgrcv(msqid, &msbr, sizeof(msbr.mtext), -mtype, IPC_NOWAIT | MSG_NOERROR); in msr() 77 if (msbr.mtype != mtype) in msr() 79 "found mtype %ld, expected %ld\n", msbr.mtype, mtype); in msr()
|
D | msgrcv07.c | 75 MSGBUF snd_buf1 = {.mtype = MSGTYPE1, .mtext = MSG1}; in test_msg_except() 76 MSGBUF snd_buf2 = {.mtype = MSGTYPE2, .mtext = MSG2}; in test_msg_except() 103 rcv_buf.mtype == MSGTYPE1) in test_msg_except() 117 MSGBUF snd_buf1 = {.mtype = MSGTYPE1, .mtext = MSG1}; in test_msg_noerror() 141 rcv_buf.mtype == MSGTYPE1) in test_msg_noerror()
|
/third_party/ffmpeg/libavcodec/ |
D | h261enc.c | 245 h->mtype = 0; in ff_h261_encode_mb() 273 h->mtype++; in ff_h261_encode_mb() 276 h->mtype += 3; in ff_h261_encode_mb() 278 h->mtype += 3; in ff_h261_encode_mb() 280 h->mtype++; in ff_h261_encode_mb() 281 av_assert1(h->mtype > 1); in ff_h261_encode_mb() 285 h->mtype++; in ff_h261_encode_mb() 290 ff_h261_mtype_bits[h->mtype], in ff_h261_encode_mb() 291 ff_h261_mtype_code[h->mtype]); in ff_h261_encode_mb() 293 h->mtype = ff_h261_mtype_map[h->mtype]; in ff_h261_encode_mb() [all …]
|
D | h261dec.c | 217 h->mtype &= ~MB_TYPE_H261_FIL; in h261_decode_mb_skipped() 394 h->mtype = get_vlc2(&s->gb, h261_mtype_vlc.table, H261_MTYPE_VLC_BITS, 2); in h261_decode_mb() 395 if (h->mtype < 0) { in h261_decode_mb() 397 h->mtype); in h261_decode_mb() 400 av_assert0(h->mtype < FF_ARRAY_ELEMS(ff_h261_mtype_map)); in h261_decode_mb() 401 h->mtype = ff_h261_mtype_map[h->mtype]; in h261_decode_mb() 404 if (IS_QUANT(h->mtype)) in h261_decode_mb() 407 s->mb_intra = IS_INTRA4x4(h->mtype); in h261_decode_mb() 410 if (IS_16X16(h->mtype)) { in h261_decode_mb() 433 if (HAS_CBP(h->mtype)) in h261_decode_mb() [all …]
|
D | h261.h | 42 int mtype; member
|
D | h261.c | 72 if (!(IS_FIL(h->mtype))) in ff_h261_loop_filter()
|
/third_party/musl/libc-test/src/functional/ |
D | pthread_mutex.c | 28 static int test_relock(int mtype) in test_relock() argument 41 T(pthread_mutexattr_settype(&ma, mtype)); in test_relock() 74 static int test_unlock(int mtype) in test_unlock() argument 85 T(pthread_mutexattr_settype(&ma, mtype)); in test_unlock() 94 static int test_unlock_other(int mtype) in test_unlock_other() argument 105 T(pthread_mutexattr_settype(&ma, mtype)); in test_unlock_other()
|
D | pthread_mutex_pi.c | 28 static int test_relock(int mtype) in test_relock() argument 41 T(pthread_mutexattr_settype(&ma, mtype)); in test_relock() 75 static int test_unlock(int mtype) in test_unlock() argument 86 T(pthread_mutexattr_settype(&ma, mtype)); in test_unlock() 96 static int test_unlock_other(int mtype) in test_unlock_other() argument 107 T(pthread_mutexattr_settype(&ma, mtype)); in test_unlock_other()
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtph261pay.c | 91 guint32 mtype; member 428 decode_mtype (GstBitReader * br, guint * mtype) in decode_mtype() argument 437 *mtype = mtype_table[i][3]; in decode_mtype() 483 decode_tcoeff (GstBitReader * br, guint mtype) in decode_tcoeff() argument 490 if (mtype & MTYPE_INTER) { in decode_tcoeff() 607 if ((ret = decode_mtype (br, &mb->mtype)) != PARSE_OK) in parse_mb() 611 (mb->mtype & MTYPE_INTER) != 0, (mb->mtype & MTYPE_MC) != 0, in parse_mb() 612 (mb->mtype & MTYPE_FIL) != 0, (mb->mtype & MTYPE_MQUANT) != 0, in parse_mb() 613 (mb->mtype & MTYPE_MVD) != 0, (mb->mtype & MTYPE_CBP) != 0, in parse_mb() 614 (mb->mtype & MTYPE_TCOEFF) != 0); in parse_mb() [all …]
|
/third_party/FreeBSD/sys/kern/ |
D | subr_kobj.c | 241 struct malloc_type *mtype, in kobj_create() argument 249 obj = bsd_malloc(cls->size, mtype, mflags | M_ZERO); in kobj_create() 302 kobj_delete(kobj_t obj, struct malloc_type *mtype) in kobj_delete() argument 322 if (mtype) in kobj_delete() 323 bsd_free(obj, mtype); in kobj_delete()
|
/third_party/ltp/testcases/kernel/containers/sysvipc/ |
D | mesgq_nstest.c | 47 long int mtype; /* type of received/sent message */ member 62 n, msg.mtype, n, msg.mtext); in mesgq_read() 135 msg.mtype = 5; in main()
|
D | msg_comm.c | 46 long mtype; member 75 m.mtype = 1; in chld1_msg() 117 m.mtype = 2; in chld2_msg()
|
/third_party/ltp/testcases/kernel/syscalls/ipc/lib/ |
D | libipc.c | 114 m_buf->mtype = 1; in init_buf() 116 m_buf->mtype = type; in init_buf()
|
D | ipcmsg.h | 49 long mtype; member
|
/third_party/gstreamer/gstplugins_bad/ext/hls/ |
D | m3u8.c | 1221 #define GST_HLS_MEDIA_TYPE_NAME(mtype) gst_m3u8_hls_media_type_get_nick(mtype) argument 1223 gst_m3u8_hls_media_type_get_nick (GstHLSMediaType mtype) in gst_m3u8_hls_media_type_get_nick() argument 1229 if (mtype < 0 || mtype >= GST_HLS_N_MEDIA_TYPES) in gst_m3u8_hls_media_type_get_nick() 1232 return nicks[mtype]; in gst_m3u8_hls_media_type_get_nick() 1261 media->mtype = GST_HLS_MEDIA_TYPE_INVALID; in gst_m3u8_parse_media() 1266 media->mtype = gst_m3u8_get_hls_media_type_from_string (v); in gst_m3u8_parse_media() 1295 if (media->mtype == GST_HLS_MEDIA_TYPE_INVALID) in gst_m3u8_parse_media() 1304 if (media->mtype == GST_HLS_MEDIA_TYPE_CLOSED_CAPTIONS) in gst_m3u8_parse_media() 1308 GST_HLS_MEDIA_TYPE_NAME (media->mtype), media->group_id, media->name, in gst_m3u8_parse_media() 1604 if (media_groups[media->mtype] == NULL) { in gst_hls_master_playlist_new_from_data() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/arm/mach-omap2/omap3/ |
D | emif4.c | 137 if ((sysinfo.mtype == DDR_COMBO) || (sysinfo.mtype == DDR_STACKED)) in dram_init()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/ |
D | 2-3.c | 148 int mtype; member 207 if (td->mtype == PTHREAD_MUTEX_RECURSIVE) { in child() 215 if (td->mtype == PTHREAD_MUTEX_ERRORCHECK) { in child() 371 td->mtype = scenarii[scenar].m_type; in main()
|
/third_party/FreeBSD/sys/sys/ |
D | kobj.h | 202 struct malloc_type *mtype, 214 void kobj_delete(kobj_t obj, struct malloc_type *mtype);
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_dane_enable.pod | 18 uint8_t mtype, uint8_t ord); 21 uint8_t mtype, unsigned const char *data, size_t dlen); 24 uint8_t *mtype, unsigned const char **data, 49 The B<mtype> argument specifies a DANE TLSA matching type and the B<md> 126 B<selector>, B<mtype> and B<data> parameters is updated to the corresponding 201 uint8_t usage, selector, mtype; 228 /* set usage, selector, mtype, data, len */ 245 ret = SSL_dane_tlsa_add(ssl, usage, selector, mtype, data, len); 308 (void) SSL_get0_dane_tlsa(ssl, &usage, &selector, &mtype, NULL, NULL); 309 printf("DANE TLSA %d %d %d %s at depth %d\n", usage, selector, mtype,
|
/third_party/musl/include/sys/ |
D | msg.h | 44 long mtype; member
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | msg.h | 44 long mtype; member
|
/third_party/openssl/test/ |
D | danetest.c | 250 static uint8_t mtype; in tlsa_import_rr() local 255 { &mtype, "mtype", checked_uint8 }, in tlsa_import_rr() 271 ret = SSL_dane_tlsa_add(ssl, usage, selector, mtype, data, len); in tlsa_import_rr()
|
/third_party/openssl/ssl/ |
D | ssl_lib.c | 118 uint8_t mtype; member 161 mdevp[dane_mds[i].mtype] = md; in dane_ctx_enable() 162 mdord[dane_mds[i].mtype] = dane_mds[i].ord; in dane_ctx_enable() 231 if (SSL_dane_tlsa_add(to, t->usage, t->selector, t->mtype, in ssl_dane_dup() 239 const EVP_MD *md, uint8_t mtype, uint8_t ord) in dane_mtype_set() argument 243 if (mtype == DANETLS_MATCHING_FULL && md != NULL) { in dane_mtype_set() 248 if (mtype > dctx->mdmax) { in dane_mtype_set() 251 int n = ((int)mtype) + 1; in dane_mtype_set() 268 for (i = dctx->mdmax + 1; i < mtype; ++i) { in dane_mtype_set() 273 dctx->mdmax = mtype; in dane_mtype_set() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/arm/include/asm/arch-omap3/ |
D | sys_proto.h | 13 u32 mtype; member
|
/third_party/uboot/u-boot-2020.01/board/lg/sniper/ |
D | sniper.c | 26 .mtype = DDR_STACKED,
|