HomeSort by relevance Sort by last modified time
    Searched refs:Major (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /external/clang/include/clang/Basic/
VersionTuple.h 12 /// the form major[.minor[.subminor]].
25 /// \brief Represents a version number in the form major[.minor[.subminor[.build]]].
27 unsigned Major : 31;
42 : Major(0), UsesUnderscores(false), Minor(0), HasMinor(false),
45 explicit VersionTuple(unsigned Major)
46 : Major(Major), UsesUnderscores(false), Minor(0), HasMinor(false),
49 explicit VersionTuple(unsigned Major, unsigned Minor,
51 : Major(Major), UsesUnderscores(UsesUnderscores), Minor(Minor)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
VersionTuple.h 12 /// the form major[.minor[.subminor]].
26 /// Represents a version number in the form major[.minor[.subminor[.build]]].
28 unsigned Major : 32;
41 : Major(0), Minor(0), HasMinor(false), Subminor(0), HasSubminor(false),
44 explicit VersionTuple(unsigned Major)
45 : Major(Major), Minor(0), HasMinor(false), Subminor(0),
48 explicit VersionTuple(unsigned Major, unsigned Minor)
49 : Major(Major), Minor(Minor), HasMinor(true), Subminor(0)
    [all...]
  /external/tcpdump/
nfsfh.h 48 uint32_t Major;
51 #define dev_eq(a,b) ((a.Minor == b.Minor) && (a.Major == b.Major))
parsenfsfh.c 159 /* probably rules out HP-UX, AIX unless they allow major=0 */
264 fsidp->Fsid_dev.Major = fhp[6];
275 fsidp->Fsid_dev.Major = fhp[1];
290 fsidp->Fsid_dev.Major = (temp>>20) & 0xFFF;
299 fsidp->Fsid_dev.Major = fhp[2];
310 fsidp->Fsid_dev.Major = make_uint16(fhp[0], fhp[1]);
332 fsidp->Fsid_dev.Major = fhp[2];
343 fsidp->Fsid_dev.Major = (temp>>2) & 0x3FFF;
357 fsidp->Fsid_dev.Major = fhp[1];
379 fsidp->Fsid_dev.Major = tempa[2] + (tempa[3]<<1)
    [all...]
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUTargetStreamer.h 24 virtual void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
27 virtual void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
45 void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
48 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
81 void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
84 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
AMDGPUTargetStreamer.cpp 39 AMDGPUTargetAsmStreamer::EmitDirectiveHSACodeObjectVersion(uint32_t Major,
42 Twine(Major) << "," << Twine(Minor) << '\n';
46 AMDGPUTargetAsmStreamer::EmitDirectiveHSACodeObjectISA(uint32_t Major,
52 Twine(Major) << "," << Twine(Minor) << "," << Twine(Stepping) <<
256 AMDGPUTargetELFStreamer::EmitDirectiveHSACodeObjectVersion(uint32_t Major,
269 OS.EmitIntValue(Major, 4); // desc
276 AMDGPUTargetELFStreamer::EmitDirectiveHSACodeObjectISA(uint32_t Major,
288 sizeof(Major) + sizeof(Minor) + sizeof(Stepping) +
299 OS.EmitIntValue(Major, 4);
  /external/ltp/testcases/kernel/device-drivers/dev_sim_framework/kernel_space/
tmod.c 53 static int Major = TMOD_MAJOR;
241 rc = register_chrdev(Major, DEVICE_NAME, &tmod_fops);
247 if (Major == 0)
248 Major = rc;
267 rc = unregister_chrdev(Major, DEVICE_NAME);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
Triple.h 230 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
232 /// getOSMajorVersion - Return just the major version number, this is
242 bool isOSVersionLT(unsigned Major, unsigned Minor = 0,
247 if (LHS[0] != Major)
248 return LHS[0] < Major;
277 unsigned isMacOSXVersionLT(unsigned Major, unsigned Minor = 0,
283 return isOSVersionLT(Major, Minor, Micro);
286 assert(Major == 10 && "Unexpected major version");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUTargetStreamer.h 45 virtual void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
48 virtual void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
83 void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
86 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
123 void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
126 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
AMDGPUTargetStreamer.cpp 141 uint32_t Major, uint32_t Minor) {
143 Twine(Major) << "," << Twine(Minor) << '\n';
147 AMDGPUTargetAsmStreamer::EmitDirectiveHSACodeObjectISA(uint32_t Major,
153 Twine(Major) << "," << Twine(Minor) << "," << Twine(Stepping) <<
277 if (IVersion.Major >= 7 && !ReserveFlatScr)
279 if (IVersion.Major >= 8 && ReserveXNACK != hasXNACK(STI))
300 if (IVersion.Major >= 9)
382 uint32_t Major, uint32_t Minor) {
388 OS.EmitIntValue(Major, 4);
395 AMDGPUTargetELFStreamer::EmitDirectiveHSACodeObjectISA(uint32_t Major,
    [all...]
  /external/syzkaller/vendor/golang.org/x/sys/unix/
dev_darwin.go 5 // Functions to access/create device major and minor numbers matching the
10 // Major returns the major component of a Darwin device number.
11 func Major(dev uint64) uint32 {
20 // Mkdev returns a Darwin device number generated from the given major and minor
22 func Mkdev(major, minor uint32) uint64 {
23 return (uint64(major) << 24) | uint64(minor)
dev_dragonfly.go 5 // Functions to access/create device major and minor numbers matching the
16 // Major returns the major component of a DragonFlyBSD device number.
17 func Major(dev uint64) uint32 {
26 // Mkdev returns a DragonFlyBSD device number generated from the given major and
28 func Mkdev(major, minor uint32) uint64 {
29 return (uint64(major) << 8) | uint64(minor)
dev_freebsd.go 5 // Functions to access/create device major and minor numbers matching the
16 // Major returns the major component of a FreeBSD device number.
17 func Major(dev uint64) uint32 {
26 // Mkdev returns a FreeBSD device number generated from the given major and
28 func Mkdev(major, minor uint32) uint64 {
29 return (uint64(major) << 8) | uint64(minor)
dev_netbsd.go 5 // Functions to access/create device major and minor numbers matching the
10 // Major returns the major component of a NetBSD device number.
11 func Major(dev uint64) uint32 {
22 // Mkdev returns a NetBSD device number generated from the given major and minor
24 func Mkdev(major, minor uint32) uint64 {
25 dev := (uint64(major) << 8) & 0x000fff00
dev_openbsd.go 5 // Functions to access/create device major and minor numbers matching the
10 // Major returns the major component of an OpenBSD device number.
11 func Major(dev uint64) uint32 {
22 // Mkdev returns an OpenBSD device number generated from the given major and minor
24 func Mkdev(major, minor uint32) uint64 {
25 dev := (uint64(major) << 8) & 0x0000ff00
  /external/llvm/include/llvm/ADT/
Triple.h 288 void getEnvironmentVersion(unsigned &Major, unsigned &Minor,
300 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
302 /// getOSMajorVersion - Return just the major version number, this is
314 bool getMacOSXVersion(unsigned &Major, unsigned &Minor,
319 void getiOSVersion(unsigned &Major, unsigned &Minor,
324 void getWatchOSVersion(unsigned &Major, unsigned &Minor,
380 bool isOSVersionLT(unsigned Major, unsigned Minor = 0,
385 if (LHS[0] != Major)
386 return LHS[0] < Major;
404 bool isMacOSXVersionLT(unsigned Major, unsigned Minor = 0
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Triple.h 296 void getEnvironmentVersion(unsigned &Major, unsigned &Minor,
308 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
310 /// getOSMajorVersion - Return just the major version number, this is
322 bool getMacOSXVersion(unsigned &Major, unsigned &Minor,
327 void getiOSVersion(unsigned &Major, unsigned &Minor,
332 void getWatchOSVersion(unsigned &Major, unsigned &Minor,
388 bool isOSVersionLT(unsigned Major, unsigned Minor = 0,
393 if (LHS[0] != Major)
394 return LHS[0] < Major;
412 bool isMacOSXVersionLT(unsigned Major, unsigned Minor = 0
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
Triple.h 311 void getEnvironmentVersion(unsigned &Major, unsigned &Minor,
323 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
325 /// getOSMajorVersion - Return just the major version number, this is
337 bool getMacOSXVersion(unsigned &Major, unsigned &Minor,
342 void getiOSVersion(unsigned &Major, unsigned &Minor,
347 void getWatchOSVersion(unsigned &Major, unsigned &Minor,
403 bool isOSVersionLT(unsigned Major, unsigned Minor = 0,
408 if (LHS[0] != Major)
409 return LHS[0] < Major;
427 bool isMacOSXVersionLT(unsigned Major, unsigned Minor = 0
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp 162 unsigned Major, Minor, Micro;
163 TargetTriple.getiOSVersion(Major, Minor, Micro);
164 return Major >= 8;
  /external/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.h 28 unsigned Major;
  /external/ltp/testcases/kernel/device-drivers/usb/tusb/
tusb.c 77 static int Major = TUSB_MAJOR;
516 rc = register_chrdev(Major, DEVICE_NAME, &tusb_fops);
522 if (Major == 0)
523 Major = rc;
525 printk("tusb: Registration success at major number %i\n", Major);
538 unregister_chrdev(Major, DEVICE_NAME);
  /external/llvm/lib/Support/
Triple.cpp 919 static void parseVersionFromName(StringRef Name, unsigned &Major,
922 Major = Minor = Micro = 0;
925 unsigned *Components[3] = {&Major, &Minor, &Micro};
939 void Triple::getEnvironmentVersion(unsigned &Major, unsigned &Minor,
946 parseVersionFromName(EnvironmentName, Major, Minor, Micro);
949 void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
957 parseVersionFromName(OSName, Major, Minor, Micro);
960 bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor,
962 getOSVersion(Major, Minor, Micro);
968 if (Major == 0
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCAssembler.h 86 // A Major version of 0 indicates that no version information was supplied
94 unsigned Major;
257 void setVersionMin(MCVersionMinType Type, unsigned Major, unsigned Minor,
261 VersionInfo.Major = Major;
265 void setBuildVersion(MachO::PlatformType Platform, unsigned Major,
269 VersionInfo.Major = Major;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp 251 unsigned Major, Minor, Micro;
252 TargetTriple.getiOSVersion(Major, Minor, Micro);
253 return Major >= 8;
  /device/linaro/bootloader/edk2/DuetPkg/
build32.sh 50 Major=$(uname -r | cut -f 1 -d '.')
51 if [[ $Major == 9 ]]

Completed in 1250 milliseconds

1 2 3 4 5 6 7