HomeSort by relevance Sort by last modified time
    Searched refs:Prefix (Results 51 - 75 of 376) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
SpecialCaseList.cpp 163 // Get our prefix and unparsed regexp.
165 StringRef Prefix = SplitLine.first;
190 auto &Entry = Sections[SectionsMap[Section]].Entries[Prefix][Category];
203 bool SpecialCaseList::inSection(StringRef Section, StringRef Prefix,
205 return inSectionBlame(Section, Prefix, Query, Category);
208 unsigned SpecialCaseList::inSectionBlame(StringRef Section, StringRef Prefix,
214 inSectionBlame(SectionIter.Entries, Prefix, Query, Category);
222 StringRef Prefix, StringRef Query,
224 SectionEntries::const_iterator I = Entries.find(Prefix);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-split/
llvm-split.cpp 36 static cl::opt<unsigned> NumOutputs("j", cl::Prefix, cl::init(2),
40 PreserveLocals("preserve-locals", cl::Prefix, cl::init(false),
  /external/swiftshader/third_party/subzero/src/
IceTranslator.h 59 /// Creates a name using the given prefix and corresponding index.
60 std::string createUnnamedName(const std::string &Prefix, SizeT Index);
62 /// Reports if there is a (potential) conflict between Name, and using Prefix
66 const std::string &Prefix);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/PerfJITEvents/
PerfJITEventListener.cpp 131 // record prefix (mandatory in each record)
139 LLVMPerfJitRecordPrefix Prefix;
157 LLVMPerfJitRecordPrefix Prefix;
404 rec.Prefix.Id = JIT_CODE_LOAD;
405 rec.Prefix.TotalSize = sizeof(rec) + // debug record itself
408 rec.Prefix.Timestamp = perf_get_timestamp();
435 rec.Prefix.Id = JIT_CODE_DEBUG_INFO;
436 rec.Prefix.TotalSize = sizeof(rec); // will be increased further
437 rec.Prefix.Timestamp = perf_get_timestamp();
446 rec.Prefix.TotalSize += sizeof(LLVMPerfJitDebugEntry)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
CrashDebugger.cpp 62 ReducePassList::doTest(std::vector<std::string> &Prefix,
67 if (!Prefix.empty()) {
69 << getPassesString(Prefix) << ": ";
71 if (BD.runPasses(BD.getProgram(), Prefix, PfxOutput))
115 virtual TestResult doTest(std::vector<GlobalVariable*> &Prefix,
120 if (!Prefix.empty() && TestGlobalVariables(Prefix))
185 virtual TestResult doTest(std::vector<Function*> &Prefix,
190 if (!Prefix.empty() && TestFuncs(Prefix))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
TarWriterTest.cpp 35 char Prefix[155];
91 EXPECT_EQ("/" + x154, StringRef(Hdr1.Prefix));
95 EXPECT_EQ("", StringRef(Hdr2.Prefix));
99 EXPECT_EQ("", StringRef(Hdr3.Prefix));
103 EXPECT_EQ("", StringRef(Hdr4.Prefix));
108 EXPECT_EQ("/" + x154, StringRef(Hdr5.Prefix));
117 EXPECT_EQ("", StringRef(Hdr->Prefix));
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordDxe/
OpalHiiCallbacks.c 25 @param Prefix The prefix string.
33 const CHAR16 *Prefix
47 PrefixLen = StrLen(Prefix);
61 CopyMem(VarName, Prefix, PrefixLen * sizeof(CHAR16));
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/llvm/include/llvm/Option/
Option.h 89 /// \brief Get the name of this option without any prefix.
117 /// \brief Get the default prefix for this option.
119 const char *Prefix = *Info->Prefixes;
120 return Prefix ? Prefix : StringRef();
123 /// \brief Get the name of this option with the default prefix.
195 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
253 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
254 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
258 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/lzma/CPP/Common/
Wildcard.h 92 UString Prefix;
95 CPair(const UString &prefix): Prefix(prefix) { };
100 k_RelatPath, // absolute prefix as Prefix, remain path in Tree
101 k_FullPath, // drive prefix as Prefix, remain path in Tree
121 int FindPrefix(const UString &prefix) const;
128 { return (Pairs.Size() == 1 && Pairs.Front().Prefix.IsEmpty()); }
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
Option.h 98 /// Get the name of this option without any prefix.
126 /// Get the default prefix for this option.
128 const char *Prefix = *Info->Prefixes;
129 return Prefix ? Prefix : StringRef();
132 /// Get the name of this option with the default prefix.
205 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
CrashDebugger.cpp 85 ReducePassList::doTest(std::vector<std::string> &Prefix,
89 if (!Prefix.empty()) {
91 << getPassesString(Prefix) << ": ";
92 if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput))
132 Expected<TestResult> doTest(std::vector<GlobalVariable *> &Prefix,
136 if (!Prefix.empty() && TestGlobalVariables(Prefix))
199 Expected<TestResult> doTest(std::vector<Function *> &Prefix,
203 if (!Prefix.empty() && TestFuncs(Prefix))
    [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 76 ReducePassList::doTest(std::vector<std::string> &Prefix,
81 if (!Prefix.empty()) {
83 << getPassesString(Prefix) << ": ";
84 if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput))
127 TestResult doTest(std::vector<GlobalVariable*> &Prefix,
132 if (!Prefix.empty() && TestGlobalVariables(Prefix))
197 TestResult doTest(std::vector<Function*> &Prefix,
202 if (!Prefix.empty() && TestFuncs(Prefix))
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
X86RecognizableInstr.cpp 210 Prefix = byteFromRec(Rec, "Prefix");
296 else if (HasVEX_LPrefix && Prefix == X86Local::XS)
298 else if (HasVEX_LPrefix && Prefix == X86Local::XD)
300 else if (HasVEX_WPrefix && Prefix == X86Local::XS)
302 else if (HasVEX_WPrefix && Prefix == X86Local::XD)
308 else if (Prefix == X86Local::XD)
310 else if (Prefix == X86Local::XS)
318 (Prefix == X86Local::XD || Prefix == X86Local::TF)
    [all...]
  /art/libartbase/base/
hex_dump_test.cc 63 TEST(HexDump, Prefix) {
66 oss << HexDump(test_text, strlen(test_text), false, "test prefix: ");
68 "test prefix: " ZEROPREFIX "00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 "
  /external/giflib/
gif_lib_private.h 52 GifPrefixType Prefix[LZ_MAX_CODE + 1];
  /external/swiftshader/third_party/LLVM/include/llvm/
Intrinsics.h 75 ID getIntrinsicForGCCBuiltin(const char *Prefix, const char *BuiltinName);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/
PrintLib.c 116 CHAR8 Prefix;
183 Prefix = 0;
297 Prefix = ' ';
300 Prefix = '+';
313 Prefix = '-';
339 if (Prefix != 0) {
506 if (Prefix != 0) {
507 Buffer = BasePrintLibFillBuffer (Buffer, EndBuffer, 1, Prefix, BytesPerOutputCharacter);
512 if (Prefix != 0) {
513 Buffer = BasePrintLibFillBuffer (Buffer, EndBuffer, 1, Prefix, BytesPerOutputCharacter);
    [all...]
  /external/clang/lib/Format/
SortJavaScriptImports.cpp 68 // import * as prefix from 'foo';
85 // Prefix from "import * as prefix". Empty for symbol imports and `export *`.
87 StringRef Prefix;
110 // '*' imports (with prefix) sort before {a, b, ...} imports.
111 if (LHS.Prefix.empty() != RHS.Prefix.empty())
112 return LHS.Prefix.empty() < RHS.Prefix.empty();
113 if (LHS.Prefix != RHS.Prefix
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 46 CheckPrefixes("check-prefix",
47 cl::desc("Prefix to use from check file (defaults to 'CHECK')"));
52 "Alias for -check-prefix permitting multiple comma separated values"));
134 /// ParsePattern - Parse the given string into the Pattern. Prefix provides
135 /// which prefix is being matched, SM provides the SourceMgr used for error
140 StringRef Prefix,
187 StringRef Prefix,
203 "found empty check string with prefix '" +
204 Prefix + ":'");
620 /// Prefix - Which prefix name this check matched
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
WebAssemblyDisassemblerEmitter.cpp 25 // First lets organize all opcodes by (prefix) byte. Prefix 0 is the
42 auto Prefix = Opc >> 8;
44 auto &CGIP = OpcodeTable[Prefix][Opc];
68 // Output one table per prefix.
91 // If we have a non-empty table for it that's not 0, this is a prefix.
103 OS << "struct { uint8_t Prefix; const WebAssemblyInstruction *Table; }\n";
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwarfdump/
Statistics.cpp 49 static void collectStatsForDie(DWARFDie Die, std::string Prefix,
95 auto &FnStats = FnStatMap[Prefix];
118 static void collectStatsRecursive(DWARFDie Die, std::string Prefix,
135 Prefix = Name;
162 collectStatsForDie(Die, Prefix, ScopeLowPC, BytesInScope, FnStatMap,
169 collectStatsRecursive(Child, Prefix, ScopeLowPC, BytesInScope, FnStatMap,
  /external/syzkaller/pkg/ifuzz/generated/
insns.go 148 {Name: "ADD_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{128}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Rm: -1, Imm: 1, VexP: -1},
150 {Name: "OR_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{128}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Reg: 1, Rm: -1, Imm: 1, VexP: -1},
152 {Name: "ADC_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{128}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Reg: 2, Rm: -1, Imm: 1, VexP: -1},
154 {Name: "SBB_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{128}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Reg: 3, Rm: -1, Imm: 1, VexP: -1},
156 {Name: "AND_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{128}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Reg: 4, Rm: -1, Imm: 1, VexP: -1},
158 {Name: "SUB_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{128}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Reg: 5, Rm: -1, Imm: 1, VexP: -1},
160 {Name: "XOR_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{128}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Reg: 6, Rm: -1, Imm: 1, VexP: -1},
163 {Name: "ADD_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{129}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Rm: -1, Imm: -1, VexP: -1},
165 {Name: "OR_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{129}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Reg: 1, Rm: -1, Imm: -1, VexP: -1},
167 {Name: "ADC_LOCK", Extension: "BASE", Mode: 15, Opcode: []uint8{129}, Prefix: []uint8{240}, Modrm: true, Mod: -3, Reg: 2, Rm: -1, Imm: -1, VexP: -1}
    [all...]

Completed in 2091 milliseconds

1 23 4 5 6 7 8 91011>>