HomeSort by relevance Sort by last modified time
    Searched refs:Name (Results 451 - 475 of 6172) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Passes/
PassBuilder.cpp 129 static StringRef name() { return "NoOpModulePass"; } function in struct:__anon31170::NoOpModulePass
140 static StringRef name() { return "NoOpModuleAnalysis"; } function in class:__anon31170::NoOpModuleAnalysis
149 static StringRef name() { return "NoOpCGSCCPass"; } function in struct:__anon31170::NoOpCGSCCPass
162 static StringRef name() { return "NoOpCGSCCAnalysis"; } function in class:__anon31170::NoOpCGSCCAnalysis
170 static StringRef name() { return "NoOpFunctionPass"; } function in struct:__anon31170::NoOpFunctionPass
181 static StringRef name() { return "NoOpFunctionAnalysis"; } function in class:__anon31170::NoOpFunctionAnalysis
189 static StringRef name() { return "NoOpLoopPass"; } function in struct:__anon31170::NoOpLoopPass
200 static StringRef name() { return "NoOpLoopAnalysis"; } function in class:__anon31170::NoOpLoopAnalysis
211 #define MODULE_ANALYSIS(NAME, CREATE_PASS) \
217 #define CGSCC_ANALYSIS(NAME, CREATE_PASS)
    [all...]
  /external/llvm/tools/lli/
