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

  /external/llvm/include/llvm/Support/
StreamingMemoryObject.h 53 mutable size_t ObjectSize; // 0 if unknown, set if wrapper seen or EOF reached
71 if (ObjectSize == 0)
72 ObjectSize = BytesRead;
76 return !ObjectSize || Pos < ObjectSize;
  /external/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 90 uint64_t ObjectSize = 0;
148 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DeadStoreElimination.cpp 336 uint64_t ObjectSize =
338 if (ObjectSize == Later.Size)
  /external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 498 case Intrinsic::objectsize:
831 case Intrinsic::objectsize: {
834 Function *ObjectSize = Intrinsic::getDeclaration(Mod,
835 Intrinsic::objectsize,
840 = Builder.CreateCall(ObjectSize, { Src, Intr->getOperand(1) });
  /external/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
BasicAliasAnalysis.cpp 138 uint64_t ObjectSize = getObjectSize(V, TD);
139 return ObjectSize != AliasAnalysis::UnknownSize && ObjectSize < Size;
146 uint64_t ObjectSize = getObjectSize(V, TD);
147 return ObjectSize != AliasAnalysis::UnknownSize && ObjectSize == Size;
    [all...]
  /external/ImageMagick/coders/
mat.c 104 unsigned long ObjectSize;
901 MATLAB_HDR.ObjectSize = ReadBlobXXXLong(image);
903 filepos += MATLAB_HDR.ObjectSize + 4 + 4;
909 image2 = DecompressBlock(image,MATLAB_HDR.ObjectSize,clone_info,exception);
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 128 // c2: llvm.objectsize() intrinsic
156 uint64_t ObjectSize = getObjectSize(V, DL, TLI, /*RoundToAlign*/ true);
158 return ObjectSize != MemoryLocation::UnknownSize && ObjectSize < Size;
164 uint64_t ObjectSize = getObjectSize(V, DL, TLI);
165 return ObjectSize != MemoryLocation::UnknownSize && ObjectSize == Size;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 417 uint64_t ObjectSize;
418 if (!E->tryEvaluateObjectSize(ObjectSize, getContext(), Type))
420 return ConstantInt::get(ResType, ObjectSize, /*isSigned=*/true);
427 /// - A call to the @llvm.objectsize intrinsic
452 // @llvm.objectsize.
461 Value *F = CGM.getIntrinsic(Intrinsic::objectsize, Tys);
    [all...]
  /external/libmtp/src/
ptp.h     [all...]

Completed in 370 milliseconds