Searched refs:minor (Results 1 - 25 of 968) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/libpcap/dist/pcap/
H A Dcompiler-tests.h77 * Check whether this is GCC major.minor or a later release, or some
84 #define PCAP_IS_AT_LEAST_GNUC_VERSION(major, minor) 0
87 #define PCAP_IS_AT_LEAST_GNUC_VERSION(major, minor) \
89 (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
93 * Check whether this is Clang major.minor or a later release.
98 #define PCAP_IS_AT_LEAST_CLANG_VERSION(major, minor) 0
101 #define PCAP_IS_AT_LEAST_CLANG_VERSION(major, minor) \
103 (__clang_major__ == (major) && __clang_minor__ >= (minor)))
107 * Check whether this is Sun C/SunPro C/Oracle Studio major.minor
112 * one or two hex digits being the minor versio
[all...]
/netbsd-current/external/bsd/tcpdump/dist/
H A Dcompiler-tests.h77 * Check whether this is GCC major.minor or a later release, or some
84 #define ND_IS_AT_LEAST_GNUC_VERSION(major, minor) 0
87 #define ND_IS_AT_LEAST_GNUC_VERSION(major, minor) \
89 (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
93 * Check whether this is Clang major.minor or a later release.
98 #define ND_IS_AT_LEAST_CLANG_VERSION(major, minor) 0
101 #define ND_IS_AT_LEAST_CLANG_VERSION(major, minor) \
103 (__clang_major__ == (major) && __clang_minor__ >= (minor)))
107 * Check whether this is Sun C/SunPro C/Oracle Studio major.minor
112 * one or two hex digits being the minor versio
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dproducer.h23 /* Check for GCC >= 4.x according to the symtab->producer string. Return minor
31 extern int producer_is_gcc (const char *producer, int *major, int *minor);
38 extern bool producer_is_icc (const char *producer, int *major, int *minor);
46 extern bool producer_is_clang (const char *producer, int *major, int *minor);
H A Dproducer.c30 int major, minor; local
32 if (! producer_is_gcc (producer, &major, &minor))
38 return minor;
44 producer_is_gcc (const char *producer, int *major, int *minor) argument
54 if (minor == NULL)
55 minor = &min;
68 if (sscanf (cs, "%d.%d", major, minor) == 2)
81 int major, minor; local
83 if (! producer_is_icc (producer, &major, &minor))
92 producer_is_icc (const char *producer, int *major, int *minor) argument
133 producer_is_clang(const char *producer, int *major, int *minor) argument
166 int major = 0, minor = 0; local
177 int major = 0, minor = 0; local
189 int major = 0, minor = 0; local
200 int major = 0, minor = 0; local
211 int major = 0, minor = 0; local
220 int major = 0, minor = 0; local
227 int major = 0, minor = 0; local
235 int major = 0, minor = 0; local
243 int major = 0, minor = 0; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dproducer.h23 /* Check for GCC >= 4.x according to the symtab->producer string. Return minor
31 extern int producer_is_gcc (const char *producer, int *major, int *minor);
39 0 as minor release. External releases have 4 fields, 3 of them are
53 extern bool producer_is_icc (const char *producer, int *major, int *minor);
H A Dproducer.c29 int major, minor; local
31 if (! producer_is_gcc (producer, &major, &minor))
37 return minor;
43 producer_is_gcc (const char *producer, int *major, int *minor) argument
53 if (minor == NULL)
54 minor = &min;
67 if (sscanf (cs, "%d.%d", major, minor) == 2)
79 producer_is_icc (const char *producer, int *major, int *minor) argument
88 if (minor == NULL)
89 minor
149 int major = 0, minor = 0; local
160 int major = 0, minor = 0; local
172 int major = 0, minor = 0; local
183 int major = 0, minor = 0; local
194 int major = 0, minor = 0; local
203 int major = 0, minor = 0; local
210 int major = 0, minor = 0; local
218 int major = 0, minor = 0; local
226 int major = 0, minor = 0; local
[all...]
/netbsd-current/external/bsd/ntp/dist/
H A Dpackageinfo.sh18 # To move from dev -RC to new -stable and -dev major/minor version, set
19 # minor and/or major to the new version, repotype to match the new
20 # minor version, empty prerelease, and set point=NEW. UpdatePoint
54 # odd minor numbers are for -dev, even minor numbers are for -stable
55 # UpdatePoint will fail if repotype is inconsistent with minor.
58 minor=8
62 version=${proto}.${major}.${minor}
64 *) version=${major}.${minor}
79 ### Point number, after "major.minor
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_mac.h56 u16 minor; member in struct:__sanitizer::VersionBase
58 VersionBase(u16 major, u16 minor) : major(major), minor(minor) {} argument
61 return major == other.major && minor == other.minor;
65 (major == other.major && minor >= other.minor);
71 MacosVersion(u16 major, u16 minor) : VersionBase(major, minor) {} argument
75 DarwinKernelVersion(u16 major, u16 minor) argument
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/include/drm/
H A Ddrm_debugfs.h63 * struct drm_info_node - Per-minor debugfs node structure
75 /** @minor: &struct drm_minor for this node. */
76 struct drm_minor *minor; member in struct:drm_info_node
87 struct drm_minor *minor);
89 int count, struct drm_minor *minor);
93 struct drm_minor *minor)
99 int count, struct drm_minor *minor)
91 drm_debugfs_create_files(const struct drm_info_list *files, int count, struct dentry *root, struct drm_minor *minor) argument
98 drm_debugfs_remove_files(const struct drm_info_list *files, int count, struct drm_minor *minor) argument
/netbsd-current/etc/etc.luna68k/
H A DMAKEDEV.conf12 ttya) major=7; minor=0 ;;
13 ttyb) major=7; minor=1 ;;
15 mkdev $i c $major $minor "" "" $u_uucp
26 major=40; minor=0; mode=0644
27 mkdev xp c $major $minor $mode
31 major=41; minor=0; mode=0644
32 mkdev lcd c $major $minor $mode
/netbsd-current/sys/arch/vax/include/
H A Ddisklabel.h50 * We use the highest bit of the minor number for the partition number.
57 #define DISKUNIT(dev) ((minor(dev) / OLDMAXPARTITIONS) % __VAX_MAXDISKS)
58 #define DISKPART(dev) ((minor(dev) % OLDMAXPARTITIONS) + \
59 ((minor(dev) / (__VAX_MAXDISKS * OLDMAXPARTITIONS)) * OLDMAXPARTITIONS))
/netbsd-current/crypto/external/bsd/openssl/dist/test/testutil/
H A Dprovider.c69 int major, minor, patch; member in struct:__anon98
89 || sscanf(vs, "%d.%d.%d", &vers->major, &vers->minor, &vers->patch) != 3)
99 int fips_provider_version_eq(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
106 return major == prov.major && minor == prov.minor && patch == prov.patch;
109 int fips_provider_version_ne(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
116 return major != prov.major || minor != prov.minor || patch != prov.patch;
119 int fips_provider_version_le(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
128 && (prov.minor < mino
132 fips_provider_version_lt(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
145 fips_provider_version_gt(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
158 fips_provider_version_ge(OSSL_LIB_CTX *libctx, int major, int minor, int patch) argument
174 int major, minor, patch, r; local
[all...]
/netbsd-current/sys/arch/amiga/dev/
H A Dserreg.h65 #define SERUNIT(dev) (minor(dev) & 0x7f)
66 #define DIALOUT(dev) (minor(dev) & 0x80)
/netbsd-current/sys/external/bsd/drm2/dist/drm/i915/
H A Dintel_csr.h13 #define CSR_VERSION(major, minor) ((major) << 16 | (minor))
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dcompat_level.h29 #define compat_level_from_major_minor(major, minor, msg_fn) \
30 compat_level_from_numbers((major), (minor), 0, (msg_fn))
/netbsd-current/sys/dev/sysmon/
H A Dsysmon.c85 * Info about our minor "devices"
103 * Attach a minor device for wdog, power, or envsys. Manage a
105 * detached if there are still users with the minor device opened.
108 * minor device - make sure the refcnt is zero!
111 sysmon_attach_minor(int minor, struct sysmon_opvec *opvec) argument
117 if (sysmon_opvec_table[minor] == NULL) {
118 sysmon_refcnt[minor] = 0;
119 sysmon_opvec_table[minor] = opvec;
124 if (sysmon_refcnt[minor] == 0) {
125 sysmon_opvec_table[minor]
[all...]
/netbsd-current/sys/arch/atari/stand/tostools/aptck/
H A Daptck.h39 #define LUN(major, minor) (minor)
40 #define TARGET(major, minor) ((major) & 0x0007)
41 #define BUS(major, minor) (((major) >> 3) & 0x1FFF)
42 #define BIOSDEV(major, minor) (((minor) == 0) ? ((major) + 2) : 0)
60 u_int minor; /* XHDI minor number */ member in struct:__anon8290
/netbsd-current/sys/arch/atari/stand/tostools/libtos/
H A Ddiskio.h39 #define LUN(major, minor) (minor)
40 #define TARGET(major, minor) ((major) & 0x0007)
41 #define BUS(major, minor) (((major) >> 3) & 0x1FFF)
42 #define BIOSDEV(major, minor) (((minor) == 0) ? ((major) + 2) : 0)
52 u_int minor; /* XHDI minor number */ member in struct:__anon8299
/netbsd-current/external/public-domain/xz/dist/src/common/
H A Dtuklib_common.h53 # define TUKLIB_GNUC_REQ(major, minor) \
54 ((__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)) \
57 # define TUKLIB_GNUC_REQ(major, minor) 0
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
H A Dzfs_onexit.h55 extern int zfs_onexit_add_cb(minor_t minor, void (*func)(void *), void *data,
57 extern int zfs_onexit_del_cb(minor_t minor, uint64_t action_handle,
59 extern int zfs_onexit_cb_data(minor_t minor, uint64_t action_handle,
/netbsd-current/sys/external/bsd/drm2/dist/drm/
H A Ddrm_drv.c96 * device. However, this doesn't mean that the minor is active. Minors are
115 struct drm_minor *minor; local
119 minor = kzalloc(sizeof(*minor), GFP_KERNEL);
120 if (!minor)
123 minor->type = type;
124 minor->dev = dev;
139 minor->index = r;
142 minor->kdev = drm_sysfs_minor_alloc(minor);
163 struct drm_minor **slot, *minor; local
185 struct drm_minor *minor; local
226 struct drm_minor *minor; local
260 struct drm_minor *minor; local
279 drm_minor_release(struct drm_minor *minor) argument
965 struct drm_minor *minor; local
1004 struct drm_minor *minor; local
1186 struct drm_minor *minor; local
[all...]
/netbsd-current/external/bsd/ntp/dist/lib/isc/win32/include/isc/
H A Dwin32os.h59 isc_win32os_versioncheck(unsigned int major, unsigned int minor,
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dgcov-iov.c35 unsigned long minor = 0; local
49 minor = strtoul (ptr + 1, 0, 10);
63 v[2] = minor + '0';
71 argv[1], major, minor, argv[2], phase);
/netbsd-current/external/gpl3/gdb.old/dist/opcodes/
H A Darc-ext.c103 p[3] = minor opcode (if opcode == 3)
125 int minor = p[3]; local
127 &arc_extension_map.instructions[INST_HASH (major, minor)];
131 insn->minor = minor;
282 mangled. We pass (in minor opcode), the instruction word. Here
294 unsigned char minor; local
307 minor = i;
309 minor = (c == 0x07) ? b : c;
328 minor
[all...]
/netbsd-current/external/gpl3/gdb/dist/opcodes/
H A Darc-ext.c103 p[3] = minor opcode (if opcode == 3)
125 int minor = p[3]; local
127 &arc_extension_map.instructions[INST_HASH (major, minor)];
131 insn->minor = minor;
282 mangled. We pass (in minor opcode), the instruction word. Here
294 unsigned char minor; local
307 minor = i;
309 minor = (c == 0x07) ? b : c;
328 minor
[all...]

Completed in 318 milliseconds

1234567891011>>