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

  /art/test/043-privates/src/
Main.java 22 PrivatePackage inst1 = new PrivatePackage(); local
26 System.out.println("PrivatePackage --> " + inst1.getStr());
31 inst1.stretchTest();
  /external/ltrace/sysdeps/linux-gnu/arm/
trace.c 382 * first halfword is INST1. */
385 thumb_insn_size (unsigned short inst1)
387 if ((inst1 & 0xe000) == 0xe000 && (inst1 & 0x1800) != 0)
397 uint16_t inst1; local
399 if (proc_read_16(proc, pc, &inst1) < 0
411 if ((inst1 & 0xff00) == 0xbd00) { /* pop {rlist, pc} */
414 const unsigned offset = bitcount(BITS(inst1, 0, 7)) * 4;
423 } else if ((inst1 & 0xf000) == 0xd000) { /* conditional branch */
424 const unsigned long cond = BITS(inst1, 8, 11)
    [all...]
  /art/compiler/optimizing/
constant_folding_test.cc 257 HInstruction* inst1 = graph->GetBlock(1)->GetFirstInstruction()->InputAt(0);
258 ASSERT_TRUE(inst1->IsIntConstant());
259 ASSERT_EQ(inst1->AsIntConstant()->GetValue(), 12);
260 HInstruction* inst2 = inst1->GetPrevious();
560 HInstruction* inst1 = graph->GetBlock(4)->GetFirstInstruction()->InputAt(0);
561 ASSERT_TRUE(inst1->IsIntConstant());
562 ASSERT_EQ(inst1->AsIntConstant()->GetValue(), 20);
563 HInstruction* inst2 = inst1->GetPrevious();
  /external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
MachO_i386_DynNoPIC_relocations.s 12 # rtdyld-check: decode_operand(inst1, 4) = x$non_lazy_ptr - tmp0$pb
13 inst1: label
  /art/runtime/arch/arm64/
fault_handler_arm64.cc 136 uint32_t inst1 = *reinterpret_cast<uint32_t*>(ptr1); local
137 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1;
138 if (inst1 == checkinst1) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r500_fragprog_emit.c 293 code->inst[ip].inst1 |= R500_RGB_SRCP_OP_1_MINUS_2RGB0;
296 code->inst[ip].inst1 |= R500_RGB_SRCP_OP_RGB1_MINUS_RGB0;
299 code->inst[ip].inst1 |= R500_RGB_SRCP_OP_RGB1_PLUS_RGB0;
302 code->inst[ip].inst1 |= R500_RGB_SRCP_OP_1_MINUS_RGB0;
328 code->inst[ip].inst1 |= R500_RGB_ADDR0(use_source(code, inst->RGB.Src[0]));
329 code->inst[ip].inst1 |= R500_RGB_ADDR1(use_source(code, inst->RGB.Src[1]));
330 code->inst[ip].inst1 |= R500_RGB_ADDR2(use_source(code, inst->RGB.Src[2]));
386 code->inst[ip].inst1 = R500_TEX_ID(inst->TexSrcUnit)
390 code->inst[ip].inst1 |= R500_TEX_UNSCALED;
394 code->inst[ip].inst1 |= R500_TEX_INST_TEXKILL
    [all...]
radeon_code.h 231 uint32_t inst1; member in struct:r500_fragment_program_code::__anon16436
r500_fragprog.c 399 fprintf(stderr,"\t1:RGB_ADDR 0x%08x:", code->inst[n].inst1);
400 inst = code->inst[n].inst1;
522 inst = code->inst[n].inst1;
  /art/runtime/arch/arm/
fault_handler_arm.cc 163 uint32_t inst1 = ((ptr1[0] | ptr1[1] << 8) << 16) | (ptr1[2] | ptr1[3] << 8); local
164 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1;
165 if (inst1 == checkinst1) {
  /external/mesa3d/src/gallium/drivers/r300/
r300_fs.c 289 OUT_CB(code->inst[i].inst1);
  /external/pcre/dist/sljit/
sljitNativeTILEGX_64.c 632 struct jit_instr inst1 = inst_buf[1]; local
668 inst_buf[1] = inst1;
690 inst_buf[0] = inst1;
706 inst_buf[1] = inst1;
724 inst_buf[0] = inst1;
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 295 unsigned inst0, inst1; local
310 inst1 = bytes[bytes_read++];
311 alu.inst = inst0 | (inst1 << 8);
    [all...]

Completed in 1430 milliseconds