| /mirbsd/src/usr.bin/vi/vi/ |
| D | vs_msg.c | 229 vs_msg(sp, mtype, line, len) in vs_msg() argument 231 mtype_t mtype; 290 if (mtype == M_ERR) 293 if (mtype == M_ERR) 306 (void)vs_msgsave(sp, mtype, line, len); 314 if (mtype == M_NONE) { 315 vs_output(sp, mtype, line, len); 352 vs_output(sp, vip->mtype, ".\n", 2); 354 vs_output(sp, vip->mtype, ";", 1); 358 vip->mtype = mtype; [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | aout0.c | 33 #define MACHTYPE_OK(mtype) \ argument 34 ((mtype) == M_UNKNOWN || (mtype) == M_68010 || (mtype) == M_68020)
|
| D | aout-sparcle.c | 32 #define MACHTYPE_OK(mtype) ((mtype) == M_SPARC || (mtype) == M_SPARCLET) argument
|
| D | i386freebsd.c | 27 #define MACHTYPE_OK(mtype) ((mtype) == M_386_NETBSD || (mtype) == M_UNKNOWN) argument
|
| D | i386bsd.c | 37 #define MACHTYPE_OK(mtype) ((mtype) == M_386 || (mtype) == M_UNKNOWN) argument
|
| D | sparclynx.c | 46 #define MACHTYPE_OK(mtype) ((mtype) == M_UNKNOWN \ argument 47 || (mtype) == M_68010 \ 48 || (mtype) == M_68020 \ 49 || (mtype) == M_SPARC)
|
| D | i386dynix.c | 30 #define MACHTYPE_OK(mtype) ((mtype) == M_386 || (mtype) == M_UNKNOWN) argument
|
| D | mipsbsd.c | 34 #define MACHTYPE_OK(mtype) ((mtype) == M_UNKNOWN \ argument 35 || (mtype) == M_MIPS1 || (mtype) == M_MIPS2)
|
| D | aoutf1.h | 39 #define MACHTYPE_OK(mtype) \ argument 40 (((mtype) == M_SPARC && bfd_lookup_arch (bfd_arch_sparc, 0) != NULL) \ 41 || (((mtype) == M_UNKNOWN || (mtype) == M_68010 || (mtype) == M_68020) \
|
| D | aout-cris.c | 112 #define MACHTYPE_OK(mtype) ((mtype) == M_CRIS) argument
|
| D | m68klinux.c | 27 #define MACHTYPE_OK(mtype) ((mtype) == M_68020 || (mtype) == M_UNKNOWN) argument
|
| D | sparclinux.c | 28 #define MACHTYPE_OK(mtype) ((mtype) == M_SPARC || (mtype) == M_UNKNOWN) argument
|
| D | i386linux.c | 27 #define MACHTYPE_OK(mtype) ((mtype) == M_386 || (mtype) == M_UNKNOWN) argument
|
| /mirbsd/src/usr.bin/vi/common/ |
| D | mark.c | 111 mark_get(sp, key, mp, mtype) in mark_get() argument 115 mtype_t mtype; 124 msgq(sp, mtype, "017|Mark %s: not set", KEY_NAME(sp, key)); 128 msgq(sp, mtype, 139 msgq(sp, mtype,
|
| D | msg.h | 60 mtype_t mtype; /* Message type: M_NONE, M_ERR, M_INFO. */ member
|
| D | msg.c | 349 msgq_str(sp, mtype, str, fmt) in msgq_str() argument 351 mtype_t mtype; 358 msgq(sp, mtype, fmt); 365 msgq(sp, mtype, fmt, p);
|
| D | exf.c | 753 enum { NEWFILE, OLDFILE } mtype; local 822 mtype = NEWFILE; 834 mtype = OLDFILE; 955 switch (mtype) {
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | c-typeprint.c | 41 static void cp_type_print_method_args (struct type *mtype, char *prefix, 153 cp_type_print_method_args (struct type *mtype, char *prefix, char *varstring, in cp_type_print_method_args() argument 156 struct field *args = TYPE_FIELDS (mtype); in cp_type_print_method_args() 157 int nargs = TYPE_NFIELDS (mtype); in cp_type_print_method_args() 158 int varargs = TYPE_VARARGS (mtype); in cp_type_print_method_args() 1024 struct type *mtype = TYPE_FN_FIELD_TYPE (f, j); in c_type_print_base() local 1025 cp_type_print_method_args (mtype, in c_type_print_base()
|
| D | gdbtypes.c | 623 struct type *mtype; in lookup_member_type() local 625 mtype = alloc_type (TYPE_OBJFILE (type)); in lookup_member_type() 626 smash_to_member_type (mtype, domain, type); in lookup_member_type() 627 return (mtype); in lookup_member_type() 639 struct type *mtype; in allocate_stub_method() local 641 mtype = init_type (TYPE_CODE_METHOD, 1, TYPE_FLAG_STUB, NULL, in allocate_stub_method() 643 TYPE_TARGET_TYPE (mtype) = type; in allocate_stub_method() 645 return (mtype); in allocate_stub_method() 1513 struct type *mtype; in check_stub_method() local 1600 mtype = TYPE_FN_FIELD_TYPE (f, signature_id); in check_stub_method() [all …]
|
| /mirbsd/src/usr.sbin/timed/timed/ |
| D | readmsg.c | 44 #define LOOKAT(msg, mtype, mfrom, netp, froms) \ argument 45 (((mtype) == TSP_ANY || (mtype) == (msg).tsp_type) && \
|
| /mirbsd/src/sys/kern/ |
| D | subr_extent.c | 178 extent_create(name, start, end, mtype, storage, storagesize, flags) in extent_create() argument 181 int mtype; 239 mtype, (flags & EX_WAITOK) ? M_WAITOK : M_NOWAIT); 249 ex->ex_mtype = mtype;
|
| D | vfs_subr.c | 297 int mtype; local 300 mtype = mp->mnt_vfc->vfc_typenum; 301 mp->mnt_stat.f_fsid.val[0] = makedev(nblkdev + mtype, 0); 302 mp->mnt_stat.f_fsid.val[1] = mtype; 305 tfsid.val[0] = makedev(nblkdev + mtype, xxxfs_mntid); 306 tfsid.val[1] = mtype;
|
| /mirbsd/src/sys/sys/ |
| D | msg.h | 111 long mtype; /* message type (+ve integer) */ member
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Storable/ |
| D | Storable.xs | 2686 char mtype = 'P'; in store_tied() local 2709 mtype = 'q'; in store_tied() 2712 if (!(mg = mg_find(sv, mtype))) in store_tied() 2713 CROAK(("No magic '%c' found while storing tied %s", mtype, in store_tied() 2865 char mtype = '\0'; /* for blessed ref to tied structures */ in store_hook() local 2902 mtype = 'P'; in store_hook() 2906 mtype = 'P'; in store_hook() 2910 mtype = 'q'; in store_hook() 3230 if (!(mg = mg_find(sv, mtype))) { in store_hook() 3233 mtype, (svt == SVt_PVHV) ? "hash" : in store_hook() [all …]
|
| /mirbsd/src/gnu/usr.bin/cvs/src/ |
| D | cvs.h | 317 enum mtype enum 659 int do_module (DBM * db, char *mname, enum mtype m_type, char *msg,
|