HomeSort by: relevance | last modified time | path
    Searched defs:minor (Results 1 - 25 of 259) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/sys/arch/cobalt/pci/
pchb.c 65 int major, minor; local
68 minor = PCI_REVISION(pa->pa_class) & 0x0f;
72 minor);
75 minor);
  /src/external/gpl3/gcc/dist/gcc/config/nvptx/
nvptx-c.cc 56 unsigned minor local
59 cpp_define_formatted (parse_in, "__PTX_ISA_VERSION_MINOR__=%u", minor);
  /src/external/gpl3/gcc.old/dist/gcc/config/nvptx/
nvptx-c.cc 56 unsigned minor local
59 cpp_define_formatted (parse_in, "__PTX_ISA_VERSION_MINOR__=%u", minor);
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/
gss_buffer_set.c 106 OM_uint32 minor; local
114 gss_release_buffer(&minor, &((*buffer_set)->elements[i]));
  /src/external/gpl3/gcc/dist/gcc/config/loongarch/
loongarch-c.cc 114 minor = la_evo_version_minor[i]; local
118 ? (minor > max_v_minor ? minor : max_v_minor): max_v_minor;
  /src/external/gpl3/gcc/dist/gcc/
genversion.cc 35 unsigned long minor = 0; local
43 minor = strtoul (ptr + 1, 0, 10);
57 v[2] = minor + '0';
cppbuiltin.cc 32 /* Parse a BASEVER version string of the format "major.minor.patchlevel"
33 or "major.minor" to extract its components. */
35 parse_basever (int *major, int *minor, int *patchlevel)
49 if (minor)
50 *minor = s_minor;
61 int major, minor, patchlevel; local
63 parse_basever (&major, &minor, &patchlevel);
65 cpp_define_formatted (pfile, "__GNUC_MINOR__=%d", minor);
  /src/external/gpl3/gcc.old/dist/gcc/
genversion.cc 35 unsigned long minor = 0; local
43 minor = strtoul (ptr + 1, 0, 10);
57 v[2] = minor + '0';
cppbuiltin.cc 32 /* Parse a BASEVER version string of the format "major.minor.patchlevel"
33 or "major.minor" to extract its components. */
35 parse_basever (int *major, int *minor, int *patchlevel)
49 if (minor)
50 *minor = s_minor;
61 int major, minor, patchlevel; local
63 parse_basever (&major, &minor, &patchlevel);
65 cpp_define_formatted (pfile, "__GNUC_MINOR__=%d", minor);
  /src/lib/libcurses/
fileio.c 83 int minor = CURSES_LIB_MINOR; local
99 if (fwrite(&minor, sizeof(int), 1, fp) != 1)
173 int major, minor; local
183 if (fread(&minor, sizeof(int), 1, fp) != 1)
185 if(major != CURSES_LIB_MAJOR || minor != CURSES_LIB_MINOR)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/
bios.h 22 u8 minor; member in struct:nvkm_bios::__anon5203
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_debugfs.h 63 * 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)
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
export_sec_context.c 53 OM_uint32 minor; local
177 _gsskrb5_release_buffer (&minor, &buffer);
193 _gsskrb5_release_buffer (&minor, &buffer);
test_cfx.c 62 OM_uint32 minor; local
67 ret = _gssapi_wrap_size_cfx(&minor,
105 OM_uint32 minor; local
109 ret = _gssapi_wrap_size_cfx(&minor,
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/spnego/
compat.c 104 OM_uint32 ret, minor; local
127 gss_release_oid(&minor, &ctx->preferred_mech_type);
130 gss_release_name(&minor, &ctx->target_name);
131 gss_release_name(&minor, &ctx->mech_src_name);
162 OM_uint32 minor; local
181 if (gss_inquire_sec_context_by_oid(&minor, ctx->negotiated_ctx_id,
185 gss_release_buffer_set(&minor, &buffer_set);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
VersionTuple.cpp 10 // the form major[.minor[.subminor]].
32 if (Optional<unsigned> Minor = V.getMinor())
33 Out << '.' << *Minor;
64 unsigned major = 0, minor = 0, micro = 0, build = 0; local
75 // If we're not done, parse the minor version, \.[0-9]+
79 if (parseInt(input, minor))
83 *this = VersionTuple(major, minor);
95 *this = VersionTuple(major, minor, micro);
110 *this = VersionTuple(major, minor, micro, build);
  /src/external/gpl2/lvm2/dist/include/
activate.h 28 int minor; member in struct:lvinfo
  /src/external/gpl2/lvm2/dist/lib/activate/
activate.h 28 int minor; member in struct:lvinfo
  /src/sys/arch/atari/stand/tostools/libtos/
diskio.h 33 #define MINOR(bus, target, lun) (lun)
36 #define LUN(major, minor) (minor)
37 #define TARGET(major, minor) ((major) & 0x0007)
38 #define BUS(major, minor) (((major) >> 3) & 0x1FFF)
39 #define BIOSDEV(major, minor) (((minor) == 0) ? ((major) + 2) : 0)
49 u_int minor; /* XHDI minor number */ member in struct:__anon1232
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_linux_s390.cc 125 unsigned int major, minor, patch = 0; local
134 minor = internal_simple_strtoll(ptr+1, &ptr, 10);
139 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' &&
155 if (minor == 2 && patch >= 79)
158 if (minor == 12 && patch >= 58)
160 if (minor == 10 && patch == 0 && ptr[0] == '-' &&
176 if (minor == 1 && patch >= 21)
179 if (minor == 4 && patch >= 6)
181 if (minor == 4 && patch == 0 && ptr[0] == '-' &&
189 return minor >= 5
    [all...]
  /src/sys/kern/
tty_bsdpty.c 92 dev_t minor = minor(dev); local
100 if (minor < 256) {
104 minor -= 256;
110 bf[8] = TTY_LETTERS[minor / nt];
111 bf[9] = suffix[minor % nt];
  /src/external/bsd/file/dist/src/
fsmagic.c 72 # define minor(dev) ((dev) & 0xff) macro
231 (long)minor(sb->st_rdev)) == -1)
266 (long)minor(sb->st_rdev)) == -1)
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_linux_s390.cpp 131 unsigned int major, minor, patch = 0; local
140 minor = internal_simple_strtoll(ptr+1, &ptr, 10);
145 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' &&
161 if (minor == 2 && patch >= 79)
164 if (minor == 12 && patch >= 58)
166 if (minor == 10 && patch == 0 && ptr[0] == '-' &&
182 if (minor == 1 && patch >= 21)
185 if (minor == 4 && patch >= 6)
187 if (minor == 4 && patch == 0 && ptr[0] == '-' &&
195 return minor >= 5
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_linux_s390.cpp 125 unsigned int major, minor, patch = 0; local
134 minor = internal_simple_strtoll(ptr+1, &ptr, 10);
139 if (major == 2 && minor == 6 && patch == 32 && ptr[0] == '-' &&
155 if (minor == 2 && patch >= 79)
158 if (minor == 12 && patch >= 58)
160 if (minor == 10 && patch == 0 && ptr[0] == '-' &&
176 if (minor == 1 && patch >= 21)
179 if (minor == 4 && patch >= 6)
181 if (minor == 4 && patch == 0 && ptr[0] == '-' &&
189 return minor >= 5
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
mail_version.h 18 * snapshots are called a.b-yyyymmdd, where a=major release number, b=minor
82 int minor; /* 9 */ member in struct:__anon23114

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 91011