Lines Matching refs:ByteArray
83 static bool ByteArrayFromString(ByteArrayTy &ByteArray,
119 ByteArray.clear();
123 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
162 ByteArrayTy ByteArray;
165 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM);
167 if (!ByteArray.empty())
168 ErrorOccurred |= PrintInsts(*DisAsm, *IP, ByteArray, SM, Out);
174 ByteArrayTy &ByteArray = *((ByteArrayTy*)Arg);
176 if (A >= ByteArray.size())
179 *B = ByteArray[A].first;
203 ByteArrayTy ByteArray;
209 if (ByteArrayFromString(ByteArray, Str, SM)) {
239 while (ByteArray.size()) {
241 inst(disassembler->createInst(byteArrayReader, 0, &ByteArray));
248 ByteArray.erase (ByteArray.begin(), ByteArray.begin() + inst->byteSize());