Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp55 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) in EmitTargetCodeForMemcpy() local
57 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
84 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemset() local
85 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset()
183 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemcmp() local
184 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp()
/third_party/skia/third_party/externals/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.cpp2529 size_t CSize = CStride * height / 2; in size() local
2531 return YSize + 2 * CSize; in size()
/third_party/lz4/doc/
Dlz4_Frame_format.md363 | MagicNb | B.CSize | CData | B.CSize | CData | (...) | EndMark |
365 | 4 bytes | 4 bytes | CSize | 4 bytes | CSize | x times | EOF |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.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 (ShAmt.uge(CSize - ByteStart)) in ExtractConstantBytes()
282 if (ShAmt.ule(CSize - (ByteStart + ByteSize))) in ExtractConstantBytes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp7324 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size); in visitMemCmpCall() local
7325 if (CSize && CSize->getZExtValue() == 0) { in visitMemCmpCall()
7344 if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I)) in visitMemCmpCall()
7373 unsigned NumBitsToCompare = CSize->getZExtValue() * 8; in visitMemCmpCall()