| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerMutate.cpp | 317 size_t MutationDispatcher::CopyPartOf(const uint8_t *From, size_t FromSize, in CopyPartOf() argument 323 CopySize = std::min(CopySize, FromSize); in CopyPartOf() 324 size_t FromBeg = Rand(FromSize - CopySize + 1); in CopyPartOf() 325 assert(FromBeg + CopySize <= FromSize); in CopyPartOf() 332 size_t MutationDispatcher::InsertPartOf(const uint8_t *From, size_t FromSize, in InsertPartOf() argument 337 size_t MaxCopySize = std::min(AvailableSpace, FromSize); in InsertPartOf() 339 size_t FromBeg = Rand(FromSize - CopySize + 1); in InsertPartOf() 340 assert(FromBeg + CopySize <= FromSize); in InsertPartOf()
|
| H A D | FuzzerMutate.h | 109 size_t InsertPartOf(const uint8_t *From, size_t FromSize, uint8_t *To, 111 size_t CopyPartOf(const uint8_t *From, size_t FromSize, uint8_t *To,
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsInstructionSelector.cpp | 633 unsigned FromSize = MRI.getType(I.getOperand(1).getReg()).getSizeInBits(); in select() local 637 assert((FromSize == 32 || FromSize == 64) && in select() 641 if (FromSize == 32) in select()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonVectorCombine.cpp | 2470 int FromSize = getSizeOf(FromSTy); in rescale() local 2472 assert(FromSize % ToSize == 0 || ToSize % FromSize == 0); in rescale() 2476 int ToCount = (FromCount * FromSize) / ToSize; in rescale() 2477 assert((FromCount * FromSize) % ToSize == 0); in rescale() 2479 auto *FromITy = getIntTy(FromSize * 8); in rescale()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 2517 DIExpression::ExtOps DIExpression::getExtOps(unsigned FromSize, unsigned ToSize, in getExtOps() argument 2520 DIExpression::ExtOps Ops{{dwarf::DW_OP_LLVM_convert, FromSize, TK, in getExtOps() 2526 unsigned FromSize, unsigned ToSize, in appendExt() argument 2528 return appendToStack(Expr, getExtOps(FromSize, ToSize, Signed)); in appendExt()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 1418 unsigned FromSize = MRI.getType(MI.getOperand(1).getReg()).getSizeInBits(); in libcall() local 1421 if ((FromSize != 32 && FromSize != 64 && FromSize != 128) || !ToTy) in libcall() 1425 conversionLibcall(MI, MIRBuilder, ToTy, Type::getIntNTy(Ctx, FromSize), in libcall()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 3722 LLVM_ABI static ExtOps getExtOps(unsigned FromSize, unsigned ToSize, 3728 unsigned FromSize, unsigned ToSize,
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 2377 uint64_t FromSize = M.getDataLayout().getTypeStoreSize(FromType); in castValueToType() local 2379 assert(FromSize > 0 && "From size must be greater than zero"); in castValueToType() 2383 if (FromSize == ToSize) in castValueToType()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 8226 uint64_t FromSize = getTypeSize(BT); in getPromotedIntegerType() local 8231 if (FromSize < ToSize || in getPromotedIntegerType() 8232 (FromSize == ToSize && FromIsSigned == PT->isSignedIntegerType())) in getPromotedIntegerType()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 2708 uint64_t FromSize = Context.getTypeSize(FromType); in IsIntegralPromotion() local 2719 if (FromSize < ToSize || in IsIntegralPromotion() 2720 (FromSize == ToSize && in IsIntegralPromotion()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 11799 TypeSize FromSize = N0.getValueSizeInBits(); in salvageDebugInfo() local 11803 auto ExtOps = DIExpression::getExtOps(FromSize, ToSize, false); in salvageDebugInfo()
|