Searched refs:Size1 (Results 1 - 14 of 14) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCrossOver.cpp19 size_t MutationDispatcher::CrossOver(const uint8_t *Data1, size_t Size1, argument
22 assert(Size1 || Size2);
28 size_t InSize = Size1;
31 while (OutPos < MaxOutSize && (Pos1 < Size1 || Pos2 < Size2)) {
44 InSize = CurrentlyUsingFirstData ? Size2 : Size1;
H A DFuzzerInterface.h62 LLVMFuzzerCustomCrossOver(const uint8_t *Data1, size_t Size1,
H A DFuzzerMutate.h84 size_t CrossOver(const uint8_t *Data1, size_t Size1, const uint8_t *Data2,
/freebsd-13-stable/lib/libefivar/
H A Duefi-dputil.c526 UINTN Size1; local
550 Size1 = GetDevicePathSize (FirstDevicePath);
552 Size = Size1 + Size2 - END_DEVICE_PATH_LENGTH;
557 NewDevicePath = CopyMem (NewDevicePath, FirstDevicePath, Size1);
562 (Size1 - END_DEVICE_PATH_LENGTH));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp97 unsigned Size1 = Bytes == 16 ? 8 : 1 << findLastSet(Bytes); local
98 unsigned Size2 = Bytes - Size1;
99 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1,
104 DAG.getConstant(Size1, DL, PtrVT));
105 DstPtrInfo = DstPtrInfo.getWithOffset(Size1);
108 std::min((unsigned)Alignment.value(), Size1), DstPtrInfo);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFExpression.h38 Size1 = 0,
49 SignedSize1 = SignBit | Size1,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp32 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1);
45 Descriptions[DW_OP_pick] = Desc(Op::Dwarf2, Op::Size1);
82 Descriptions[DW_OP_deref_size] = Desc(Op::Dwarf2, Op::Size1);
83 Descriptions[DW_OP_xderef_size] = Desc(Op::Dwarf2, Op::Size1);
138 case Operation::Size1:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidStoreForwardingBlocks.cpp581 unsigned Size1 = 0; local
596 Size1 = LdDisp2 - LdDisp1;
600 buildCopies(Size1, LoadInst, LdDisp1, StoreInst, StDisp1, LMMOffset,
603 buildCopies(Size2, LoadInst, LdDisp2, StoreInst, StDisp2, LMMOffset + Size1,
604 SMMOffset + Size1);
607 LMMOffset += Size1 + Size2;
608 SMMOffset += Size1 + Size2;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp103 // The mergeLoad/Store algorithms could have Size0 * Size1 complexity,
104 // where Size0 and Size1 are the #instructions on the two sides of
106 // Control is enforced by the check Size0 * Size1 < MagicCompileTimeControl.
304 int Size1 = std::distance(InstsNoDbg.begin(), InstsNoDbg.end()); local
319 if (NStores * Size1 >= MagicCompileTimeControl)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp290 unsigned Size1; local
291 MachineOperand *BaseOp1 = HII.getBaseAndOffset(L1, Offset1, Size1);
292 if (BaseOp1 == nullptr || !BaseOp1->isReg() || Size1 >= 32 ||
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegBankReassign.cpp565 unsigned Size1 = countPopulation(Mask1);
580 + ((Size2 > Size1) ? 1 : 0)));
583 + ((Size1 > Size2) ? 1 : 0)));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp925 (Op1 == Encoding::BaseTypeRef && Op0 != Encoding::Size1))
929 (Op1 == Encoding::BaseTypeRef && Op0 == Encoding::Size1)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp5198 llvm::APInt Size1(32, SMsBlockPerSM.second);
5200 C.getConstantArrayType(StaticTy, Size1, nullptr, ArrayType::Normal,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp21819 auto &Size1 = MUC1.NumBytes; local
21821 Size0.hasValue() && Size1.hasValue() && *Size0 == *Size1 &&
21823 SrcValOffset1 % *Size1 == 0) {
21829 if ((OffAlign0 + *Size0) <= OffAlign1 || (OffAlign1 + *Size1) <= OffAlign0)
21843 Size0.hasValue() && Size1.hasValue()) {
21847 int64_t Overlap1 = *Size1 + SrcValOffset1 - MinOffset;

Completed in 284 milliseconds