Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A 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()
/freebsd-12.1/contrib/libucl/haskell/
H A Dhucl.hs38 …bject_emit_len" ucl_object_emit_len :: UCLObjectHandle -> UCLEmitterType -> Ptr CSize -> IO CString
/freebsd-12.1/contrib/llvm/lib/IR/
H A 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()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6722 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size); in visitMemCmpCall() local
6723 if (CSize && CSize->getZExtValue() == 0) { in visitMemCmpCall()
6742 if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I)) in visitMemCmpCall()
6771 unsigned NumBitsToCompare = CSize->getZExtValue() * 8; in visitMemCmpCall()