OrcLazyJIT.h 84 [this](const std::string &Name) {
85 if (auto Sym = CODLayer.findSymbol(Name, true))
87 if (auto Sym = CXXRuntimeOverrides.searchOverrides(Name))
91 RTDyldMemoryManager::getSymbolAddressInProcess(Name))
96 [](const std::string &Name) {
118 orc::JITSymbol findSymbol(const std::string &Name) {
119 return CODLayer.findSymbol(mangle(Name), true);
122 orc::JITSymbol findSymbolIn(ModuleHandleT H, const std::string &Name) {
123 return CODLayer.findSymbolIn(H, mangle(Name), true);
128 std::string mangle(const std::string &Name) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 93 getELFKindForNamedSection(StringRef Name, SectionKind K) {
99 if (Name.empty() || Name[0] != '.') return K;
102 if (Name == ".bss" ||
103 Name.startswith(".bss.") ||
104 Name.startswith(".gnu.linkonce.b.") ||
105 Name.startswith(".llvm.linkonce.b.") ||
106 Name == ".sbss" ||
107 Name.startswith(".sbss.") ||
108 Name.startswith(".gnu.linkonce.sb.") |
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
CoverageSummaryInfo.h 147 std::string Name;
152 FunctionCoverageSummary(const std::string &Name)
153 : Name(Name), ExecutionCount(0), RegionCoverage(), LineCoverage() {}
155 FunctionCoverageSummary(const std::string &Name, uint64_t ExecutionCount,
158 : Name(Name), ExecutionCount(ExecutionCount),
175 StringRef Name;
181 FileCoverageSummary(StringRef Name)
182 : Name(Name), RegionCoverage(), LineCoverage(), FunctionCoverage()
    [all...]
  /external/clang/unittests/Tooling/
TestVisitor.h 148 /// for 'Name' during visitation.
149 void Match(StringRef Name, SourceLocation Location) {
155 EXPECT_FALSE(It->Matches(Name, FullLocation))
162 It->UpdateFor(Name, FullLocation, this->Context->getSourceManager());
172 MatchCandidate(Twine Name, unsigned LineNumber, unsigned ColumnNumber)
173 : ExpectedName(Name.str()), LineNumber(LineNumber),
177 bool Matches(StringRef Name, FullSourceLoc const &Location) const {
178 return MatchesName(Name) && MatchesLocation(Location);
181 bool PartiallyMatches(StringRef Name, FullSourceLoc const &Location) const {
182 return MatchesName(Name) || MatchesLocation(Location)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RTDyldMemoryManager.cpp 218 #define ARM_MATH_DECL(name) extern "C" void name();
229 RTDyldMemoryManager::getSymbolAddressInProcess(const std::string &Name) {
243 if (Name == "stat") return (uint64_t)&stat;
244 if (Name == "fstat") return (uint64_t)&fstat;
245 if (Name == "lstat") return (uint64_t)&lstat;
246 if (Name == "stat64") return (uint64_t)&stat64;
247 if (Name == "fstat64") return (uint64_t)&fstat64;
248 if (Name == "lstat64") return (uint64_t)&lstat64;
249 if (Name == "atexit") return (uint64_t)&atexit
    [all...]
  /external/mesa3d/prebuilt-intermediates/main/
format_info.h 35 .Name = MESA_FORMAT_NONE,
49 .Name = MESA_FORMAT_A8B8G8R8_UNORM,
63 .Name = MESA_FORMAT_X8B8G8R8_UNORM,
77 .Name = MESA_FORMAT_R8G8B8A8_UNORM,
91 .Name = MESA_FORMAT_R8G8B8X8_UNORM,
105 .Name = MESA_FORMAT_B8G8R8A8_UNORM,
119 .Name = MESA_FORMAT_B8G8R8X8_UNORM,
133 .Name = MESA_FORMAT_A8R8G8B8_UNORM,
147 .Name = MESA_FORMAT_X8R8G8B8_UNORM,
161 .Name = MESA_FORMAT_L16A16_UNORM
    [all...]
  /external/llvm/include/llvm/IR/
DIBuilder.h 81 /// \param File File name
94 /// \param SplitName The name of the file that we'll split debug info
111 DIEnumerator *createEnumerator(StringRef Name, int64_t Val);
114 DIBasicType *createUnspecifiedType(StringRef Name);
121 /// \param Name Type name.
125 DIBasicType *createBasicType(StringRef Name, uint64_t SizeInBits,
138 /// \param Name Pointer type name. (optional)
141 StringRef Name = "")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Module.cpp 110 /// the specified name, of arbitrary type. This method returns null
111 /// if a global with the specified name is not found.
112 GlobalValue *Module::getNamedValue(StringRef Name) const {
113 return cast_or_null<GlobalValue>(getValueSymbolTable().lookup(Name));
118 unsigned Module::getMDKindID(StringRef Name) const {
119 return Context.getMDKindID(Name);
122 /// getMDKindNames - Populate client supplied SmallVector with the name for
142 Constant *Module::getOrInsertFunction(StringRef Name, FunctionType *Ty,
145 GlobalValue *F = getNamedValue(Name);
148 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
    [all...]
  /external/syzkaller/sys/test/gen/
32_fork_shmem.go 16 {Key: StructKey{Name: "align0"}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "align0", TypeSize: 24}, Fields: []Type{
26 {Key: StructKey{Name: "compare_data"}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "compare_data", IsVarlen: true}, Fields: []Type{
27 &StructType{Key: StructKey{Name: "align0"}, FldName: "align0"},
32 {Name: "syz_compare", CallName: "syz_compare", Args: []Type{
35 &PtrType{TypeCommon: TypeCommon{TypeName: "ptr", FldName: "got", TypeSize: 4}, Type: &UnionType{Key: StructKey{Name: "compare_data"}}},
38 {Name: "syz_errno", CallName: "syz_errno", Args: []Type{
41 {Name: "syz_mmap", CallName: "syz_mmap", Args: []Type{
48 {Name: "IPPROTO_ICMPV6", Value: 58},
49 {Name: "IPPROTO_TCP", Value: 6},
50 {Name: "IPPROTO_UDP", Value: 17}
    [all...]
32_shmem.go 16 {Key: StructKey{Name: "align0"}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "align0", TypeSize: 24}, Fields: []Type{
26 {Key: StructKey{Name: "compare_data"}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "compare_data", IsVarlen: true}, Fields: []Type{
27 &StructType{Key: StructKey{Name: "align0"}, FldName: "align0"},
32 {Name: "syz_compare", CallName: "syz_compare", Args: []Type{
35 &PtrType{TypeCommon: TypeCommon{TypeName: "ptr", FldName: "got", TypeSize: 4}, Type: &UnionType{Key: StructKey{Name: "compare_data"}}},
38 {Name: "syz_errno", CallName: "syz_errno", Args: []Type{
41 {Name: "syz_mmap", CallName: "syz_mmap", Args: []Type{
48 {Name: "IPPROTO_ICMPV6", Value: 58},
49 {Name: "IPPROTO_TCP", Value: 6},
50 {Name: "IPPROTO_UDP", Value: 17}
    [all...]
32.go 10 {Name: "anyres32", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", TypeSize: 4}}}, Kind: []string{"anyres32"}, Values: []uint64{0}},
11 {Name: "anyres64", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int64", TypeSize: 8}}}, Kind: []string{"anyres64"}, Values: []uint64{0}},
12 {Name: "fd", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", TypeSize: 4}}}, Kind: []string{"fd"}, Values: []uint64{18446744073709551615}},
13 {Name: "r_any", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32be", TypeSize: 4}, ArgFormat: 1}}, Kind: []string{"r_any"}, Values: []uint64{0}},
14 {Name: "syz_missing_const_res", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", TypeSize: 4}}}, Kind: []string{"syz_missing_const_res"}, Values: []uint64{1}},
15 {Name: "syz_res", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", TypeSize: 4}}}, Kind: []string{"syz_res"}, Values: []uint64{65535}},
16 {Name: "unsupported", Type: &IntType{IntTypeCommon: IntTypeCommon{TypeCommon: TypeCommon{TypeName: "int32", TypeSize: 4}}}, Kind: []string{"unsupported"}, Values: []uint64{0}},
20 {Key: StructKey{Name: "any0"}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "any0", IsVarlen: true}, Fields: []Type{
27 &StructType{Key: StructKey{Name: "anybitfields"}, FldName: "f5"},
28 &ArrayType{TypeCommon: TypeCommon{TypeName: "array", FldName: "f6", IsVarlen: true}, Type: &StructType{Key: StructKey{Name: "any1"}}}
    [all...]
  /external/llvm/lib/IR/
DebugInfoMetadata.cpp 70 #define HANDLE_DI_FLAG(ID, NAME) .Case("DIFlag" #NAME, Flag##NAME)
79 #define HANDLE_DI_FLAG(ID, NAME) \
80 case Flag##NAME: \
81 return "DIFlag" #NAME;
109 #define HANDLE_DI_FLAG(ID, NAME) \
222 MDString *Name, StorageType Storage,
224 assert(isCanonical(Name) && "Expected canonical MDString");
225 DEFINE_GETIMPL_LOOKUP(DIEnumerator, (Value, Name));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
X86AsmParser.cpp 73 /// @name Auto-generated Matcher Functions
90 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
97 /// @name Auto-generated Match Functions
100 static unsigned MatchRegisterName(StringRef Name);
402 return Error(Tok.getLoc(), "invalid register name");
406 // If the match failed, try the register name as lowercase.
482 return Error(Tok.getLoc(), "invalid register name");
658 ParseInstruction(StringRef Name, SMLoc NameLoc,
660 StringRef PatchedName = Name;
665 PatchedName = PatchedName.substr(0, Name.size()-1)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyLibCalls.cpp     [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiTables/
Dsdt.asl 2 Contains root level name space objects for the platform
22 Name (\_S0, Package () {5, 0, 0, 0}) // Working
23 Name (\_S5, Package () {0, 0, 0, 0}) // Soft Off
33 Name (_HID, EISAID ("PNP0A03"))
34 Name (_ADR, 0x00000000)
35 Name (_BBN, 0x00)
36 Name (_UID, 0x00)
41 Name (CRES, ResourceTemplate () {
114 Name (CR64, ResourceTemplate () {
310 Name (_ADR, 0x00010000)
    [all...]
  /external/llvm/tools/dsymutil/
MachODebugMapParser.cpp 70 uint64_t getMainBinarySymbolAddress(StringRef Name);
168 const char *Name;
190 for (unsigned i = 0; DarwinStabNames[i].Name; i++) {
192 return DarwinStabNames[i].Name;
259 const char *Name = &MainBinaryStrings.data()[StringIndex];
260 if (Name && Name[0])
261 OS << " '" << Name << "'";
346 const char *Name = &MainBinaryStrings.data()[StringIndex];
352 return switchToNewDebugMapObject(Name, Timestamp)
    [all...]
  /art/compiler/optimizing/
intrinsics_arm64.h 47 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...) \
48 void Visit ## Name(HInvoke* invoke) override;
72 #define OPTIMIZING_INTRINSICS(Name, IsStatic, NeedsEnvironmentOrCache, SideEffects, Exceptions, ...) \
73 void Visit ## Name(HInvoke* invoke) override;
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Pv660AcpiTables/
SASSSDT.ASL 32 Name(_HID, "HISI0161")
33 Name(_CCA, 1)
34 Name(_CRS, ResourceTemplate() {
65 Name (_DSD, Package () {
100 Name(_HID, "HISI0161")
101 Name(_CCA, 1)
102 Name(_CRS, ResourceTemplate() {
133 Name (_DSD, Package () {
  /device/linaro/bootloader/edk2/ArmPkg/Library/RvdPeCoffExtraActionLib/
RvdPeCoffExtraActionLib.c 66 @param Name Path to convert if needed
71 IN CHAR8 *Name
78 Ptr = AsciiStrStr (Name, "/cygdrive/");
80 return Name;
101 return Name;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
TableFunction.py 39 # @param Name: Name of a Function
48 # @param FunNameStartLine: StartLine of a Function name
49 # @param FunNameStartColumn: StartColumn of a Function name
55 Name VARCHAR NOT NULL,
76 # @param Name: Name of a Function
85 # @param FunNameStartLine: StartLine of a Function name
86 # @param FunNameStartColumn: StartColumn of a Function name
88 def Insert(self, Header, Modifier, Name, ReturnStatement, StartLine, StartColumn, EndLine, EndColumn, BodyStartLine, BodyStartColumn, Belo (…)
    [all...]
TableIdentifier.py 40 # @param Name: Name of a Identifier
54 Name VARCHAR NOT NULL,
73 # @param Name: Name of a Identifier
83 def Insert(self, Modifier, Type, Name, Value, Model, BelongsToFile, BelongsToFunction, StartLine, StartColumn, EndLine, EndColumn):
85 (Modifier, Type, Name, Value) = ConvertToSqlString((Modifier, Type, Name, Value))
87 % (self.Table, self.ID, Modifier, Type, Name, Value, Model, BelongsToFile, BelongsToFunction, StartLine, StartColumn, EndLine, EndColumn)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
FWVolume.h 12 Module Name:
42 char *Name,
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/
PciIrq.asi 36 Name(_HID,EISAID("PNP0C0F"))
38 Name(_UID, 1)
59 Name(BUF0,
79 Name(_PRS,
103 Name(_HID,EISAID("PNP0C0F"))
105 Name(_UID, 2)
126 Name(BUF0,
145 Name(_PRS,
169 Name(_HID,EISAID("PNP0C0F"))
171 Name(_UID, 3)
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Include/Library/
BcfgCommandLib.h 25 @param[in] Name the profile name to use
35 IN CONST CHAR16 *Name

Completed in 549 milliseconds

<<11121314151617181920>>