Searched defs:I2 (Results 1 - 25 of 47) sorted by last modified time

12

/external/valgrind/none/tests/ppc32/
H A DtestVMX.c396 signed int Iaux;//, I1, I2;
1697 signed int Iaux;//, I1, I2;
2249 signed int Iaux, I1, I2; local
3022 I2 = Saux1.e[2*i+1]*Saux2.e[2*i+1];
3023 Iaux = I1 + I2;
3024 if ((I1>0)&&(I2>0)&&(Iaux<0))
3026 else if ((I1<0)&&(I2<0)&&(Iaux>0))
3029 I2 = Iaux;
3030 Iaux = I1 + I2;
3031 if ((I1>0)&&(I2>
[all...]
/external/svox/pico/lib/
H A Dpicopam.c240 picoos_uint8 i2_secondary_phrase_word; /*I2 */
323 #define I2 54 macro
1862 outVect[T_I2] = inVect[I2];
4084 case I2: /*processor for I2*/
4088 pam->sSyllFeats[pam->nCurrSyllable].phoneV[I2]
4101 pam->sSyllFeats[pam->nCurrSyllable].phoneV[I2]
4108 = pam->sSyllFeats[pam->nCurrSyllable].phoneV[I2];
4113 = pam->sSyllFeats[pam->nCurrSyllable - 1].phoneV[I2];
4757 pam->sSyllFeats[pam->nCurrSyllable].phoneV[I2]
[all...]
/external/ppp/pppd/
H A Dmd4.c47 #define I2 0x98badcfe macro
110 MDp->buffer[2] = I2;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1035 Instruction *I1, Instruction *I2) {
1042 if (BB1V != BB2V && (BB1V==I1 || BB2V==I2)) {
1068 Instruction *I1 = BB1_Itr++, *I2 = BB2_Itr++; local
1071 DbgInfoIntrinsic *DBI2 = dyn_cast<DbgInfoIntrinsic>(I2);
1075 while (isa<DbgInfoIntrinsic>(I2))
1076 I2 = BB2_Itr++;
1078 if (isa<PHINode>(I1) || !I1->isIdenticalToWhenDefined(I2) ||
1079 (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2)))
1091 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2))
1098 if (!I2
1034 isSafeToHoistInvoke(BasicBlock *BB1, BasicBlock *BB2, Instruction *I1, Instruction *I2) argument
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp2464 Value *I1, *I2 = nullptr; local
2469 I2 = LSV->getOperand(1);
2470 if (I2 == I1 || isa<UndefValue>(I2))
2471 I2 = nullptr;
2476 if (!I2 && I3 != I1)
2477 I2 = I3;
2478 else if (I3 != I1 && I3 != I2)
2482 if (!I2 && I3 != I1)
2483 I2
[all...]
/external/llvm/unittests/ADT/
H A DAPIntTest.cpp843 uint64_t I2 = 0x1000011; local
844 APInt A2(64, I2);
H A DIntervalMapTest.cpp48 UUMap::iterator I2; local
49 I2 = map.end();
50 EXPECT_TRUE(I2 == CI);
/external/llvm/include/llvm/ADT/
H A DAPSInt.h281 static bool isSameValue(const APSInt &I1, const APSInt &I2) { argument
282 return !compareValues(I1, I2);
286 static int compareValues(const APSInt &I1, const APSInt &I2) { argument
287 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
288 return I1 == I2 ? 0 : I1 > I2 ? 1 : -1;
291 if (I1.getBitWidth() > I2.getBitWidth())
292 return compareValues(I1, I2.extend(I1.getBitWidth()));
293 else if (I2
[all...]
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h546 /// of the instructions in the range of [I1,I2] INCLUSIVE.
547 /// I1 and I2 must be in the same basic block.
549 const Instruction &I2, const Location &Loc,
554 const Instruction &I2, const Value *Ptr,
556 return canInstructionRangeModRef(I1, I2, Location(Ptr, Size), Mode);
553 canInstructionRangeModRef(const Instruction &I1, const Instruction &I2, const Value *Ptr, uint64_t Size, const ModRefResult Mode) argument
/external/llvm/lib/Analysis/
H A DAliasAnalysis.cpp517 /// of the instructions in the range of [I1,I2] INCLUSIVE.
518 /// I1 and I2 must be in the same basic block.
520 const Instruction &I2,
523 assert(I1.getParent() == I2.getParent() &&
526 BasicBlock::const_iterator E = &I2;
519 canInstructionRangeModRef(const Instruction &I1, const Instruction &I2, const Location &Loc, const ModRefResult Mode) argument
/external/llvm/lib/CodeGen/
H A DBranchFolding.cpp323 MachineBasicBlock::iterator &I2) {
325 I2 = MBB2->end();
328 while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
329 --I1; --I2;
333 while (I2->isDebugValue()) {
334 if (I2==MBB2->begin())
335 // I1==DBG at begin; I2==DBG at begin
337 --I2;
339 ++I2;
340 // I1==DBG at begin; I2
320 ComputeCommonTailLength(MachineBasicBlock *MBB1, MachineBasicBlock *MBB2, MachineBasicBlock::iterator &I1, MachineBasicBlock::iterator &I2) argument
553 ProfitableToMerge(MachineBasicBlock *MBB1, MachineBasicBlock *MBB2, unsigned minCommonTailLength, unsigned &CommonTailLen, MachineBasicBlock::iterator &I1, MachineBasicBlock::iterator &I2, MachineBasicBlock *SuccBB, MachineBasicBlock *PredBB) argument
733 auto I2 = MI2->memoperands_begin(), E2 = MI2->memoperands_end(); local
[all...]
H A DMachineInstr.cpp839 MachineBasicBlock::const_instr_iterator I2 = *Other; local
842 ++I2;
843 if (I2 == E2 || !I2->isInsideBundle() || !I1->isIdenticalTo(I2, Check))
H A DPrologEpilogInserter.cpp418 MachineBasicBlock::iterator I2 = I; local
419 while (I2 != MBB->begin() && (--I2)->isTerminator())
420 I = I2;
H A DRegAllocPBQP.cpp236 const IntervalInfo &I2) {
239 return getStartPoint(I1) > getStartPoint(I2);
243 const IntervalInfo &I2) {
245 SlotIndex E2 = getEndPoint(I2);
256 return std::get<0>(I1)->reg < std::get<0>(I2)->reg;
235 lowestStartPoint(const IntervalInfo &I1, const IntervalInfo &I2) argument
242 lowestEndPoint(const IntervalInfo &I1, const IntervalInfo &I2) argument
/external/llvm/lib/IR/
H A DInstruction.cpp261 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, argument
263 assert(I1->getOpcode() == I2->getOpcode() &&
267 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
268 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
270 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
271 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
273 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
274 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
276 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
277 SI->getSynchScope() == cast<StoreInst>(I2)
[all...]
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp2224 // change them to I1 and I2 values via as documented:
2226 // I2 = NOT(J2 EOR S);
2228 // imm32 = SignExtend(S:I1:I2:imm10:imm11:'0', 32);
2233 unsigned I2 = !(J2 ^ S); local
2236 unsigned tmp = (S << 23) | (I1 << 22) | (I2 << 21) | (imm10 << 11) | imm11;
3903 // the encoded instruction. So here change to I1 and I2 values via:
3905 // I2 = NOT(J2 EOR S);
3907 // imm32 = SignExtend(S:I1:I2:imm10H:imm10L:'00', 32);
3912 unsigned I2 = !(J2 ^ S); local
3913 unsigned tmp = (Val & ~0x600000) | (I1 << 22) | (I2 << 2
4049 unsigned I2 = !(J2 ^ S); local
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonCopyToCombine.cpp86 void combine(MachineInstr *I1, MachineInstr *I2,
89 bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2,
228 /// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such
231 MachineInstr *I2,
236 bool IsImmUseReg = I2->getOperand(1).isImm() || I2->getOperand(1).isGlobal();
237 unsigned I2UseReg = IsImmUseReg ? 0 : I2->getOperand(1).getReg();
239 // It is not safe to move I1 and I2 into one combine if I2 has a true
246 // First try to move I2 toward
230 isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2, unsigned I1DestReg, unsigned I2DestReg, bool &DoInsertAtI1) argument
447 MachineInstr *I2 = findPairable(I1, DoInsertAtI1); local
464 MachineBasicBlock::iterator I2 = std::next(MachineBasicBlock::iterator(I1)); local
509 combine(MachineInstr *I1, MachineInstr *I2, MachineBasicBlock::iterator &MI, bool DoInsertAtI1) argument
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp292 MachineBasicBlock::iterator I2 = IP; local
293 while (I2 != BB->begin() && (--I2)->isTerminator())
294 IP = I2;
/external/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp871 MachineBasicBlock::iterator I2 = std::prev(I); local
877 popStackAfter(I2);
/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1466 uint32_t I2 = !(J2 ^ S); local
1467 uint32_t imm25 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
1484 uint32_t I2 = !(J2 ^ S); local
1485 uint32_t imm25 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10H << 12) | (imm10L << 2);
2301 uint32_t I2 = !(J2 ^ S); local
2302 uint32_t imm25 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
/external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
H A Dmain.cpp31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) : argument
33 second_cool(I2,F2,C2),
/external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
H A Dmain.cpp59 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) : argument
61 second_cool(I2,F2,C2),
/external/lldb/test/functionalities/data-formatter/data-formatter-script/
H A Dmain.cpp31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) : argument
33 second_cool(I2,F2,C2),
/external/libvncserver/x11vnc/
H A Dscan.c790 int I, J, I1, I2, J1, J2; /* indices for main fb (source) */ local
1038 I2 = (int) CEIL(x2) - 1;
1039 if (I2 >= Nx) I2 = Nx - 1;
1041 I2 = I1 + 1; /* simple interpolation */
1101 for (I=I1; I<=I2; I++) {
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/
H A Dtypes.pass.cpp35 typedef std::istream_iterator<unsigned, wchar_t> I2; typedef
36 static_assert((std::is_convertible<I2,
39 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
40 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
41 static_assert((std::is_same<I2::istream_type, std::wistream>::value), "");

Completed in 687 milliseconds

12