| /external/mesa3d/src/gallium/frontends/nine/ | 
| D | guid.c | 26 const GUID IID_IUnknown = { 0x00000000, 0x0000, 0x0000, { 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,… 27 const GUID IID_ID3D9Adapter = { 0xBF6C7B9A, 0xF0BE, 0x11DF, { 0x81, 0xE3, 0x7F, 0x57, 0xDF, 0xD7, 0… 28 const GUID IID_IDirect3D9ExOverlayExtension = { 0x187AEB13, 0xAAF5, 0x4C59, { 0x87, 0x6D, 0xE0, 0x5… 29 const GUID IID_IDirect3DAuthenticatedChannel9 = { 0xFF24BEEE, 0xDA21, 0x4BEB, { 0x98, 0xB5, 0xD2, 0… 30 const GUID IID_IDirect3DBaseTexture9 = { 0x580CA87E, 0x1D3C, 0x4D54, { 0x99, 0x1D, 0xB7, 0xD3, 0xE3… 31 const GUID IID_IDirect3DCryptoSession9 = { 0xFA0AB799, 0x7A9C, 0x48CA, { 0x8C, 0x5B, 0x23, 0x7E, 0x… 32 const GUID IID_IDirect3DCubeTexture9 = { 0xFFF32F81, 0xD953, 0x473A, { 0x92, 0x23, 0x93, 0xD6, 0x52… 33 const GUID IID_IDirect3DDevice9 = { 0xD0223B96, 0xBF7A, 0x43FD, { 0x92, 0xBD, 0xA4, 0x3B, 0x0D, 0x8… 34 const GUID IID_IDirect3DDevice9Ex = { 0xB18B10CE, 0x2649, 0x405A, { 0x87, 0x0F, 0x95, 0xF7, 0x77, 0… 35 const GUID IID_IDirect3DDevice9Video = { 0x26DC4561, 0xA1EE, 0x4AE7, { 0x96, 0xDA, 0x11, 0x8A, 0x36… [all …] 
 | 
| D | device9video.h | 40                                            const GUID *pCryptoType, 41                                            const GUID *pDecodeProfile, 52                                       const GUID *pCryptoType, 53                                       const GUID *pDecodeProfile,
  | 
| D | device9video.c | 29                                            const GUID *pCryptoType,  in NineDevice9Video_GetContentProtectionCaps() 30                                            const GUID *pDecodeProfile,  in NineDevice9Video_GetContentProtectionCaps() 47                                       const GUID *pCryptoType,  in NineDevice9Video_CreateCryptoSession() 48                                       const GUID *pDecodeProfile,  in NineDevice9Video_CreateCryptoSession()
  | 
| /external/llvm/test/Transforms/FunctionImport/ | 
| D | funcimport.ll | 4 …-lto -thinlto -print-summary-global-ids -o %t3 %t.bc %t2.bc 2>&1 | FileCheck %s --check-prefix=GUID 110 ; The actual GUID values will depend on path to test. 111 ; GUID-DAG: GUID {{.*}} is weakalias 112 ; GUID-DAG: GUID {{.*}} is referenceglobals 113 ; GUID-DAG: GUID {{.*}} is weakfunc 114 ; GUID-DAG: GUID {{.*}} is main 115 ; GUID-DAG: GUID {{.*}} is referencecommon 116 ; GUID-DAG: GUID {{.*}} is analias 117 ; GUID-DAG: GUID {{.*}} is referencestatics 118 ; GUID-DAG: GUID {{.*}} is linkoncealias [all …] 
 | 
| /external/clang/test/CodeGenCXX/ | 
| D | microsoft-uuidof.cpp | 18 typedef struct _GUID GUID;  typedef 27 GUID thing = __uuidof(Curly); 34 GUID g = __uuidof(S1); 41 const GUID& gr = __uuidof(S1); 44 const GUID* gp = &__uuidof(S1); 47 const GUID* cp = &__uuidof(Curly); 51 const GUID& zeroiid = __uuidof(0); 78   GUID s1_1 = __uuidof(S1);  in fun() 84   GUID s1_2 = __uuidof(S1);  in fun() 90   GUID s1_3 = __uuidof(s1);  in fun() [all …] 
 | 
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ | 
| D | GUID.h | 21 struct GUID {  struct 25 inline bool operator==(const GUID &LHS, const GUID &RHS) {  argument 29 inline bool operator<(const GUID &LHS, const GUID &RHS) { 33 inline bool operator<=(const GUID &LHS, const GUID &RHS) { 37 inline bool operator>(const GUID &LHS, const GUID &RHS) { 41 inline bool operator>=(const GUID &LHS, const GUID &RHS) { 45 inline bool operator!=(const GUID &LHS, const GUID &RHS) { 49 raw_ostream &operator<<(raw_ostream &OS, const GUID &Guid);
  | 
| /external/google-breakpad/src/common/linux/ | 
| D | guid_creator.cc | 75   static bool CreateGUID(GUID *guid) {  in CreateGUID() 107   static void CreateGuidFromArc4Random(GUID *guid) {  in CreateGuidFromArc4Random() 110     for (size_t i = 0; i < sizeof(GUID); i += sizeof(uint32_t)) {  in CreateGuidFromArc4Random() 131   static bool CreateGUIDFromGetrandom(GUID *guid) { 133     int read_bytes = getrandom(buf, sizeof(GUID), GRND_NONBLOCK); 135     return (read_bytes == static_cast<int>(sizeof(GUID))); 141   static bool CreateGUIDFromDevUrandom(GUID *guid) { 149     ssize_t read_bytes = HANDLE_EINTR(read(fd, buf, sizeof(GUID))); 152     return (read_bytes == static_cast<ssize_t>(sizeof(GUID))); 156   static void CreateGUIDFromRand(GUID *guid) { [all …] 
 | 
| D | guid_creator.h | 35 typedef MDGUID GUID;  typedef 43 bool CreateGUID(GUID *guid); 46 bool GUIDToString(const GUID *guid, char *buf, int buf_len);
  | 
| /external/llvm/lib/LTO/ | 
| D | LTO.cpp | 44     GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,  in thinLTOResolveWeakForLinkerGUID()  argument 46     function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>  in thinLTOResolveWeakForLinkerGUID()  argument 48     function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>  in thinLTOResolveWeakForLinkerGUID() 58     if (isPrevailing(GUID, S.get())) {  in thinLTOResolveWeakForLinkerGUID() 69       recordNewLinkage(S->modulePath(), GUID, S->linkage());  in thinLTOResolveWeakForLinkerGUID() 81     function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>  in thinLTOResolveWeakForLinkerInIndex()  argument 83     function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>  in thinLTOResolveWeakForLinkerInIndex() 100     GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,  in thinLTOInternalizeAndPromoteGUID()  argument 101     function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {  in thinLTOInternalizeAndPromoteGUID() 103     if (isExported(S->modulePath(), GUID)) {  in thinLTOInternalizeAndPromoteGUID() [all …] 
 | 
| D | ThinLTOCodeGenerator.cpp | 119     DenseMap<GlobalValue::GUID, const GlobalValueSummary *> &PrevailingCopy) {  in computePrevailingCopies()  argument 181 static DenseSet<GlobalValue::GUID> 184   DenseSet<GlobalValue::GUID> GUIDPreservedSymbols(PreservedSymbols.size());  in computeGUIDPreservedSymbols() 230       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,  in ModuleCacheEntry()  argument 232       const DenseSet<GlobalValue::GUID> &PreservedSymbols) {  in ModuleCacheEntry() 265                                       sizeof(GlobalValue::GUID)));  in ModuleCacheEntry() 274             ArrayRef<uint8_t>((const uint8_t *)&Entry, sizeof(GlobalValue::GUID)));  in ModuleCacheEntry() 335                      const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,  in ProcessThinLTOModule() 396     StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>>  in resolveWeakForLinkerInIndex()  argument 399   DenseMap<GlobalValue::GUID, const GlobalValueSummary *> PrevailingCopy;  in resolveWeakForLinkerInIndex() [all …] 
 | 
| /external/llvm/lib/Transforms/IPO/ | 
| D | FunctionImport.cpp | 109                                       GlobalValue::GUID GUID) {  in canBeExternallyReferenced()  argument 110   auto Summaries = Index.findGlobalValueSummaryList(GUID);  in canBeExternallyReferenced() 204 static const GlobalValueSummary *selectCallee(GlobalValue::GUID GUID,  in selectCallee()  argument 207   auto CalleeSummaryList = Index.findGlobalValueSummaryList(GUID);  in selectCallee() 218                                  GlobalValue::GUID GUID,  in exportGlobalInModule()  argument 221       [&](GlobalValue::GUID GUID) -> GlobalValueSummary *{  in exportGlobalInModule()  argument 222         auto SummaryList = Index.findGlobalValueSummaryList(GUID);  in exportGlobalInModule() 237   auto *Summary = FindGlobalSummaryInModule(GUID);  in exportGlobalInModule() 241   ExportList.insert(GUID);  in exportGlobalInModule() 252     auto GUID = Ref.getGUID();  in exportGlobalInModule()  local [all …] 
 | 
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ | 
| D | ModuleSummaryIndex.h | 161     std::map<GlobalValue::GUID, GlobalValueSummaryInfo>; 178   GlobalValue::GUID getGUID() const { return getRef()->first; }  in getGUID() 339   GlobalValue::GUID OriginalName = 0; 368   GlobalValue::GUID getOriginalName() const { return OriginalName; } 371   void setOriginalName(GlobalValue::GUID Name) { OriginalName = Name; } 471   GlobalValue::GUID getAliaseeGUID() const { 508     GlobalValue::GUID GUID; 526     std::vector<GlobalValue::GUID> TypeTests; 566         std::vector<GlobalValue::GUID>(), 598                   std::vector<GlobalValue::GUID> TypeTests, [all …] 
 | 
| /external/lzma/CPP/7zip/Archive/ | 
| D | DllExports2.cpp | 61 STDAPI CreateCoder(const GUID *clsid, const GUID *iid, void **outObject); 62 STDAPI CreateHasher(const GUID *clsid, IHasher **hasher); 63 STDAPI CreateArchiver(const GUID *clsid, const GUID *iid, void **outObject); 65 STDAPI CreateObject(const GUID *clsid, const GUID *iid, void **outObject)  in CreateObject()
  | 
| D | ArchiveExports.cpp | 44 static inline HRESULT SetPropGUID(const GUID &guid, PROPVARIANT *value)  in SetPropGUID() 49 int FindFormatCalssId(const GUID *clsid)  in FindFormatCalssId() 51   GUID cls = *clsid;  in FindFormatCalssId() 62 STDAPI CreateArchiver(const GUID *clsid, const GUID *iid, void **outObject)  in CreateArchiver() 105       GUID clsId = CLSID_CArchiveHandler;  in GetHandlerProperty2()
  | 
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/ | 
| D | LTO.cpp | 76     const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,  in computeLTOCacheKey()  argument 78     const std::set<GlobalValue::GUID> &CfiFunctionDefs,  in computeLTOCacheKey() 79     const std::set<GlobalValue::GUID> &CfiFunctionDecls) {  in computeLTOCacheKey() 151     auto GUID = VI.getGUID();  in computeLTOCacheKey()  local 153     Hasher.update(ArrayRef<uint8_t>((uint8_t *)&GUID, sizeof(GUID)));  in computeLTOCacheKey() 171                                     sizeof(GlobalValue::GUID)));  in computeLTOCacheKey() 178   std::set<GlobalValue::GUID> UsedCfiDefs;  in computeLTOCacheKey() 179   std::set<GlobalValue::GUID> UsedCfiDecls;  in computeLTOCacheKey() 182   std::set<GlobalValue::GUID> UsedTypeIds;  in computeLTOCacheKey() 184   auto AddUsedCfiGlobal = [&](GlobalValue::GUID ValueGUID) {  in computeLTOCacheKey() [all …] 
 | 
| D | ThinLTOCodeGenerator.cpp | 131     DenseMap<GlobalValue::GUID, const GlobalValueSummary *> &PrevailingCopy) {  in computePrevailingCopies()  argument 261                              DenseSet<GlobalValue::GUID> &PreservedGUID) {  in addUsedSymbolToPreservedGUID() 269 static DenseSet<GlobalValue::GUID> 272   DenseSet<GlobalValue::GUID> GUIDPreservedSymbols(PreservedSymbols.size());  in computeGUIDPreservedSymbols() 318       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,  in ModuleCacheEntry()  argument 404                      const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,  in ProcessThinLTOModule() 466     StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>>  in resolvePrevailingInIndex()  argument 468     const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,  in resolvePrevailingInIndex() 469     const DenseMap<GlobalValue::GUID, const GlobalValueSummary *>  in resolvePrevailingInIndex()  argument 472   auto isPrevailing = [&](GlobalValue::GUID GUID, const GlobalValueSummary *S) {  in resolvePrevailingInIndex()  argument [all …] 
 | 
| /external/llvm/include/llvm/IR/ | 
| D | ModuleSummaryIndex.h | 59     GlobalValue::GUID Id; 61     ValueUnion(GlobalValue::GUID Id) : Id(Id) {}  in ValueUnion() 70   ValueInfo(GlobalValue::GUID Id = 0) : TheValue(Id), Kind(VI_GUID) {}  in TheValue() 74   GlobalValue::GUID getGUID() const {  in getGUID() 120   GlobalValue::GUID OriginalName; 148   GlobalValue::GUID getOriginalName() { return OriginalName; }  in getOriginalName() 151   void setOriginalName(GlobalValue::GUID Name) { OriginalName = Name; }  in setOriginalName() 186   void addRefEdge(GlobalValue::GUID RefGUID) { RefEdgeList.push_back(RefGUID); }  in addRefEdge() 260   void addCallGraphEdge(GlobalValue::GUID CalleeGUID, CalleeInfo Info) {  in addCallGraphEdge() 314 typedef std::map<GlobalValue::GUID, GlobalValueSummaryList> [all …] 
 | 
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ | 
| D | ModuleSummaryIndex.cpp | 76     auto GUID = GlobalList.first;  in collectDefinedFunctionsForModule()  local 85       GVSummaryMap[GUID] = Summary;  in collectDefinedFunctionsForModule() 101 bool ModuleSummaryIndex::isGUIDLive(GlobalValue::GUID GUID) const {  in isGUIDLive() 102   auto VI = getValueInfo(GUID);  in isGUIDLive() 164     const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols) {  in propagateAttributes() 272   GlobalValue::GUID Src; 273   GlobalValue::GUID Dst; 358 static std::string getNodeVisualName(GlobalValue::GUID Id) {  in getNodeVisualName() 384                                const ValueInfo &VI, GlobalValue::GUID Id) {  in defineExternalNode() 410     const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols) const {  in exportToDot() [all …] 
 | 
| /external/lzma/CPP/Common/ | 
| D | MyGuidDef.h | 13 } GUID;  typedef 16 #define REFGUID const GUID & 18 #define REFGUID const GUID * 50     MY_EXTERN_C const GUID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } 53     MY_EXTERN_C const GUID name
  | 
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/ | 
| D | FunctionImport.h | 37   using FunctionsToImportTy = std::unordered_set<GlobalValue::GUID>; 91       DenseMap<GlobalValue::GUID, 175     const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols, 176     function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing); 182     const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols, 183     function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing,
  | 
| /external/llvm/lib/IR/ | 
| D | ModuleSummaryIndex.cpp | 26     GlobalValue::GUID ValueGUID = OtherGlobalValSummaryLists.first;  in mergeFrom() 73     auto GUID = GlobalList.first;  in collectDefinedFunctionsForModule()  local 82       GVSummaryMap[GUID] = Summary;  in collectDefinedFunctionsForModule() 91     auto GUID = GlobalList.first;  in collectDefinedGVSummariesPerModule()  local 93       ModuleToDefinedGVSummaries[Summary->modulePath()][GUID] = Summary.get();  in collectDefinedGVSummariesPerModule()
  | 
| /external/lzma/CPP/7zip/Compress/ | 
| D | CodecExports.cpp | 35 static inline HRESULT SetPropGUID(const GUID &guid, PROPVARIANT *value) throw()  in SetPropGUID() 44   GUID clsId;  in MethodToClassID() 52 static HRESULT FindCodecClassId(const GUID *clsid, bool isCoder2, bool isFilter, bool &encode, int …  in FindCodecClassId() 114 static HRESULT CreateCoder2(bool encode, UInt32 index, const GUID *iid, void **outObject)  in CreateCoder2() 139 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject)  in CreateDecoder() 144 STDAPI CreateEncoder(UInt32 index, const GUID *iid, void **outObject)  in CreateEncoder() 149 STDAPI CreateCoder(const GUID *clsid, const GUID *iid, void **outObject)  in CreateCoder() 250 static int FindHasherClassId(const GUID *clsid) throw()  in FindHasherClassId() 273 STDAPI CreateHasher(const GUID *clsid, IHasher **outObject)  in CreateHasher()
  | 
| /external/rust/crates/uuid/examples/ | 
| D | windows_guid.rs | 16     let guid_in = core::GUID {  in guid_to_uuid() 28         core::GUID {  in guid_to_uuid() 57     let guid_in = core::GUID {  in guid_to_uuid_le_encoded() 69         core::GUID {  in guid_to_uuid_le_encoded() 95     let mut guid = core::GUID {  in uuid_from_cocreateguid()
  | 
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/LTO/ | 
| D | LTO.h | 51     function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)> 53     function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)> 55     const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols); 63     function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)> 74     const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, 76     const std::set<GlobalValue::GUID> &CfiFunctionDefs = {}, 77     const std::set<GlobalValue::GUID> &CfiFunctionDecls = {}); 341     DenseMap<GlobalValue::GUID, StringRef> PrevailingModuleForGUID; 422                    const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols);
  | 
| /external/google-breakpad/src/common/solaris/ | 
| D | guid_creator.h | 37 typedef MDGUID GUID;  typedef 45 bool CreateGUID(GUID *guid); 48 bool GUIDToString(const GUID *guid, char *buf, int buf_len);
  |