Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZSelectionDAGInfo.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()
/freebsd-11-stable/contrib/libucl/haskell/
HDhucl.hs38 …bject_emit_len" ucl_object_emit_len :: UCLObjectHandle -> UCLEmitterType -> Ptr CSize -> IO CString
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
HDConstantFold.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()
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGExprConstant.cpp165 CharUnits CSize = getSize(C); in add() local
166 llvm::Optional<size_t> LastElemToReplace = splitAt(Offset + CSize); in add()
175 Size = std::max(Size, Offset + CSize); in add()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
HDSelectionDAGBuilder.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()