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

  /external/llvm/lib/Target/PTX/
PTXSelectionDAGInfo.cpp 51 unsigned BytesLeft = SizeVal & 3;
93 if (BytesLeft == 0)
97 unsigned BytesLeftSave = BytesLeft;
99 while (BytesLeft) {
100 if (BytesLeft >= 2) {
116 BytesLeft -= VTSize;
121 BytesLeft = BytesLeftSave;
122 while (BytesLeft) {
123 if (BytesLeft >= 2) {
137 BytesLeft -= VTSize
    [all...]
  /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...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 84 unsigned BytesLeft = 0;
118 BytesLeft = SizeVal % UBytes;
157 } else if (BytesLeft) {
159 unsigned Offset = SizeVal - BytesLeft;
167 DAG.getConstant(BytesLeft, SizeVT),
218 unsigned BytesLeft = SizeVal % UBytes;
241 if (BytesLeft) {
243 unsigned Offset = SizeVal - BytesLeft;
252 DAG.getConstant(BytesLeft, SizeVT),
  /external/llvm/lib/Support/
MemoryBuffer.cpp 331 size_t BytesLeft = MapSize;
337 while (BytesLeft) {
339 ssize_t NumRead = ::pread(FD, BufPtr, BytesLeft, MapSize-BytesLeft+Offset);
341 ssize_t NumRead = ::read(FD, BufPtr, BytesLeft);
355 BytesLeft -= NumRead;
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 273 /// pointer to copy results into and BytesLeft is the number of bytes left in
276 unsigned char *CurPtr, unsigned BytesLeft,
294 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) {
304 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD);
308 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD);
326 BytesLeft, TD))
338 if (BytesLeft <= NextEltOffset-CurEltOffset-ByteOffset)
343 BytesLeft -= NextEltOffset-CurEltOffset-ByteOffset;
364 BytesLeft, TD))
366 if (EltSize >= BytesLeft)
    [all...]

Completed in 1051 milliseconds