Home
last modified time | relevance | path

Searched refs:ByteArray (Results 1 – 14 of 14) sorted by relevance

/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp98 static bool byteArrayFromString(ByteArrayTy &ByteArray, StringRef &Str, in ByteArrayFromString() argument
133 ByteArray.first.clear(); in disassemble()
134 ByteArray.second.clear(); in disassemble()
138 ByteArray.first.push_back(ByteVal); in disassemble()
139 ByteArray.second.push_back(Value.data()); in disassemble()
174 ByteArrayTy ByteArray; in disassemble()
179 ByteArray.first.clear(); in disassemble()
180 ByteArray.second.clear(); in disassemble()
203 ErrorOccurred |= byteArrayFromString(ByteArray, Str, SM, HexBytes); in disassemble()
205 if (!ByteArray in disassemble()
162 ByteArrayTy ByteArray; disassemble() local
[all...]
/llvm-project/llvm/tools/llvm-ml/
H A DDisassembler.cpp95 static bool ByteArrayFromString(ByteArrayTy &ByteArray, StringRef &Str, in ByteArrayFromString() argument
113 ByteArray.first.clear(); in ByteArrayFromString()
114 ByteArray.second.clear(); in ByteArrayFromString()
118 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
119 ByteArray.second.push_back(Value.data()); in ByteArrayFromString()
160 ByteArrayTy ByteArray; in disassemble() local
165 ByteArray.first.clear(); in disassemble()
166 ByteArray.second.clear(); in disassemble()
189 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM); in disassemble()
191 if (!ByteArray.first.empty()) in disassemble()
[all …]
/llvm-project/libc/test/src/__support/HashTable/
H A Dgroup_test.cpp20 struct ByteArray {
30 ByteArray array{}; in TEST()
63 ByteArray array{}; in TEST()
18 struct ByteArray { global() struct
19 dataLIBC_NAMESPACE::internal::ByteArray global() argument
/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp261 GlobalVariable *ByteArray;
457 /// ByteArray, Inline, AllOnes: log2 of the required global alignment
461 /// ByteArray, Inline, AllOnes: one less than the size of the memory region
465 /// ByteArray: the byte array to test the address against.
468 /// ByteArray: the bit mask to apply to bytes loaded from the byte array.
614 BAI->ByteArray = ByteArrayGlobal; in allocateByteArrays()
642 auto ByteArray = in allocateByteArrays()
652 ByteArrayConst->getType(), ByteArray, Idxs); in allocateByteArrays()
659 BAI->ByteArray->replaceAllUsesWith(Alias); in allocateByteArrays()
660 BAI->ByteArray in allocateByteArrays()
255 GlobalVariable *ByteArray; global() member
636 auto ByteArray = allocateByteArrays() local
673 Constant *ByteArray = TIL.TheByteArray; createBitSetTest() local
[all...]
/llvm-project/llvm/test/Transforms/LowerTypeTests/
H A Dexport-bytearray.ll38 ; SUMMARY-NEXT: Kind: ByteArray
51 ; SUMMARY-NEXT: Kind: ByteArray
/llvm-project/bolt/include/bolt/Core/
H A DBinaryContext.h1512 inline raw_ostream &operator<<(raw_ostream &OS, const ArrayRef<T> &ByteArray) {
1514 for (const auto Byte : ByteArray) {
/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h22 io.enumCase(value, "ByteArray", TypeTestResolution::ByteArray);
H A DModuleSummaryIndex.h1223 ByteArray, ///< Test a byte array (first example)
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp170 return PyObjectType::ByteArray; in GetObjectType()
287 case PyObjectType::ByteArray: in CreateStructuredObject()
H A DPythonDataObjects.h95 ByteArray, enumerator
/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp171 ArrayRef<char> ByteArray(Bytes, ::SysStringByteLen(Value)); in DumpDIAValue() local
173 if (llvm::convertUTF16ToUTF8String(ByteArray, Result)) in DumpDIAValue()
/llvm-project/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp241 EXPECT_EQ(PyObjectType::ByteArray, python_bytes.GetObjectType()); in TEST_F()
/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3175 case TypeTestResolution::ByteArray: in printTypeIdSummary()
/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp9031 TTRes.TheKind = TypeTestResolution::ByteArray; in parseWpdRes()