Home
last modified time | relevance | path

Searched refs:CSize (Results 1 – 13 of 13) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp56 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) in EmitTargetCodeForMemcpy() local
58 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
85 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemset() local
86 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset()
184 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemcmp() local
185 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp()
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp56 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) in EmitTargetCodeForMemcpy() local
58 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
86 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemset() local
87 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset()
187 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemcmp() local
188 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp()
/external/clang/test/CodeGen/
D2008-03-24-BitField-And-Alloca.c51 unsigned int CSize : 2; member
/external/swiftshader/src/Device/
DSampler.cpp229 unsigned int CSize = CStride * height / 2; in setTextureLevel() local
232 mipmap.buffer[2] = (byte*)mipmap.buffer[1] + CSize; in setTextureLevel()
DSurface.cpp1955 size_t CSize = CStride * height / 2; in size() local
1957 return YSize + 2 * CSize; in size()
/external/swiftshader/src/Renderer/
DSampler.cpp232 unsigned int CSize = CStride * height / 2; in setTextureLevel() local
235 mipmap.buffer[2] = (byte*)mipmap.buffer[1] + CSize; in setTextureLevel()
DSurface.cpp2692 size_t CSize = CStride * height / 2; in size() local
2694 return YSize + 2 * CSize; in size()
/external/lz4/doc/
Dlz4_Frame_format.md352 | MagicNb | B.CSize | CData | B.CSize | CData | (...) | EndMark |
354 | 4 bytes | 4 bytes | CSize | 4 bytes | CSize | x times | EOF |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DConstantFold.cpp217 unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8; in ExtractConstantBytes() local
219 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes()
220 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes()
278 if (ByteStart >= CSize-ShAmt) in ExtractConstantBytes()
282 if (ByteStart+ByteSize+ShAmt <= CSize) in ExtractConstantBytes()
/external/llvm/lib/IR/
DConstantFold.cpp217 unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8; in ExtractConstantBytes() local
219 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes()
220 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes()
278 if (ByteStart >= CSize-ShAmt) in ExtractConstantBytes()
282 if (ByteStart+ByteSize+ShAmt <= CSize) in ExtractConstantBytes()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DConstantFold.cpp199 unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8; in ExtractConstantBytes() local
201 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes()
202 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes()
260 if (ByteStart >= CSize-ShAmt) in ExtractConstantBytes()
264 if (ByteStart+ByteSize+ShAmt <= CSize) in ExtractConstantBytes()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp5922 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size); in visitMemCmpCall() local
5923 if (CSize && CSize->getZExtValue() == 0) { in visitMemCmpCall()
5944 if (CSize && IsOnlyUsedInZeroEqualityComparison(&I)) { in visitMemCmpCall()
5948 switch (CSize->getZExtValue()) { in visitMemCmpCall()
5956 LoadTy = Type::getInt16Ty(CSize->getContext()); in visitMemCmpCall()
5960 LoadTy = Type::getInt32Ty(CSize->getContext()); in visitMemCmpCall()
5964 LoadTy = Type::getInt64Ty(CSize->getContext()); in visitMemCmpCall()
5983 if (ActuallyDoIt && CSize->getZExtValue() > 4) { in visitMemCmpCall()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp6577 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size); in visitMemCmpCall() local
6578 if (CSize && CSize->getZExtValue() == 0) { in visitMemCmpCall()
6597 if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I)) in visitMemCmpCall()
6626 unsigned NumBitsToCompare = CSize->getZExtValue() * 8; in visitMemCmpCall()