HomeSort by relevance Sort by last modified time
    Searched refs:I0 (Results 1 - 21 of 21) sorted by null

  /cts/tools/signature-tools/test/signature/comparator/
ClassCompareTest.java 218 CompilationUnit I0 = new CompilationUnit("a.I0",
220 "public interface I0{}");
223 "public interface I1 extends I0{}");
229 "public class C0 implements I1, I0{}");
230 IApi fromApi = convert(I0, I1, C0);
231 IApi toApi = convert(I0, I1, C0_I1);
241 CompilationUnit I0 = new CompilationUnit("a.I",
247 IApi fromApi = convert(I0,Number);
258 CompilationUnit I0 = new CompilationUnit("a.I",
    [all...]
  /frameworks/av/tools/resampler_tools/
fir.cpp 42 static double I0(double x) {
64 return I0(beta * sqrt(1.0 - sqr((2.0*k)/N - 1.0))) / I0(beta);
  /cts/tools/dex-tools/test/dex/reader/
DexFileReaderTests.java 262 static final JavaSource I0 = new JavaSource("I0",
264 "public interface I0 extends Serializable {}"
272 DexFile dexFile = javaToDexUtil.getFrom(I0);
274 DexClass I0 = getClass(dexFile, "LI0;");
275 assertPublic(I0);
276 assertTrue(Modifier.isInterface(I0.getModifiers()));
277 assertEquals(1, I0.getInterfaces().size());
278 assertEquals("Ljava/io/Serializable;", I0.getInterfaces().get(0));
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 194 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg)
222 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg) {
225 unsigned mapped_reg = (reg - SP::I0 + SP::O0);
238 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg) {
242 MBB->addLiveIn(reg - SP::I0 + SP::O0);
DelaySlotFiller.cpp 370 if (reg < SP::I0 || reg > SP::I7)
382 AddMI->getOperand(0).setReg(reg - SP::I0 + SP::O0);
398 if (reg < SP::I0 || reg > SP::I7)
421 OrMI->getOperand(0).setReg(reg - SP::I0 + SP::O0);
436 if (reg < SP::I0 || reg > SP::I7)
455 RestoreMI->getOperand(0).setReg(reg - SP::I0 + SP::O0);
SparcISelLowering.cpp 57 SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
95 // Promote integers to %i0-%i5.
96 Reg = SP::I0 + Offset/8;
140 // Promote integers to %i0-%i5, using half the register.
141 unsigned Reg = SP::I0 + Offset/8;
164 assert(SP::I0 + 7 == SP::I7 && SP::O0 + 7 == SP::O7 && "Unexpected enum");
165 if (Reg >= SP::I0 && Reg <= SP::I7)
166 return Reg - SP::I0 + SP::O0;
218 // If the function returns a struct, copy the SRetReturnReg to I0
225 Chain = DAG.getCopyToReg(Chain, DL, SP::I0, Val, Flag)
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 81 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
86 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 121 Instruction *I0 = dyn_cast<Instruction>(VL[0]);
122 if (!I0)
124 BasicBlock *BB = I0->getParent();
183 Instruction *I0 = dyn_cast<Instruction>(VL[0]);
184 unsigned Opcode = I0->getOpcode();
197 Instruction *I0 = dyn_cast<Instruction>(VL[0]);
198 if (!I0)
200 unsigned Opcode = I0->getOpcode();
214 Instruction *I0 = cast<Instruction>(VL[0]);
216 I0->getAllMetadataOtherThanDebugLoc(Metadata)
    [all...]
  /external/clang/test/SemaTemplate/
temp_arg_nontype.cpp 207 template <typename Sequence, int I0>
208 struct as_nview<Sequence, I0> // expected-note{{while checking a default template argument used here}}
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 125 ConstantInt *I0 = dyn_cast<ConstantInt>(GEP->getOperand(1));
126 if (!I0 || !I0->isZero())
  /external/ppp/pppd/
md4.c 45 #define I0 0x67452301 /* Initial values for MD buffer */
108 MDp->buffer[0] = I0;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 444 Instruction *I0 = dyn_cast<Instruction>(I->getOperand(0));
447 if (!I0 || !I1 || I0->getOpcode() != I1->getOpcode())
451 if (I0->getOpcode() == Instruction::FMul)
453 else if (I0->getOpcode() != Instruction::FDiv)
456 Value *Opnd0_0 = I0->getOperand(0);
457 Value *Opnd0_1 = I0->getOperand(1);
490 if (I0) Flags &= I->getFastMathFlags();
    [all...]
InstCombineSimplifyDemanded.cpp 589 APInt I0 = C0->getValue();
590 if ((I0 + 1).isPowerOf2() && (I0 | KnownZero).isAllOnesValue()) {
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerFirGen.h 291 static inline double I0(double x) {
309 * to the Modified Bessel Functions I0(x) and I1(x)", Chalk Hill Nuclear Laboratory,
368 /* A speed optimized version of the Modified Bessel I0() which incorporates
669 const double yscale = atten * L / (I0(beta) * M_PI);
689 // y = I0(beta * sqrt(1.0 - sqr(x * xfrac))) * yscale * sg.valueAdvance() / x;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_builtin.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_builtin.py     [all...]
  /external/llvm/lib/Target/Sparc/Disassembler/
SparcDisassembler.cpp 80 SP::I0, SP::I1, SP::I2, SP::I3,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 517 const unsigned I0 = LittleEndian ? II + 0 : (Size - II - 1);
519 Buffer[Size - II - 2] = uint8_t(Inst >> I0 * CHAR_BIT);
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 98 Sparc::I0, Sparc::I1, Sparc::I2, Sparc::I3,
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/testdata/
h264-svc-99-640x360.rtpdump 526 ?pgp???????6M?0PC$[F????j?=w?BL?????E??cI????.?D?????T??M?> ?3m??V??an*??`?S-C?:?,??7r?????9>?K>??x€-?p\??<$???#c?izQ,??? ?1??i|2??????a?c%o??'??f??f??r$8>????4??6?A??????.??0U]??W8??e????GhUt+]L???>??N??2?H?(x???'a|?an???q?M???C.(???X???_S ?nX?uU??v"??u?c?H)??d??B???r?6?W?c_?f\?|)?kS?r??U???)?hi?? ??I??rmE?f]??I???Z??Z?|?#? ?y]?^?c|{{ku???_y??? }A?2>I[??I?????$O??a ???W?7??A???|?\/AI0[????P??c>??PM?
    [all...]

Completed in 1544 milliseconds