/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | VersionTuple.h | 27 unsigned Major : 32; variable 40 : Major(0), Minor(0), HasMinor(false), Subminor(0), HasSubminor(false), in VersionTuple() 43 explicit VersionTuple(unsigned Major) in VersionTuple() argument 44 : Major(Major), Minor(0), HasMinor(false), Subminor(0), in VersionTuple() 47 explicit VersionTuple(unsigned Major, unsigned Minor) in VersionTuple() argument 48 : Major(Major), Minor(Minor), HasMinor(true), Subminor(0), in VersionTuple() 51 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor) in VersionTuple() argument 52 : Major(Major), Minor(Minor), HasMinor(true), Subminor(Subminor), in VersionTuple() 55 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor, in VersionTuple() argument 57 : Major(Major), Minor(Minor), HasMinor(true), Subminor(Subminor), in VersionTuple() [all …]
|
/third_party/openssl/ |
D | NEWS | 9 Major changes between OpenSSL 1.1.1m and OpenSSL 1.1.1n [15 Mar 2022] 14 Major changes between OpenSSL 1.1.1l and OpenSSL 1.1.1m [14 Dec 2021] 18 Major changes between OpenSSL 1.1.1k and OpenSSL 1.1.1l [24 Aug 2021] 23 Major changes between OpenSSL 1.1.1j and OpenSSL 1.1.1k [25 Mar 2021] 31 Major changes between OpenSSL 1.1.1i and OpenSSL 1.1.1j [16 Feb 2021] 41 Major changes between OpenSSL 1.1.1h and OpenSSL 1.1.1i [8 Dec 2020] 45 Major changes between OpenSSL 1.1.1g and OpenSSL 1.1.1h [22 Sep 2020] 53 Major changes between OpenSSL 1.1.1f and OpenSSL 1.1.1g [21 Apr 2020] 57 Major changes between OpenSSL 1.1.1e and OpenSSL 1.1.1f [31 Mar 2020] 61 Major changes between OpenSSL 1.1.1d and OpenSSL 1.1.1e [17 Mar 2020] [all …]
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | winsock_init.hpp | 51 template <int Major = 2, int Minor = 0> 57 startup(data_, Major, Minor); in winsock_init() 64 startup(data_, Major, Minor); in winsock_init() 111 template <int Major, int Minor> 112 winsock_init_base::data winsock_init<Major, Minor>::data_;
|
/third_party/boost/boost/asio/detail/ |
D | winsock_init.hpp | 51 template <int Major = 2, int Minor = 0> 57 startup(data_, Major, Minor); in winsock_init() 64 startup(data_, Major, Minor); in winsock_init() 111 template <int Major, int Minor> 112 winsock_init_base::data winsock_init<Major, Minor>::data_;
|
/third_party/ltp/testcases/kernel/device-drivers/dev_sim_framework/kernel_space/ |
D | tmod.c | 53 static int Major = TMOD_MAJOR; variable 241 rc = register_chrdev(Major, DEVICE_NAME, &tmod_fops); in tmod_init_module() 247 if (Major == 0) in tmod_init_module() 248 Major = rc; in tmod_init_module() 267 rc = unregister_chrdev(Major, DEVICE_NAME); in tmod_exit_module()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | Triple.h | 323 void getEnvironmentVersion(unsigned &Major, unsigned &Minor, 335 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const; 349 bool getMacOSXVersion(unsigned &Major, unsigned &Minor, 354 void getiOSVersion(unsigned &Major, unsigned &Minor, 359 void getWatchOSVersion(unsigned &Major, unsigned &Minor, 415 bool isOSVersionLT(unsigned Major, unsigned Minor = 0, 420 if (LHS[0] != Major) 421 return LHS[0] < Major; 439 bool isMacOSXVersionLT(unsigned Major, unsigned Minor = 0, 445 return isOSVersionLT(Major, Minor, Micro); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | AMDGPUTargetStreamer.h | 44 virtual void EmitDirectiveHSACodeObjectVersion(uint32_t Major, 47 virtual void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor, 102 void EmitDirectiveHSACodeObjectVersion(uint32_t Major, 105 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor, 149 void EmitDirectiveHSACodeObjectVersion(uint32_t Major, 152 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
|
D | AMDGPUTargetStreamer.cpp | 178 uint32_t Major, uint32_t Minor) { in EmitDirectiveHSACodeObjectVersion() argument 180 Twine(Major) << "," << Twine(Minor) << '\n'; in EmitDirectiveHSACodeObjectVersion() 184 AMDGPUTargetAsmStreamer::EmitDirectiveHSACodeObjectISA(uint32_t Major, in EmitDirectiveHSACodeObjectISA() argument 190 Twine(Major) << "," << Twine(Minor) << "," << Twine(Stepping) << in EmitDirectiveHSACodeObjectISA() 296 if (IVersion.Major >= 10) in EmitAmdhsaKernelDescriptor() 326 if (IVersion.Major >= 7 && !ReserveFlatScr) in EmitAmdhsaKernelDescriptor() 328 if (IVersion.Major >= 8 && ReserveXNACK != hasXNACK(STI)) in EmitAmdhsaKernelDescriptor() 349 if (IVersion.Major >= 9) in EmitAmdhsaKernelDescriptor() 353 if (IVersion.Major >= 10) { in EmitAmdhsaKernelDescriptor() 457 uint32_t Major, uint32_t Minor) { in EmitDirectiveHSACodeObjectVersion() argument [all …]
|
/third_party/flutter/skia/third_party/externals/wuffs/cmd/commonflags/ |
D | commonflags.go | 83 Major uint32 member 96 if _, err := fmt.Sscanf(s, "%d.%d.%d", &v.Major, &v.Minor, &v.Patch); err != nil { 103 s := fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch) 111 return (uint64(v.Major) << 32) | (uint64(v.Minor) << 16) | (uint64(v.Patch) << 0)
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/llvm/ |
D | llvm.go | 39 Major, Minor, Point int member 43 return fmt.Sprintf("%v.%v.%v", v.Major, v.Minor, v.Point) 48 if v.Major > rhs.Major { 51 if v.Major < rhs.Major {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/ |
D | AMDGPUBaseInfo.cpp | 235 << Version.Major in streamIsaVersion() 329 if (Version.Major >= 10) in getSGPRAllocGranule() 331 if (Version.Major >= 8) in getSGPRAllocGranule() 342 if (Version.Major >= 8) in getTotalNumSGPRs() 352 if (Version.Major >= 10) in getAddressableNumSGPRs() 354 if (Version.Major >= 8) in getAddressableNumSGPRs() 363 if (Version.Major >= 10) in getMinNumSGPRs() 382 if (Version.Major >= 10) in getMaxNumSGPRs() 384 if (Version.Major >= 8 && !Addressable) in getMaxNumSGPRs() 400 if (Version.Major >= 10) in getNumExtraSGPRs() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Triple.cpp | 1035 static void parseVersionFromName(StringRef Name, unsigned &Major, in parseVersionFromName() argument 1038 Major = Minor = Micro = 0; in parseVersionFromName() 1041 unsigned *Components[3] = {&Major, &Minor, &Micro}; in parseVersionFromName() 1055 void Triple::getEnvironmentVersion(unsigned &Major, unsigned &Minor, in getEnvironmentVersion() argument 1062 parseVersionFromName(EnvironmentName, Major, Minor, Micro); in getEnvironmentVersion() 1065 void Triple::getOSVersion(unsigned &Major, unsigned &Minor, in getOSVersion() argument 1075 parseVersionFromName(OSName, Major, Minor, Micro); in getOSVersion() 1078 bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor, in getMacOSXVersion() argument 1080 getOSVersion(Major, Minor, Micro); in getMacOSXVersion() 1086 if (Major == 0) in getMacOSXVersion() [all …]
|
/third_party/ltp/testcases/kernel/device-drivers/usb/tusb/ |
D | tusb.c | 77 static int Major = TUSB_MAJOR; variable 516 rc = register_chrdev(Major, DEVICE_NAME, &tusb_fops); in tusb_init_module() 522 if (Major == 0) in tusb_init_module() 523 Major = rc; in tusb_init_module() 525 printk("tusb: Registration success at major number %i\n", Major); in tusb_init_module() 538 unregister_chrdev(Major, DEVICE_NAME); in tusb_exit_module()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCAssembler.h | 94 unsigned Major; member 256 void setVersionMin(MCVersionMinType Type, unsigned Major, unsigned Minor, 261 VersionInfo.Major = Major; 266 void setBuildVersion(MachO::PlatformType Platform, unsigned Major, 271 VersionInfo.Major = Major;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
D | DarwinAsmParser.cpp | 461 bool parseMajorMinorVersionComponent(unsigned *Major, unsigned *Minor, 465 bool parseVersion(unsigned *Major, unsigned *Minor, unsigned *Update); 1012 bool DarwinAsmParser::parseMajorMinorVersionComponent(unsigned *Major, in parseMajorMinorVersionComponent() argument 1022 *Major = (unsigned)MajorVal; in parseMajorMinorVersionComponent() 1058 bool DarwinAsmParser::parseVersion(unsigned *Major, unsigned *Minor, in parseVersion() argument 1060 if (parseMajorMinorVersionComponent(Major, Minor, "OS")) in parseVersion() 1078 unsigned Major, Minor; in parseSDKVersion() local 1079 if (parseMajorMinorVersionComponent(&Major, &Minor, "SDK")) in parseSDKVersion() 1081 SDKVersion = VersionTuple(Major, Minor); in parseSDKVersion() 1088 SDKVersion = VersionTuple(Major, Minor, Subminor); in parseSDKVersion() [all …]
|
/third_party/node/deps/cares/ |
D | NEWS | 1 Major changes since: 4 Major changes in release 1.1.1: 10 Major changes in release 1.1.0:
|
/third_party/ltp/testcases/kernel/device-drivers/agp/kernel_space/ |
D | tagp.c | 82 static int Major = TAGP_MAJOR; variable 671 rc = register_chrdev(Major, DEVICE_NAME, &tagp_fops); in tagp_init_module() 677 if (Major == 0) in tagp_init_module() 678 Major = rc; in tagp_init_module() 703 rc = unregister_chrdev(Major, DEVICE_NAME); in tagp_exit_module()
|
/third_party/node/deps/npm/node_modules/node-fetch-npm/ |
D | CHANGELOG.md | 78 - Major: Node.js 0.10.x and 0.12.x support is dropped 79 - Major: `require('node-fetch/lib/response')` etc. is now unsupported; use `require('node-fetch').R… 88 - Major: overwrite user's `Content-Length` if we can be sure our information is correct (per spec) 93 - Major: `response.text()` no longer attempts to detect encoding, instead always opting for UTF-8 (… 94 - Major: make `response.json()` throw error instead of returning an empty object on 204 no-content … 95 - Major: internal methods are no longer exposed 96 - Major: throw error when a `GET` or `HEAD` Request is constructed with a non-null body (per spec) 103 - Major: remove `headers.getAll()`; make `get()` return all headers delimited by commas (per spec) 252 - Major: initial public release
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/ |
D | PackedVersion.h | 28 PackedVersion(unsigned Major, unsigned Minor, unsigned Subminor) in PackedVersion() argument 29 : Version((Major << 16) | ((Minor & 0xff) << 8) | (Subminor & 0xff)) {} in PackedVersion()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCMachOStreamer.cpp | 91 void EmitVersionMin(MCVersionMinType Kind, unsigned Major, unsigned Minor, 93 void EmitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor, 271 void MCMachOStreamer::EmitVersionMin(MCVersionMinType Kind, unsigned Major, in EmitVersionMin() argument 274 getAssembler().setVersionMin(Kind, Major, Minor, Update, SDKVersion); in EmitVersionMin() 277 void MCMachOStreamer::EmitBuildVersion(unsigned Platform, unsigned Major, in EmitBuildVersion() argument 280 getAssembler().setBuildVersion((MachO::PlatformType)Platform, Major, Minor, in EmitBuildVersion()
|
/third_party/ffmpeg/libavfilter/ |
D | qsvvpp.h | 39 ((MFX_VERSION.Major > (MAJOR)) || \ 40 (MFX_VERSION.Major == (MAJOR) && MFX_VERSION.Minor >= (MINOR)))
|
/third_party/ltp/testcases/kernel/device-drivers/base/tbase/ |
D | tbase.c | 73 static int Major = TBASEMAJOR; variable 872 rc = register_chrdev(Major, DEVICE_NAME, &tbase_fops); in tbase_init_module() 878 if (Major == 0) in tbase_init_module() 879 Major = rc; in tbase_init_module() 902 rc = unregister_chrdev(Major, DEVICE_NAME); in tbase_exit_module()
|
/third_party/ltp/testcases/kernel/device-drivers/include/ |
D | includeTest.c | 75 static int Major = 0; variable 160 printk("major = %d\n", Major); in test_init_module() 175 printk("major = %d\n", Major); in test_init_module()
|
/third_party/flutter/skia/third_party/externals/wuffs/cmd/wuffs/ |
D | release.go | 75 if v.Major != 0 || v.Minor != 0 { 76 base = fmt.Sprintf("wuffs-v%d.%d", v.Major, v.Minor)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64Subtarget.cpp | 286 unsigned Major, Minor, Micro; in supportsAddressTopByteIgnored() local 287 TargetTriple.getiOSVersion(Major, Minor, Micro); in supportsAddressTopByteIgnored() 288 return Major >= 8; in supportsAddressTopByteIgnored()
|