Home
last modified time | relevance | path

Searched refs:I (Results 1 – 25 of 4177) sorted by relevance

12345678910>>...168

/freebsd/crypto/krb5/src/lib/crypto/crypto_tests/
H A Dexpect-vk.txt6 I=1
10 I=2
14 I=3
18 I=4
22 I=5
26 I=6
30 I=7
34 I=8
38 I=9
42 I=10
[all …]
H A Dcamellia-expect-vt.txt6 I=1
10 I=2
14 I=3
18 I=4
22 I=5
26 I=6
30 I=7
34 I=8
38 I=9
42 I=10
[all …]
H A Dexpect-vt.txt6 I=1
10 I=2
14 I=3
18 I=4
22 I=5
26 I=6
30 I=7
34 I=8
38 I=9
42 I=10
[all …]
/freebsd/lib/libvgl/
H A Dmouse.c50 #define I INTERIOR macro
87 B,I,B,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
88 B,I,I,B,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
89 B,I,I,I,B,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
90 B,I,I,I,I,B,0,0,0,0,0,0,0,0,0,0,0,0,0,
91 B,I,I,I,I,I,B,0,0,0,0,0,0,0,0,0,0,0,0,
92 B,I,I,I,I,I,I,B,0,0,0,0,0,0,0,0,0,0,0,
93 B,I,I,I,I,I,I,I,B,0,0,0,0,0,0,0,0,0,0,
94 B,I,I,I,I,I,I,I,I,B,0,0,0,0,0,0,0,0,0,
95 B,I,I,I,I,I,I,I,I,I,B,0,0,0,0,0,0,0,0,
[all …]
/freebsd/contrib/nvi/common/
H A Dencoding.c17 #define I 2 /* character appears in ISO-8859 text */ macro
34 I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, /* 0xaX */
35 I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, /* 0xbX */
36 I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, /* 0xcX */
37 I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, /* 0xdX */
38 I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, /* 0xeX */
39 I, I, I, I, I, I, I, I, I, I, I, I, I, I, I, I /* 0xfX */
164 #undef I
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dc_api_test.cpp36 for (size_t I = 0; I != SmallAllocSize; ++I) in TEST() local
37 DataPtr[I] = 0x55 + I; in TEST()
42 for (size_t I = 0; I != SmallAllocSize; ++I) in TEST() local
43 EXPECT_EQ(R.Data.Value[I], (char)(0x55 + I)) in TEST()
44 << "Unexpected value at index " << I; in TEST()
66 for (size_t I = 0; I != LargeAllocSize; ++I) in TEST() local
67 DataPtr[I] = 0x55 + I; in TEST()
73 for (size_t I = 0; I != LargeAllocSize; ++I) in TEST() local
74 EXPECT_EQ(R.Data.ValuePtr[I], (char)(0x55 + I)) in TEST()
75 << "Unexpected value at index " << I; in TEST()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstVisitor.h29 visit##CLASS_TO_VISIT(static_cast<CLASS_TO_VISIT&>(I))
111 RetTy visit(Instruction *I) { return visit(*I); } in visit() argument
115 RetTy visit(Instruction &I) { in visit() argument
119 switch (I.getOpcode()) { in visit()
125 visit##OPCODE(static_cast<CLASS&>(I)); in visit()
155 RetTy visit##OPCODE(CLASS &I) { \
157 return delegateCallInst(I); \
166 RetTy visitICmpInst(ICmpInst &I) { DELEGATE(CmpInst);} in visitICmpInst() argument
167 RetTy visitFCmpInst(FCmpInst &I) { DELEGATE(CmpInst);} in visitFCmpInst() argument
168 RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(UnaryInstruction);} in visitAllocaInst() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp95 void visitMemoryReference(Instruction &I, const MemoryLocation &Loc,
98 void visitReturnInst(ReturnInst &I);
99 void visitLoadInst(LoadInst &I);
100 void visitStoreInst(StoreInst &I);
101 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &I);
102 void visitAtomicRMWInst(AtomicRMWInst &I);
103 void visitXor(BinaryOperator &I);
104 void visitSub(BinaryOperator &I);
105 void visitLShr(BinaryOperator &I);
106 void visitAShr(BinaryOperator &I);
[all …]
H A DLoopUnrollAnalyzer.cpp32 bool UnrolledInstAnalyzer::simplifyInstWithSCEV(Instruction *I) { in simplifyInstWithSCEV() argument
33 if (!SE.isSCEVable(I->getType())) in simplifyInstWithSCEV()
36 const SCEV *S = SE.getSCEV(I); in simplifyInstWithSCEV()
38 SimplifiedValues[I] = SC->getValue(); in simplifyInstWithSCEV()
54 SimplifiedValues[I] = SC->getValue(); in simplifyInstWithSCEV()
69 SimplifiedAddresses[I] = Address; in simplifyInstWithSCEV()
78 bool UnrolledInstAnalyzer::visitBinaryOperator(BinaryOperator &I) { in visitBinaryOperator() argument
79 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1); in visitBinaryOperator()
88 const DataLayout &DL = I.getDataLayout(); in visitBinaryOperator()
89 if (auto FI = dyn_cast<FPMathOperator>(&I)) in visitBinaryOperator()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVInstructionSelector.cpp84 bool select(MachineInstr &I) override;
100 bool selectImpl(MachineInstr &I, CodeGenCoverage &CoverageInfo) const;
105 MachineInstr &I) const;
108 MachineInstr &I, bool IsSigned) const;
111 MachineInstr &I) const;
114 MachineInstr &I, unsigned ExtendOpcode,
118 MachineInstr &I, Register SrcReg,
122 MachineInstr &I, Register SrcReg,
126 MachineInstr &I, Register SrcReg,
130 bool selectGlobalValue(Register ResVReg, MachineInstr &I,
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DClauseT.h184 template <typename I, typename E>
185 bool operator==(const ObjectT<I, E> &o1, const ObjectT<I, E> &o2) {
189 template <typename I, typename E> using ObjectListT = ListT<ObjectT<I, E>>;
193 template <typename I, typename E> //
197 ObjectT<I, E> v;
230 template <typename I, typename E> //
232 using MapperIdentifier = ObjectT<I, E>;
247 template <typename I, typename E> //
251 std::tuple<DefinedOperatorT<I, E>, E> t;
254 std::tuple<ObjectT<I, E>, OPT(Distance)> t;
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DMatchFilePath.cpp38 unsigned I = 0; // Index to `Pattern`. in matchFilePath() local
41 if (I == EOP) in matchFilePath()
44 switch (const auto F = FilePath[J]; Pattern[I]) { in matchFilePath()
46 if (++I == EOP || F != Pattern[I]) in matchFilePath()
54 bool Globstar = I == 0 || Pattern[I - 1] == Separator; in matchFilePath()
56 for (; ++I < EOP && Pattern[I] == '*'; ++StarCount) { in matchFilePath()
63 if (I == EOP) // `Pattern` ends with a star. in matchFilePath()
65 if (Pattern[I] != Separator) { in matchFilePath()
67 if (Pattern[I] == '\\' && ++I == EOP) in matchFilePath()
72 if (Pattern[I] == Separator) { in matchFilePath()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstructionSelector.cpp
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DIRNormalizer.cpp54 void nameInstruction(Instruction *I);
55 void nameAsInitialInstruction(Instruction *I) const;
56 void nameAsRegularInstruction(Instruction *I);
57 void foldInstructionName(Instruction *I) const;
66 void reorderInstructionOperandsByNames(Instruction *I) const;
73 void sortCommutativeOperands(Instruction *I, T &Operands) const;
75 bool isOutput(const Instruction *I) const;
76 bool isInitialInstruction(const Instruction *I) const;
77 bool hasOnlyImmediateOperands(const Instruction *I) const;
79 getOutputFootprint(Instruction *I,
[all …]
H A DCloneModule.cpp70 for (const GlobalVariable &I : M.globals()) { in CloneModule() local
72 *New, I.getValueType(), I.isConstant(), I.getLinkage(), in CloneModule()
73 (Constant *)nullptr, I.getName(), (GlobalVariable *)nullptr, in CloneModule()
74 I.getThreadLocalMode(), I.getType()->getAddressSpace()); in CloneModule()
75 NewGV->copyAttributesFrom(&I); in CloneModule()
76 VMap[&I] = NewGV; in CloneModule()
80 for (const Function &I : M) { in CloneModule() local
82 Function::Create(cast<FunctionType>(I.getValueType()), I.getLinkage(), in CloneModule()
83 I.getAddressSpace(), I.getName(), New.get()); in CloneModule()
84 NF->copyAttributesFrom(&I); in CloneModule()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp38 bool select(MachineInstr &I) override;
42 bool selectImpl(MachineInstr &I, CodeGenCoverage &CoverageInfo) const;
47 bool selectCopy(MachineInstr &I, MachineRegisterInfo &MRI) const;
50 unsigned selectLoadStoreOpCode(MachineInstr &I,
52 bool buildUnalignedStore(MachineInstr &I, unsigned Opc,
55 bool buildUnalignedLoad(MachineInstr &I, unsigned Opc, Register Dest,
105 bool MipsInstructionSelector::selectCopy(MachineInstr &I, in selectCopy() argument
107 Register DstReg = I.getOperand(0).getReg(); in selectCopy()
113 LLVM_DEBUG(dbgs() << "Failed to constrain " << TII.getName(I.getOpcode()) in selectCopy()
182 MipsInstructionSelector::selectLoadStoreOpCode(MachineInstr &I, in selectLoadStoreOpCode() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp42 static bool ShrinkDemandedConstant(Instruction *I, unsigned OpNo, in ShrinkDemandedConstant() argument
44 assert(I && "No instruction?"); in ShrinkDemandedConstant()
45 assert(OpNo < I->getNumOperands() && "Operand index too large"); in ShrinkDemandedConstant()
48 Value *Op = I->getOperand(OpNo); in ShrinkDemandedConstant()
58 I->setOperand(OpNo, ConstantInt::get(Op->getType(), *C & Demanded)); in ShrinkDemandedConstant()
95 bool InstCombinerImpl::SimplifyDemandedBits(Instruction *I, unsigned OpNo, in SimplifyDemandedBits() argument
100 Use &U = I->getOperandUse(OpNo); in SimplifyDemandedBits()
164 Value *InstCombinerImpl::SimplifyDemandedUseBits(Instruction *I, in SimplifyDemandedUseBits() argument
169 assert(I != nullptr && "Null pointer of Value???"); in SimplifyDemandedUseBits()
172 Type *VTy = I->getType(); in SimplifyDemandedUseBits()
[all …]
H A DInstCombineNegator.cpp95 IRBuilderCallbackInserter([&](Instruction *I) { in Negator() argument
97 NewInstructions.push_back(I); in Negator()
111 std::array<Value *, 2> Negator::getSortedOperandsOfBinOp(Instruction *I) { in getSortedOperandsOfBinOp() argument
112 assert(I->getNumOperands() == 2 && "Only for binops!"); in getSortedOperandsOfBinOp()
113 std::array<Value *, 2> Ops{I->getOperand(0), I->getOperand(1)}; in getSortedOperandsOfBinOp()
114 if (I->isCommutative() && InstCombiner::getComplexity(I->getOperand(0)) < in getSortedOperandsOfBinOp()
115 InstCombiner::getComplexity(I->getOperand(1))) in getSortedOperandsOfBinOp()
152 auto *I = cast<Instruction>(V); in visitImpl() local
153 unsigned BitWidth = I->getType()->getScalarSizeInBits(); in visitImpl()
160 Builder.SetInsertPoint(I); in visitImpl()
[all …]
H A DInstCombineMulDivRem.cpp67 BinaryOperator *I = dyn_cast<BinaryOperator>(V); in simplifyValueKnownNonZero() local
68 if (I && I->isLogicalShift() && in simplifyValueKnownNonZero()
69 IC.isKnownToBeAPowerOfTwo(I->getOperand(0), false, &CxtI)) { in simplifyValueKnownNonZero()
72 if (Value *V2 = simplifyValueKnownNonZero(I->getOperand(0), IC, CxtI)) { in simplifyValueKnownNonZero()
73 IC.replaceOperand(*I, 0, V2); in simplifyValueKnownNonZero()
77 if (I->getOpcode() == Instruction::LShr && !I->isExact()) { in simplifyValueKnownNonZero()
78 I->setIsExact(); in simplifyValueKnownNonZero()
82 if (I->getOpcode() == Instruction::Shl && !I->hasNoUnsignedWrap()) { in simplifyValueKnownNonZero()
83 I->setHasNoUnsignedWrap(); in simplifyValueKnownNonZero()
100 static Value *foldMulSelectToNegate(BinaryOperator &I, in foldMulSelectToNegate() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/GISel/
H A DX86InstructionSelector.cpp65 bool select(MachineInstr &I) override;
71 bool selectImpl(MachineInstr &I, CodeGenCoverage &CoverageInfo) const;
80 bool selectLoadStoreOp(MachineInstr &I, MachineRegisterInfo &MRI,
82 bool selectFrameIndexOrGep(MachineInstr &I, MachineRegisterInfo &MRI,
84 bool selectGlobalValue(MachineInstr &I, MachineRegisterInfo &MRI,
86 bool selectConstant(MachineInstr &I, MachineRegisterInfo &MRI,
88 bool selectTruncOrPtrToInt(MachineInstr &I, MachineRegisterInfo &MRI,
90 bool selectZext(MachineInstr &I, MachineRegisterInfo &MRI,
92 bool selectAnyext(MachineInstr &I, MachineRegisterInfo &MRI,
94 bool selectCmp(MachineInstr &I, MachineRegisterInfo &MRI,
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstats.h34 for (uptr I = 0; I < StatCount; I++) in init() local
35 DCHECK_EQ(get(static_cast<StatType>(I)), 0U); in init()
38 void add(StatType I, uptr V) { in add() argument
39 V += atomic_load_relaxed(&StatsArray[I]); in add()
40 atomic_store_relaxed(&StatsArray[I], V); in add()
43 void sub(StatType I, uptr V) { in sub() argument
44 V = atomic_load_relaxed(&StatsArray[I]) - V; in sub()
45 atomic_store_relaxed(&StatsArray[I], V); in sub()
48 void set(StatType I, uptr V) { atomic_store_relaxed(&StatsArray[I], V); } in set() argument
50 uptr get(StatType I) const { return atomic_load_relaxed(&StatsArray[I]); } in get() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVELaneInterleavingPass.cpp167 Instruction *I = Worklist.back(); in tryInterleave() local
170 switch (I->getOpcode()) { in tryInterleave()
174 if (!Truncs.insert(I)) in tryInterleave()
176 Visited.insert(I); in tryInterleave()
183 if (Exts.count(I)) in tryInterleave()
185 for (auto *Use : I->users()) in tryInterleave()
187 Exts.insert(I); in tryInterleave()
191 IntrinsicInst *II = dyn_cast<IntrinsicInst>(I); in tryInterleave()
196 if (!Reducts.insert(I)) in tryInterleave()
198 Visited.insert(I); in tryInterleave()
[all …]
/freebsd/contrib/file/src/
H A Dencoding.c211 * I include bell because some programs (particularly shell scripts)
212 * use it literally, even though it is rare in normal text. I exclude
213 * vertical tab because it never seems to be used in real text. I also
237 #define I 2 /* character appears in ISO-8859 text */ macro
258 I, I, I, I, I, I,
[all...]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h325 void visit(const Instruction &I);
326 void visitDbgInfo(const Instruction &I);
328 void visit(unsigned Opcode, const User &I);
388 const FunctionLoweringInfo &FuncInfo, const BranchInst &I,
413 SDValue lowerRangeToAssertZExt(SelectionDAG &DAG, const Instruction &I,
479 void LowerStatepoint(const GCStatepointInst &I,
503 void visitRet(const ReturnInst &I);
504 void visitBr(const BranchInst &I);
505 void visitSwitch(const SwitchInst &I);
506 void visitIndirectBr(const IndirectBrInst &I);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcABISupport.cpp153 for (unsigned I = 0; I < NumTrampolines; ++I, OffsetToPtr -= TrampolineSize) { in writeTrampolines() local
154 Trampolines[3 * I + 0] = 0xaa1e03f1; // mov x17, x30 in writeTrampolines()
155 Trampolines[3 * I + 1] = 0x58000010 | (OffsetToPtr << 3); // ldr x16, Lptr in writeTrampolines()
156 Trampolines[3 * I + 2] = 0xd63f0200; // blr x16 in writeTrampolines()
195 for (unsigned I = 0; I < NumStubs; ++I) in writeIndirectStubsBlock() local
196 Stub[I] = 0xd61f020058000010 | PtrOffsetField; in writeIndirectStubsBlock()
213 for (unsigned I = 0; I < NumTrampolines; ++I, OffsetToPtr -= TrampolineSize) in writeTrampolines() local
214 Trampolines[I] = CallIndirPCRel | ((OffsetToPtr - 6) << 16); in writeTrampolines()
249 for (unsigned I = 0; I < NumStubs; ++I) in writeIndirectStubsBlock() local
250 Stub[I] = 0xF1C40000000025ff | PtrOffsetField; in writeIndirectStubsBlock()
[all …]

12345678910>>...168