Searched defs:BytesLeft (Results 1 - 8 of 8) sorted by relevance

/external/lldb/include/lldb/Core/
H A DDataEncoder.h429 return length <= BytesLeft (offset);
433 BytesLeft (uint32_t offset) const function in class:lldb_private::DataEncoder
H A DDataExtractor.h1262 return length <= BytesLeft (offset);
1275 BytesLeft (lldb::offset_t offset) const function in class:lldb_private::DataExtractor
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp49 unsigned BytesLeft = SizeVal & 3; local
93 if (BytesLeft == 0)
97 unsigned BytesLeftSave = BytesLeft;
99 while (BytesLeft) {
100 if (BytesLeft >= 2) {
116 BytesLeft -= VTSize;
122 BytesLeft = BytesLeftSave;
123 while (BytesLeft) {
124 if (BytesLeft >= 2) {
138 BytesLeft
[all...]
H A DARMISelLowering.cpp6980 unsigned BytesLeft = SizeVal % UnitSize; local
6981 unsigned LoopSize = SizeVal - BytesLeft;
7004 for (unsigned i = 0; i < BytesLeft; i++) {
7135 // Add epilogue to handle BytesLeft.
7143 for (unsigned i = 0; i < BytesLeft; i++) {
/external/lldb/tools/debugserver/source/
H A DDNBDataRef.h59 offset_t BytesLeft (offset_t offset) const function in class:DNBDataRef
69 return BytesLeft(offset) > 0;
73 return num_bytes <= BytesLeft (offset);
/external/llvm/lib/Support/
H A DMemoryBuffer.cpp360 size_t BytesLeft = MapSize; local
366 while (BytesLeft) {
368 ssize_t NumRead = ::pread(FD, BufPtr, BytesLeft, MapSize-BytesLeft+Offset);
370 ssize_t NumRead = ::read(FD, BufPtr, BytesLeft);
379 memset(BufPtr, 0, BytesLeft); // zero-initialize rest of the buffer.
382 BytesLeft -= NumRead;
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp86 unsigned BytesLeft = 0; local
120 BytesLeft = SizeVal % UBytes;
157 } else if (BytesLeft) {
159 unsigned Offset = SizeVal - BytesLeft;
167 DAG.getConstant(BytesLeft, SizeVT),
227 unsigned BytesLeft = SizeVal % UBytes; local
249 if (BytesLeft) {
251 unsigned Offset = SizeVal - BytesLeft;
260 DAG.getConstant(BytesLeft, SizeVT),
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp268 /// pointer to copy results into and BytesLeft is the number of bytes left in
271 unsigned char *CurPtr, unsigned BytesLeft,
289 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) {
302 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD);
306 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD);
310 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD);
328 BytesLeft, TD))
340 if (BytesLeft <= NextEltOffset - CurEltOffset - ByteOffset)
345 BytesLeft -= NextEltOffset - CurEltOffset - ByteOffset;
366 BytesLeft, T
270 ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, unsigned char *CurPtr, unsigned BytesLeft, const DataLayout &TD) argument
[all...]

Completed in 1701 milliseconds