Searched refs:EncodedBytes (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | BinaryStreamWriter.cpp | 36 uint8_t EncodedBytes[10] = {0}; in writeULEB128() local 37 unsigned Size = encodeULEB128(Value, &EncodedBytes[0]); in writeULEB128() 38 return writeBytes({EncodedBytes, Size}); in writeULEB128() 42 uint8_t EncodedBytes[10] = {0}; in writeSLEB128() local 43 unsigned Size = encodeSLEB128(Value, &EncodedBytes[0]); in writeSLEB128() 44 return writeBytes({EncodedBytes, Size}); in writeSLEB128()
|
D | BinaryStreamReader.cpp | 45 SmallVector<uint8_t, 10> EncodedBytes; in readULEB128() local 52 EncodedBytes.push_back(NextByte[0]); in readULEB128() 55 Dest = decodeULEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); in readULEB128() 60 SmallVector<uint8_t, 10> EncodedBytes; in readSLEB128() local 67 EncodedBytes.push_back(NextByte[0]); in readSLEB128() 70 Dest = decodeSLEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); in readSLEB128()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZAsmPrinter.cpp | 626 unsigned EncodedBytes = 0; in LowerPATCHPOINT() local 643 EncodedBytes += 6; in LowerPATCHPOINT() 648 EncodedBytes += 6; in LowerPATCHPOINT() 654 EncodedBytes += 2; in LowerPATCHPOINT() 661 EncodedBytes += 6; in LowerPATCHPOINT() 666 assert(NumBytes >= EncodedBytes && in LowerPATCHPOINT() 668 assert((NumBytes - EncodedBytes) % 2 == 0 && in LowerPATCHPOINT() 670 while (EncodedBytes < NumBytes) in LowerPATCHPOINT() 671 EncodedBytes += EmitNop(OutContext, *OutStreamer, NumBytes - EncodedBytes, in LowerPATCHPOINT()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCAsmPrinter.cpp | 385 unsigned EncodedBytes = 0; in LowerPATCHPOINT() local 394 EncodedBytes = 0; in LowerPATCHPOINT() 399 ++EncodedBytes; in LowerPATCHPOINT() 404 ++EncodedBytes; in LowerPATCHPOINT() 409 ++EncodedBytes; in LowerPATCHPOINT() 421 ++EncodedBytes; in LowerPATCHPOINT() 433 ++EncodedBytes; in LowerPATCHPOINT() 438 ++EncodedBytes; in LowerPATCHPOINT() 443 ++EncodedBytes; in LowerPATCHPOINT() 445 ++EncodedBytes; in LowerPATCHPOINT() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64AsmPrinter.cpp | 906 unsigned EncodedBytes = 0; in LowerPATCHPOINT() local 911 EncodedBytes = 16; in LowerPATCHPOINT() 931 assert(NumBytes >= EncodedBytes && in LowerPATCHPOINT() 933 assert((NumBytes - EncodedBytes) % 4 == 0 && in LowerPATCHPOINT() 935 for (unsigned i = EncodedBytes; i < NumBytes; i += 4) in LowerPATCHPOINT()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86MCInstLower.cpp | 1369 unsigned EncodedBytes = 0; in LowerPATCHPOINT() local 1395 EncodedBytes = 13; in LowerPATCHPOINT() 1397 EncodedBytes = 12; in LowerPATCHPOINT() 1410 assert(NumBytes >= EncodedBytes && in LowerPATCHPOINT() 1413 EmitNops(*OutStreamer, NumBytes - EncodedBytes, Subtarget->is64Bit(), in LowerPATCHPOINT()
|