/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/llvm-project/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 124 ; The actual GUID values will depend on path to test. 125 ; GUID-DAG: GUID {{.*}} is weakalias 126 ; GUID-DAG: GUID {{.*}} is referenceglobals 127 ; GUID-DAG: GUID {{.*}} is weakfunc 128 ; GUID-DAG: GUID {{.*}} is main 129 ; GUID-DAG: GUID {{.*}} is referencecommon 130 ; GUID-DAG: GUID {{.*}} is analias 131 ; GUID-DAG: GUID {{.*}} is referencestatics 132 ; GUID-DAG: GUID {{.*}} is linkoncealias [all …]
|
/external/google-breakpad/src/common/linux/ |
D | guid_creator.cc | 54 // This class is used to generate random GUID. 55 // Currently use random number to generate a GUID since Linux has 56 // no native GUID generator. This should be OK since we don't expect 75 static bool CreateGUID(GUID *guid) { in CreateGUID() argument 77 CreateGuidFromArc4Random(guid); in CreateGUID() 82 success = CreateGUIDFromGetrandom(guid); in CreateGUID() 85 success = CreateGUIDFromDevUrandom(guid); in CreateGUID() 89 CreateGUIDFromRand(guid); in CreateGUID() 95 guid->data3 &= 0x0fff; in CreateGUID() 96 guid->data3 |= 0x4000; in CreateGUID() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | GUID.h | 1 //===- GUID.h ---------------------------------------------------*- C++ -*-===// 20 /// This represents the 'GUID' type from windows.h. 21 struct GUID { struct 22 uint8_t Guid[16]; member 25 inline bool operator==(const GUID &LHS, const GUID &RHS) { argument 26 return 0 == ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)); 29 inline bool operator<(const GUID &LHS, const GUID &RHS) { 30 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) < 0; 33 inline bool operator<=(const GUID &LHS, const GUID &RHS) { 34 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) <= 0; [all …]
|
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
D | GUID.h | 1 //===- GUID.h ---------------------------------------------------*- C++ -*-===// 20 /// This represents the 'GUID' type from windows.h. 21 struct GUID { struct 22 uint8_t Guid[16]; member 25 inline bool operator==(const GUID &LHS, const GUID &RHS) { argument 26 return 0 == ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)); 29 inline bool operator<(const GUID &LHS, const GUID &RHS) { 30 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) < 0; 33 inline bool operator<=(const GUID &LHS, const GUID &RHS) { 34 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) <= 0; [all …]
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | microsoft-uuidof.cpp | 1 …-DDEFINE_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-GUID 2 …RACKET_ATTRIB -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-GUID 5 …NG_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-WRONG-GUID 19 typedef struct _GUID GUID; typedef 37 GUID thing = (side_effect(), __uuidof(Curly)); 38 // CHECK-DEFINE-GUID: @thing = global %struct._GUID zeroinitializer, align 4 39 // CHECK-DEFINE-WRONG-GUID: @thing = global %struct._GUID zeroinitializer, align 4 42 // CHECK-DEFINE-GUID: @g = global %struct._GUID zeroinitializer, align 4 43 // CHECK-DEFINE-WRONG-GUID: @g = global %struct._GUID zeroinitializer, align 4 44 GUID g = (side_effect(), __uuidof(S1)); [all …]
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-uuidof.cpp | 1 …-DDEFINE_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-GUID 4 …NG_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-WRONG-GUID 18 typedef struct _GUID GUID; typedef 27 GUID thing = __uuidof(Curly); 28 // CHECK-DEFINE-GUID: @thing = global %struct._GUID zeroinitializer, align 4 29 // CHECK-DEFINE-WRONG-GUID: @thing = global %struct._GUID zeroinitializer, align 4 32 // CHECK-DEFINE-GUID: @g = global %struct._GUID zeroinitializer, align 4 33 // CHECK-DEFINE-WRONG-GUID: @g = global %struct._GUID zeroinitializer, align 4 34 GUID g = __uuidof(S1); 41 const GUID& gr = __uuidof(S1); [all …]
|
/external/google-breakpad/src/common/windows/ |
D | guid_string.cc | 43 wstring GUIDString::GUIDToWString(GUID *guid) { in GUIDToWString() argument 48 guid->Data1, guid->Data2, guid->Data3, in GUIDToWString() 49 guid->Data4[0], guid->Data4[1], guid->Data4[2], in GUIDToWString() 50 guid->Data4[3], guid->Data4[4], guid->Data4[5], in GUIDToWString() 51 guid->Data4[6], guid->Data4[7]); in GUIDToWString() 60 wstring GUIDString::GUIDToSymbolServerWString(GUID *guid) { in GUIDToSymbolServerWString() argument 65 guid->Data1, guid->Data2, guid->Data3, in GUIDToSymbolServerWString() 66 guid->Data4[0], guid->Data4[1], guid->Data4[2], in GUIDToSymbolServerWString() 67 guid->Data4[3], guid->Data4[4], guid->Data4[5], in GUIDToSymbolServerWString() 68 guid->Data4[6], guid->Data4[7]); in GUIDToSymbolServerWString()
|
/external/libchrome/base/trace_event/ |
D | process_memory_dump_unittest.cc | 164 pmd1->AddOwnershipEdge(mad1_1->guid(), mad1_2->guid()); in TEST() 172 pmd2->AddOwnershipEdge(mad2_1->guid(), mad2_2->guid()); in TEST() 227 // Create one allocation with an auto-assigned guid and mark it as a in TEST() 230 pmd->AddOverridableOwnershipEdge(child1_dump->guid(), shm_dump1->guid(), in TEST() 233 pmd->AddOwnershipEdge(child2_dump->guid(), shm_dump2->guid(), in TEST() 237 pmd->AddOverridableOwnershipEdge(shm_dump3->guid(), shared_mad_guid, in TEST() 240 pmd->AddOverridableOwnershipEdge(child4_dump->guid(), shm_dump4->guid(), in TEST() 246 EXPECT_EQ(shm_dump1->guid(), edges.find(child1_dump->guid())->second.target); in TEST() 247 EXPECT_EQ(0, edges.find(child1_dump->guid())->second.importance); in TEST() 248 EXPECT_TRUE(edges.find(child1_dump->guid())->second.overridable); in TEST() [all …]
|
/external/llvm-project/llvm/test/Transforms/LowerTypeTests/Inputs/ |
D | export-icall.yaml | 5 … # guid("f"), guid("f2"), guid("f3"), guid("g"), guid("h"), guid("external"), guid("external_weak") 7 TypeTests: [14276520915468743435, 15427464259790519041] # guid("typeid1"), guid("typeid2") 8 14740650423002898831: # guid("f") 11 8471399308421654326: # guid("f2") 14 4197650231481825559: # guid("f3") 17 13146401226427987378: # guid("g") 20 8124147457056772133: # guid("h") 23 5224464028922159466: # guid("external") 26 5227079976482001346: # guid("external_weak")
|
D | exported-funcs.yaml | 5 …Refs: [16594175687743574550, 2415377257478301385] # guid("external_addrtaken"), guid("external_add… 6 TypeTests: [14276520915468743435, 15427464259790519041] # guid("typeid1"), guid("typeid2") 7 5224464028922159466: # guid("external") 10 16430208882958242304: # guid("external2") 13 16594175687743574550: # guid("external_addrtaken") 16 2415377257478301385: # guid("external_addrtaken2") 19 15859245615183425489: # guid("internal")
|
/external/google-breakpad/src/common/solaris/ |
D | guid_creator.cc | 44 // This class is used to generate random GUID. 45 // Currently use random number to generate a GUID. This should be OK since 54 bool CreateGUID(GUID *guid) const { in CreateGUID() 55 guid->data1 = random(); in CreateGUID() 56 guid->data2 = (uint16_t)(random()); in CreateGUID() 57 guid->data3 = (uint16_t)(random()); in CreateGUID() 58 *reinterpret_cast<uint32_t*>(&guid->data4[0]) = random(); in CreateGUID() 59 *reinterpret_cast<uint32_t*>(&guid->data4[4]) = random(); in CreateGUID() 64 // Guid generator. 67 bool CreateGUID(GUID *guid) { in CreateGUID() argument [all …]
|
/external/tensorflow/tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/ProjectSettings/ |
D | GraphicsSettings.asset | 9 m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 12 m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 15 m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 18 m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 21 m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 24 m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 27 m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 30 m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 32 - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} [all …]
|
/external/vboot_reference/host/lib21/ |
D | host_misc.c | 97 int vb2_str_to_guid(const char *str, struct vb2_guid *guid) in vb2_str_to_guid() argument 125 guid->uuid.time_low = htole32(time_low); in vb2_str_to_guid() 126 guid->uuid.time_mid = htole16(time_mid); in vb2_str_to_guid() 127 guid->uuid.time_high_and_version = htole16(time_high_and_version); in vb2_str_to_guid() 129 guid->uuid.clock_seq_high_and_reserved = chunk[3] & 0xff; in vb2_str_to_guid() 130 guid->uuid.clock_seq_low = chunk[4] & 0xff; in vb2_str_to_guid() 131 guid->uuid.node[0] = chunk[5] & 0xff; in vb2_str_to_guid() 132 guid->uuid.node[1] = chunk[6] & 0xff; in vb2_str_to_guid() 133 guid->uuid.node[2] = chunk[7] & 0xff; in vb2_str_to_guid() 134 guid->uuid.node[3] = chunk[8] & 0xff; in vb2_str_to_guid() [all …]
|
/external/mesa3d/src/gallium/frontends/nine/ |
D | guid.c | 24 #include "guid.h" 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… [all …]
|
/external/llvm-project/llvm/test/Assembler/ |
D | thinlto-summary.ll | 12 ^2 = gv: (guid: 1, summaries: (function: (module: ^0, flags: (linkage: external, notEligibleToImpor… 16 ^3 = gv: (guid: 2, summaries: (function: (module: ^1, flags: (linkage: external, notEligibleToImpor… 19 ^4 = gv: (guid: 3, summaries: (function: (module: ^0, flags: (linkage: internal, notEligibleToImpor… 21 ^5 = gv: (guid: 4, summaries: (alias: (module: ^0, flags: (linkage: private, notEligibleToImport: 0… 22 ^6 = gv: (guid: 5, summaries: (function: (module: ^0, flags: (linkage: available_externally, notEli… 23 ^7 = gv: (guid: 6, summaries: (function: (module: ^0, flags: (linkage: linkonce, notEligibleToImpor… 24 ^8 = gv: (guid: 7, summaries: (function: (module: ^0, flags: (linkage: linkonce_odr, notEligibleToI… 25 ^9 = gv: (guid: 8, summaries: (function: (module: ^0, flags: (linkage: weak_odr, notEligibleToImpor… 26 ^10 = gv: (guid: 9, summaries: (function: (module: ^0, flags: (linkage: weak, notEligibleToImport: … 27 ^11 = gv: (guid: 10, summaries: (variable: (module: ^0, flags: (linkage: common, notEligibleToImpor… [all …]
|
/external/python/cpython3/Tools/msi/lib/ |
D | lib_files.wxs | 10 <Component Id="$(var.ext).pyd" Directory="DLLs" Guid="*"> 16 <Component Id="sqlite3.dll" Directory="DLLs" Guid="*"> 19 <Component Id="libcrypto.dll" Directory="DLLs" Guid="*"> 22 <Component Id="libssl.dll" Directory="DLLs" Guid="*"> 25 <Component Id="libffi.dll" Directory="DLLs" Guid="*"> 28 <Component Id="venvlauncher.exe" Directory="Lib_venv_scripts_nt" Guid="*"> 31 <Component Id="venvwlauncher.exe" Directory="Lib_venv_scripts_nt" Guid="*"> 50 <Component Id="$(var.ext).pdb" Directory="DLLs" Guid="*"> 56 <Component Id="sqlite3.pdb" Directory="DLLs" Guid="*"> 59 <Component Id="libcrypto.pdb" Directory="DLLs" Guid="*"> [all …]
|
/external/rust/crates/uuid/src/ |
D | winapi_support.rs | 4 #[cfg(feature = "guid")] 6 /// Attempts to create a [`Uuid`] from a little endian winapi `GUID` 9 pub fn from_guid(guid: guiddef::GUID) -> Result<Uuid, crate::Error> { in from_guid() 11 guid.Data1 as u32, in from_guid() 12 guid.Data2 as u16, in from_guid() 13 guid.Data3 as u16, in from_guid() 14 &(guid.Data4 as [u8; 8]), in from_guid() 18 /// Converts a [`Uuid`] into a little endian winapi `GUID` 21 pub fn to_guid(&self) -> guiddef::GUID { in to_guid() argument 24 guiddef::GUID { in to_guid() [all …]
|
/external/libchrome/base/ |
D | guid_unittest.cc | 5 #include "base/guid.h" 19 bool IsGUIDv4(const std::string& guid) { in IsGUIDv4() argument 20 // The format of GUID version 4 must be xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx, in IsGUIDv4() 22 return IsValidGUID(guid) && guid[14] == '4' && in IsGUIDv4() 23 (guid[19] == '8' || guid[19] == '9' || guid[19] == 'A' || in IsGUIDv4() 24 guid[19] == 'a' || guid[19] == 'B' || guid[19] == 'b'); in IsGUIDv4() 44 std::string guid = GenerateGUID(); in TEST() local 45 EXPECT_TRUE(IsValidGUID(guid)); in TEST() 46 EXPECT_TRUE(IsValidGUIDOutputString(guid)); in TEST() 47 EXPECT_TRUE(IsValidGUID(ToLowerASCII(guid))); in TEST() [all …]
|
/external/autotest/server/site_tests/network_WiFi_ProfileGUID/ |
D | network_WiFi_ProfileGUID.py | 22 SERVICE_PROPERTY_GUID = 'GUID' 45 """Assert that a service's GUID field has a particular value. 48 @param expected_guid: string expected value of the GUID on the service. 49 @param expect_missing: boolean True if we expect an empty GUID value. 56 raise error.TestFail('Expected GUID property to be missing.') 59 raise error.TestFail('Expected GUID value of %r, but got %r.' % 77 guid=self.TEST_GUID, 84 # Expect the GUID property to be set. 85 self._assert_guid_value(assoc_params.ssid, assoc_params.guid) 91 # GUID property should be missing, since we don't have an entry. [all …]
|
/external/llvm-project/llvm/test/Analysis/StackSafetyAnalysis/ |
D | ipa.ll | 627 ; INDEX-DAG: name: "ReturnDependent"{{.*}} guid = [[ReturnDependent:[-0-9]+]] 628 ; INDEX-DAG: name: "Private"{{.*}} guid = [[Private:[-0-9]+]] 629 ; INDEX-DAG: name: "TwoArgumentsOOBOther"{{.*}} guid = [[TwoArgumentsOOBOther:[-0-9]+]] 630 ; INDEX-DAG: name: "Rec2"{{.*}} guid = [[Rec2:[-0-9]+]] 631 ; INDEX-DAG: name: "f1"{{.*}} guid = [[f1:[-0-9]+]] 632 ; INDEX-DAG: name: "PrivateWrite1"{{.*}} guid = [[PrivateWrite1:[-0-9]+]] 633 ; INDEX-DAG: name: "TestRecursiveNoOffset"{{.*}} guid = [[TestRecursiveNoOffset:[-0-9]+]] 634 ; INDEX-DAG: name: "f8left"{{.*}} guid = [[f8left:[-0-9]+]] 635 ; INDEX-DAG: name: "Write4"{{.*}} guid = [[Write4:[-0-9]+]] 636 ; INDEX-DAG: name: "f7"{{.*}} guid = [[f7:[-0-9]+]] [all …]
|
/external/python/cpython3/Tools/msi/exe/ |
D | exe_files.wxs | 5 <Component Id="LICENSE.txt" Directory="InstallDirectory" Guid="*"> 8 <Component Id="NEWS.txt" Directory="InstallDirectory" Guid="*"> 18 … <Component Id="python.exe" Directory="InstallDirectory" Guid="$(var.PythonExeComponentGuid)"> 26 … <Component Id="pythonw.exe" Directory="InstallDirectory" Guid="$(var.PythonwExeComponentGuid)"> 32 <Component Id="vcruntime140.dll" Directory="InstallDirectory" Guid="*"> 36 <Component Id="vcruntime140_1.dll" Directory="InstallDirectory" Guid="*"> 45 <Component Id="python.pdb" Directory="InstallDirectory" Guid="*"> 48 <Component Id="pythonw.pdb" Directory="InstallDirectory" Guid="*"> 56 <Component Id="python_d.exe" Directory="InstallDirectory" Guid="*"> 59 <Component Id="python_d.pdb" Directory="InstallDirectory" Guid="*"> [all …]
|
/external/llvm-project/llvm/test/Bitcode/ |
D | thinlto-type-vcalls.ll | 114 ; DIS: ^1 = gv: (name: "llvm.type.test") ; guid = 608142985856744218 115 …: 8, typeIdInfo: (typeTestAssumeVCalls: (vFuncId: (guid: 6699318081062747564, offset: 16)))))) ; g… 116 … 5, typeIdInfo: (typeCheckedLoadVCalls: (vFuncId: (guid: 6699318081062747564, offset: 16)))))) ; g… 117 ; DIS: ^4 = gv: (name: "llvm.type.checked.load") ; guid = 5568222536364573403 118 ; DIS: ^5 = gv: (name: "llvm.assume") ; guid = 6385187066495850096 119 …tAssumeVCalls: (vFuncId: (guid: 6699318081062747564, offset: 24), vFuncId: (guid: 1643460842631447… 120 … ((vFuncId: (guid: 6699318081062747564, offset: 16), args: (42)), (vFuncId: (guid: 669931808106274… 121 …fo: (typeCheckedLoadConstVCalls: ((vFuncId: (guid: 6699318081062747564, offset: 16), args: (42))))… 122 …toHide: 0), insts: 2, typeIdInfo: (typeTests: (7546896869197086323))))) ; guid = 11834966808443348… 125 …guid: 2072045998141807037, summaries: (function: (module: ^0, flags: (linkage: external, notEligib… [all …]
|
/external/vboot_reference/cgpt/ |
D | cgpt.h | 35 Guid boot_guid; 99 /* GUID conversion functions. Accepted format: 107 int StrToGuid(const char *str, Guid *guid); 108 void GuidToStr(const Guid *guid, char *str, unsigned int buflen); 109 int GuidEqual(const Guid *guid1, const Guid *guid2); 110 int IsZero(const Guid *guid); 113 extern const Guid guid_chromeos_firmware; 114 extern const Guid guid_chromeos_kernel; 115 extern const Guid guid_chromeos_rootfs; 116 extern const Guid guid_linux_data; [all …]
|
/external/llvm-project/clang/tools/clang-format-vs/ClangFormat/ |
D | ClangFormat.vsct | 27 … This section uses a Guid to identify the package that provides the command defined inside it. --> 32 is a unique pair of guid and numeric identifier; the guid part of the identifier is usually 44 <Group guid="guidClangFormatCmdSet" id="MyMenuGroup" priority="0x0600"> 45 <Parent guid="guidSHLMainMenu" id="IDM_VS_MENU_TOOLS"/> 64 …<Button guid="guidClangFormatCmdSet" id="cmdidClangFormatSelection" priority="0x0100" type="Button… 65 <Parent guid="guidClangFormatCmdSet" id="MyMenuGroup" /> 66 <Icon guid="guidImages" id="bmpPic1" /> 72 …<Button guid="guidClangFormatCmdSet" id="cmdidClangFormatDocument" priority="0x0101" type="Button"> 73 <Parent guid="guidClangFormatCmdSet" id="MyMenuGroup" /> 74 <Icon guid="guidImages" id="bmpPic2" /> [all …]
|