Home | History | Annotate | Download | only in llvm-mc

Lines Matching refs:ByteArray

95 static bool ByteArrayFromString(ByteArrayTy &ByteArray,
131 ByteArray.clear();
135 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
182 ByteArrayTy ByteArray;
185 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM);
187 if (!ByteArray.empty())
188 ErrorOccurred |= PrintInsts(*DisAsm, *IP, ByteArray, SM, Out);
194 ByteArrayTy &ByteArray = *((ByteArrayTy*)Arg);
196 if (A >= ByteArray.size())
199 *B = ByteArray[A].first;
223 ByteArrayTy ByteArray;
229 if (ByteArrayFromString(ByteArray, Str, SM)) {
259 while (ByteArray.size()) {
261 inst(disassembler->createInst(byteArrayReader, 0, &ByteArray));
268 ByteArray.erase (ByteArray.begin(), ByteArray.begin() + inst->byteSize());