/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 56 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/ |
D | SystemZSelectionDAGInfo.cpp | 56 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/ |
D | 2008-03-24-BitField-And-Alloca.c | 51 unsigned int CSize : 2; member
|
/external/swiftshader/src/Renderer/ |
D | Sampler.cpp | 232 unsigned int CSize = CStride * height / 2; in setTextureLevel() local 235 mipmap.buffer[2] = (byte*)mipmap.buffer[1] + CSize; in setTextureLevel()
|
D | Surface.cpp | 2692 size_t CSize = CStride * height / 2; in size() local 2694 return YSize + 2 * CSize; in size()
|
/external/swiftshader/src/Device/ |
D | Sampler.cpp | 229 unsigned int CSize = CStride * height / 2; in setTextureLevel() local 232 mipmap.buffer[2] = (byte*)mipmap.buffer[1] + CSize; in setTextureLevel()
|
D | Surface.cpp | 1955 size_t CSize = CStride * height / 2; in size() local 1957 return YSize + 2 * CSize; in size()
|
/external/lz4/doc/ |
D | lz4_Frame_format.md | 352 | 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/ |
D | ConstantFold.cpp | 217 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/ |
D | ConstantFold.cpp | 217 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/ |
D | ConstantFold.cpp | 199 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/ |
D | SelectionDAGBuilder.cpp | 5922 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/ |
D | SelectionDAGBuilder.cpp | 6577 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()
|