Searched refs:BytesLeft (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp148 unsigned BytesLeft = SizeVal & 3; local
196 if (BytesLeft == 0)
200 auto getRemainingValueType = [](unsigned BytesLeft) {
201 return (BytesLeft >= 2) ? MVT::i16 : MVT::i8;
203 auto getRemainingSize = [](unsigned BytesLeft) {
204 return (BytesLeft >= 2) ? 2 : 1;
207 unsigned BytesLeftSave = BytesLeft;
209 while (BytesLeft) {
210 VT = getRemainingValueType(BytesLeft);
211 VTSize = getRemainingSize(BytesLeft);
[all...]
H A DARMISelLowering.cpp10643 unsigned BytesLeft = SizeVal % UnitSize; local
10644 unsigned LoopSize = SizeVal - BytesLeft;
10667 for (unsigned i = 0; i < BytesLeft; i++) {
10812 // Add epilogue to handle BytesLeft.
10820 for (unsigned i = 0; i < BytesLeft; i++) {
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataEncoder.h174 uint32_t BytesLeft(uint32_t offset) const { function in class:lldb_private::DataEncoder
187 return length <= BytesLeft(offset);
H A DDataExtractor.h956 return length <= BytesLeft(offset);
965 lldb::offset_t BytesLeft(lldb::offset_t offset) const { function in class:lldb_private::DataExtractor
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp109 unsigned BytesLeft = 0; local
141 BytesLeft = SizeVal % UBytes;
166 if (BytesLeft) {
168 unsigned Offset = SizeVal - BytesLeft;
176 Val, DAG.getConstant(BytesLeft, dl, SizeVT), Alignment,
259 const uint64_t BytesLeft = Size % BlockBytes; local
265 if (BytesLeft == 0)
268 assert(BytesLeft && "We have leftover at this point");
278 unsigned Offset = Size - BytesLeft;
285 DAG.getConstant(BytesLeft, d
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp248 uint32_t BytesLeft = Buffer.size();
251 while (BytesLeft > 0) {
260 uint32_t BytesInChunk = std::min(BytesLeft, BlockSize - OffsetInBlock);
264 BytesLeft -= BytesInChunk;
396 uint32_t BytesLeft = Buffer.size(); local
398 while (BytesLeft > 0) {
401 std::min(BytesLeft, getBlockSize() - OffsetInBlock);
410 BytesLeft -= BytesToWriteInChunk;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFInstrInfo.cpp86 unsigned BytesLeft = CopyLen & (Alignment - 1); local
88 bool Hanging4Byte = BytesLeft & 0x4;
89 bool Hanging2Byte = BytesLeft & 0x2;
90 bool Hanging1Byte = BytesLeft & 0x1;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp153 size_t BytesLeft = IO.maxFieldLength(); local
158 if (BytesNeeded > BytesLeft) {
159 size_t BytesToDrop = (BytesNeeded - BytesLeft);
172 auto N = StringRef(Name).take_front(BytesLeft - 1);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp401 /// results into and BytesLeft is the number of bytes left in
404 unsigned BytesLeft, const DataLayout &DL) {
421 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) {
434 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
438 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
442 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
460 BytesLeft, DL))
472 if (BytesLeft <= NextEltOffset - CurEltOffset - ByteOffset)
477 BytesLeft -= NextEltOffset - CurEltOffset - ByteOffset;
501 BytesLeft, D
403 ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, unsigned char *CurPtr, unsigned BytesLeft, const DataLayout &DL) argument
607 unsigned BytesLeft = BytesLoaded; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp810 param_subexpr_extractor.BytesLeft(param_subexpr_offset) != 0)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp184 const size_t opcode_data_len = data.BytesLeft(data_offset);

Completed in 238 milliseconds