HomeSort by relevance Sort by last modified time
    Searched defs:BytesLeft (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 49 unsigned BytesLeft = SizeVal & 3;
90 if (BytesLeft == 0)
94 unsigned BytesLeftSave = BytesLeft;
96 while (BytesLeft) {
97 if (BytesLeft >= 2) {
113 BytesLeft -= VTSize;
118 BytesLeft = BytesLeftSave;
119 while (BytesLeft) {
120 if (BytesLeft >= 2) {
134 BytesLeft -= VTSize
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 86 unsigned BytesLeft = 0;
120 BytesLeft = SizeVal % UBytes;
159 } else if (BytesLeft) {
161 unsigned Offset = SizeVal - BytesLeft;
169 DAG.getConstant(BytesLeft, SizeVT),
220 unsigned BytesLeft = SizeVal % UBytes;
243 if (BytesLeft) {
245 unsigned Offset = SizeVal - BytesLeft;
254 DAG.getConstant(BytesLeft, SizeVT),
  /external/llvm/lib/Support/
MemoryBuffer.cpp 330 size_t BytesLeft = MapSize;
336 while (BytesLeft) {
338 ssize_t NumRead = ::pread(FD, BufPtr, BytesLeft, MapSize-BytesLeft+Offset);
340 ssize_t NumRead = ::read(FD, BufPtr, BytesLeft);
354 BytesLeft -= NumRead;

Completed in 167 milliseconds