Searched refs:FromSize (Results 1 – 9 of 9) sorted by relevance
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| H A D | FuzzerMutate.cpp | 299 size_t MutationDispatcher::CopyPartOf(const uint8_t *From, size_t FromSize, in CopyPartOf() argument 305 CopySize = std::min(CopySize, FromSize); in CopyPartOf() 306 size_t FromBeg = Rand(FromSize - CopySize + 1); in CopyPartOf() 307 assert(FromBeg + CopySize <= FromSize); in CopyPartOf() 314 size_t MutationDispatcher::InsertPartOf(const uint8_t *From, size_t FromSize, in InsertPartOf() argument 319 size_t MaxCopySize = std::min(AvailableSpace, FromSize); in InsertPartOf() 321 size_t FromBeg = Rand(FromSize - CopySize + 1); in InsertPartOf() 322 assert(FromBeg + CopySize <= FromSize); in InsertPartOf()
|
| H A D | FuzzerMutate.h | 107 size_t InsertPartOf(const uint8_t *From, size_t FromSize, uint8_t *To, 109 size_t CopyPartOf(const uint8_t *From, size_t FromSize, uint8_t *To,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsInstructionSelector.cpp | 638 unsigned FromSize = MRI.getType(I.getOperand(1).getReg()).getSizeInBits(); in select() local 642 assert((FromSize == 32 || FromSize == 64) && in select() 646 if (FromSize == 32) in select()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonVectorCombine.cpp | 1166 int FromSize = getSizeOf(FromSTy); in rescale() local 1168 assert(FromSize % ToSize == 0 || ToSize % FromSize == 0); in rescale() 1172 int ToCount = (FromCount * FromSize) / ToSize; in rescale() 1173 assert((FromCount * FromSize) % ToSize == 0); in rescale()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 1516 DIExpression::ExtOps DIExpression::getExtOps(unsigned FromSize, unsigned ToSize, in getExtOps() argument 1519 DIExpression::ExtOps Ops{{dwarf::DW_OP_LLVM_convert, FromSize, TK, in getExtOps() 1525 unsigned FromSize, unsigned ToSize, in appendExt() argument 1527 return appendToStack(Expr, getExtOps(FromSize, ToSize, Signed)); in appendExt()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 736 unsigned FromSize = MRI.getType(MI.getOperand(1).getReg()).getSizeInBits(); in libcall() local 738 if ((ToSize != 32 && ToSize != 64) || (FromSize != 32 && FromSize != 64)) in libcall() 743 FromSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx)); in libcall() 751 unsigned FromSize = MRI.getType(MI.getOperand(1).getReg()).getSizeInBits(); in libcall() local 753 if ((FromSize != 32 && FromSize != 64) || (ToSize != 32 && ToSize != 64)) in libcall() 758 FromSize == 32 ? Type::getInt32Ty(Ctx) : Type::getInt64Ty(Ctx)); in libcall()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 2843 static ExtOps getExtOps(unsigned FromSize, unsigned ToSize, bool Signed); 2847 static DIExpression *appendExt(const DIExpression *Expr, unsigned FromSize,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ASTContext.cpp | 6414 uint64_t FromSize = getTypeSize(BT); in getPromotedIntegerType() local 6419 if (FromSize < ToSize || in getPromotedIntegerType() 6420 (FromSize == ToSize && in getPromotedIntegerType()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 2150 uint64_t FromSize = Context.getTypeSize(FromType); in IsIntegralPromotion() local 2161 if (FromSize < ToSize || in IsIntegralPromotion() 2162 (FromSize == ToSize && in IsIntegralPromotion()
|