Searched defs:GUID (Results 1 - 20 of 20) sorted by relevance

/external/google-breakpad/src/common/linux/
H A Dguid_creator.h35 typedef MDGUID GUID; typedef
37 // Format string for parsing GUID.
39 // Length of GUID string. Don't count the ending '\0'.
43 bool CreateGUID(GUID *guid);
46 bool GUIDToString(const GUID *guid, char *buf, int buf_len);
/external/google-breakpad/src/common/solaris/
H A Dguid_creator.h37 typedef MDGUID GUID; typedef
39 // Format string for parsing GUID.
41 // Length of GUID string. Don't count the ending '\0'.
45 bool CreateGUID(GUID *guid);
48 bool GUIDToString(const GUID *guid, char *buf, int buf_len);
/external/libvpx/libvpx/
H A Dexamples.mk87 vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950
110 vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1
121 vp9_spatial_svc_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D
135 vpx_temporal_svc_encoder.GUID = B18C08F2-A439-4502-A78E-849BE3D60947
138 simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC
155 postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7
166 decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42
174 simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD
182 vp9_lossless_encoder.GUID = B63C7C88-5348-46DC-A5A6-CC151EF93366
190 twopass_encoder.GUID
[all...]
H A Dtools.mk17 tiny_ssim.GUID = 3afa9b05-940b-4d68-b5aa-55157d8ed7b4
78 --proj-guid=$$($$(@:.$(VCPROJ_SFX)=).GUID)\
/external/llvm/lib/IR/
H A DModuleSummaryIndex.cpp26 GlobalValue::GUID ValueGUID = OtherGlobalValSummaryLists.first;
69 // (GUID -> Summary).
73 auto GUID = GlobalList.first; local
82 GVSummaryMap[GUID] = Summary;
87 // Collect for each module the list of function it defines (GUID -> Summary).
91 auto GUID = GlobalList.first; local
93 ModuleToDefinedGVSummaries[Summary->modulePath()][GUID] = Summary.get();
/external/lzma/CPP/Common/
H A DMyGuidDef.h13 } GUID; typedef in typeref:struct:__anon14069
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/clang/test/CodeGenCXX/
H A Dmicrosoft-uuidof-mangling.cpp10 } GUID; typedef in typeref:struct:_GUID
13 template < typename T, const GUID & T_iid = __uuidof(T)>
H A Dmicrosoft-uuidof.cpp1 // RUN: %clang_cc1 -emit-llvm %s -o - -DDEFINE_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-GUID
4 // RUN: %clang_cc1 -emit-llvm %s -o - -DDEFINE_GUID -DWRONG_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-WRONG-GUID
18 typedef struct _GUID GUID; typedef in typeref:struct:_GUID
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
[all...]
/external/clang/test/SemaCXX/
H A Dborland-extensions.cpp48 } GUID; typedef in typeref:struct:_GUID
52 GUID const* Guid;
58 const GUID guid_inl = __uuidof(Foo);
/external/llvm/lib/LTO/
H A DLTO.cpp44 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
46 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
48 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
58 if (isPrevailing(GUID, S.get())) {
69 recordNewLinkage(S->modulePath(), GUID, S->linkage());
81 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
83 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
100 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
43 thinLTOResolveWeakForLinkerGUID( GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID, DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias, function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing, function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)> recordNewLinkage) argument
99 thinLTOInternalizeAndPromoteGUID( GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID, function_ref<bool(StringRef, GlobalValue::GUID)> isExported) argument
[all...]
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
H A Dlist_ports_windows.py47 class GUID(ctypes.Structure): class in inherits:ctypes.Structure
66 ('ClassGuid', GUID),
82 SetupDiClassGuidsFromName.argtypes = [PCTSTR, ctypes.POINTER(GUID), DWORD, PDWORD]
90 SetupDiGetClassDevs.argtypes = [ctypes.POINTER(GUID), PCTSTR, HWND, DWORD]
131 GUIDs = (GUID*8)() # so far only seen one used, so hope 8 are enough...
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp242 } GUID; typedef in typeref:struct:_GUID
/external/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp105 // Return true if \p GUID describes a GlobalValue that can be externally
109 GlobalValue::GUID GUID) {
110 auto Summaries = Index.findGlobalValueSummaryList(GUID);
114 // If there are multiple globals with this GUID, then we know it is
202 /// Return the summary for the function \p GUID that fits the \p Threshold, or
204 static const GlobalValueSummary *selectCallee(GlobalValue::GUID GUID, argument
207 auto CalleeSummaryList = Index.findGlobalValueSummaryList(GUID);
213 /// Mark the global \p GUID a
108 canBeExternallyReferenced(const ModuleSummaryIndex &Index, GlobalValue::GUID GUID) argument
216 exportGlobalInModule(const ModuleSummaryIndex &Index, StringRef ExportModulePath, GlobalValue::GUID GUID, FunctionImporter::ExportSetTy &ExportList) argument
252 auto GUID = Ref.getGUID(); local
272 auto GUID = Edge.first.getGUID(); local
323 auto GUID = Ref.getGUID(); local
597 auto GUID = F.getGUID(); local
619 auto GUID = GV.getGUID(); local
632 auto GUID = GA.getGUID(); local
[all...]
/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp45 } GUID; typedef in typeref:struct:_GUID
49 struct __declspec(uuid("0000000-0000-0000-1234-0000500000047")) uuid_attr_bad3 { };// expected-error {{uuid attribute contains a malformed GUID}}
50 struct __declspec(uuid("0000000-0000-0000-Z234-000000000047")) uuid_attr_bad4 { };// expected-error {{uuid attribute contains a malformed GUID}}
51 struct __declspec(uuid("000000000000-0000-1234-000000000047")) uuid_attr_bad5 { };// expected-error {{uuid attribute contains a malformed GUID}}
72 __uuidof(struct_without_uuid); // expected-error {{cannot call operator __uuidof on a type with no GUID}}
74 __uuidof(struct_without_uuid*); // expected-error {{cannot call operator __uuidof on a type with no GUID}}
76 __uuidof(struct_with_uuid*[1]); // expected-error {{cannot call operator __uuidof on a type with no GUID}}
78 __uuidof(const struct_with_uuid*[1][1]); // expected-error {{cannot call operator __uuidof on a type with no GUID}}
81 __uuidof(var_without_uuid);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
83 __uuidof(var_without_uuid[1]);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
[all...]
/external/libvncserver/libvncserver/
H A Dwebsockets.c138 #define GUID "258EAFA5-E914-47DA-95CA-C5AB0DC85B11" macro
188 iov[1].iov_base = GUID;
189 iov[1].iov_len = sizeof(GUID) - 1;
/external/syslinux/gpxe/src/include/gpxe/efi/
H A DBase.h34 } GUID; typedef in typeref:struct:__anon20511
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf.identity_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp496 // Map to save ValueId to GUID association that was recorded in the
499 // callees by their ValueId to using the GUID instead, which is how
501 // We save a second GUID which is the same as the first one, but ignoring the
503 DenseMap<unsigned, std::pair<GlobalValue::GUID, GlobalValue::GUID>>
545 std::pair<GlobalValue::GUID, GlobalValue::GUID>
5854 std::pair<GlobalValue::GUID, GlobalValue::GUID>
5914 dbgs() << "GUID " << ValueGUI
6208 auto GUID = getGUIDFromValueId(ValueID); local
6236 auto GUID = getGUIDFromValueId(ValueID); local
6255 auto GUID = getGUIDFromValueId(ValueID); local
6297 GlobalValue::GUID GUID = getGUIDFromValueId(ValueID).first; local
6322 GlobalValue::GUID GUID = getGUIDFromValueId(ValueID).first; local
6342 GlobalValue::GUID GUID = getGUIDFromValueId(ValueID).first; local
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dreadpdb.c295 } GUID; typedef in typeref:struct:_GUID
362 GUID guid;

Completed in 552 milliseconds