HomeSort by relevance Sort by last modified time
    Searched defs:mov (Results 101 - 122 of 122) sorted by null

1 2 3 45

  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_lowering_nvc0.cpp 140 const Instruction *tex; // or split / mov
772 // mov coordinates from lane l to all lanes
787 Instruction *mov; local
789 mov = bld.mkMov(def[c][l], tex->getDef(c));
790 mov->fixed = 1;
791 mov->lanes = 1 << l;
899 if (addr >= 0x400) // mov $sreg
    [all...]
  /external/openssl/crypto/md5/asm/
md5-ia64.S 273 mov CTable = ip
279 mov LCSave = ar.lc
291 mov PRSave = pr
315 mov TPtr = CTable
316 mov TRound = CTable0
320 mov A_ = AccumA
321 mov B_ = AccumB
325 mov C_ = AccumC
326 mov D_ = AccumD define
355 mov pr = PRSave, 0x1ffff ;
390 mov D_ = AccumD ;; \\ define
    [all...]
  /external/qemu-pc-bios/vgabios/
clext.c 390 mov al, #0x0f ; memory setup
391 mov dx, #0x3C4
396 mov ah, al
397 mov al, #0x0a
400 mov ax, #0x0007 ; set vga mode
402 mov ax, #0x0431 ; reset bitblt
403 mov dx, #0x3CE
405 mov ax, #0x0031
416 mov si, #cirrus_not_installed
418 mov si, #cirrus_installe
479 mov [PM_BIOSMEM_VBE_MODE], bx variable
564 mov [PM_BIOSMEM_CURRENT_MODE], al variable
1038 mov [PM_BIOSMEM_CURRENT_MODE], al variable
1039 mov [PM_BIOSMEM_VBE_MODE], bx variable
1213 mov [0xb9], bh variable
    [all...]
vgabios.c 125 mov ds, ax
126 mov ax, ?3
127 mov ?1*4, ax
128 mov ax, ?2
129 mov ?1*4+2, ax
257 mov ax,#0x0003
286 mov bx, #0xc000
287 mov ds, bx
396 mov bx, #0xc000
397 mov ds, b
461 mov [bx], ax variable
468 mov [bx], al variable
473 mov [bx], al variable
478 mov [bx], al variable
483 mov [bx], al variable
488 mov [bx], al variable
2302 mov [bx], al variable
2315 mov [bx], al variable
2471 mov [bx], al variable
2475 mov [bx], al variable
2479 mov [bx], al variable
2941 mov [bx], al variable
2943 mov [bx], ah variable
2971 mov [bx], al variable
3012 mov [bx], al variable
3033 mov [bx], al variable
3120 mov [bx], al variable
3646 mov [bx], al ; write data byte local
3673 mov [bx], ax ; write data word local
    [all...]
  /art/compiler/utils/arm/
assembler_arm32.cc 126 void Arm32Assembler::mov(Register rd, const ShifterOperand& so, Condition cond) { function in class:art::arm::Arm32Assembler
127 EmitType01(cond, so.type(), MOV, 0, R0, rd, so);
132 EmitType01(cond, so.type(), MOV, 1, R0, rd, so);
623 static_cast<int32_t>(MOV) << kOpcodeShift |
640 static_cast<int32_t>(MOV) << kOpcodeShift |
    [all...]
assembler_thumb2.cc 128 void Thumb2Assembler::mov(Register rd, const ShifterOperand& so, Condition cond) { function in class:art::arm::Thumb2Assembler
129 EmitDataProcessing(cond, MOV, 0, R0, rd, so);
134 EmitDataProcessing(cond, MOV, 1, R0, rd, so);
622 bool can_contain_high_register = (opcode == MOV)
657 // The ADD,SUB and MOV instructions that work with high registers don't have
672 // Check for MOV with an ROR.
673 if (opcode == MOV && so.IsRegister() && so.IsShift() && so.GetShift() == ROR) {
684 case MOV:
714 // ADD, SUB, CMP and MOV may be thumb1 only if the immediate is 8 bits.
715 if (!(opcode == ADD || opcode == SUB || opcode == MOV || opcode == CMP))
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
row_win.cc 313 mov eax, [esp + 4] // src_y
314 mov edx, [esp + 8] // dst_argb
315 mov ecx, [esp + 12] // pix
342 mov eax, [esp + 4] // src_y
343 mov edx, [esp + 8] // dst_argb
344 mov ecx, [esp + 12] // pix
370 mov eax, [esp + 4] // src_rgb24
371 mov edx, [esp + 8] // dst_argb
372 mov ecx, [esp + 12] // pix
410 mov eax, [esp + 4] // src_ra
6954 mov [edx], bl local
6957 mov [edx + 1], bl local
6960 mov [edx + 2], bl local
6963 mov [edx + 3], bl local
    [all...]
  /external/chromium_org/third_party/libyuv/source/
row_win.cc 314 mov eax, [esp + 4] // src_y
315 mov edx, [esp + 8] // dst_argb
316 mov ecx, [esp + 12] // pix
343 mov eax, [esp + 4] // src_y
344 mov edx, [esp + 8] // dst_argb
345 mov ecx, [esp + 12] // pix
371 mov eax, [esp + 4] // src_rgb24
372 mov edx, [esp + 8] // dst_argb
373 mov ecx, [esp + 12] // pix
411 mov eax, [esp + 4] // src_ra
6955 mov [edx], bl local
6958 mov [edx + 1], bl local
6961 mov [edx + 2], bl local
6964 mov [edx + 3], bl local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 95 Instruction *mov, *si, *next; local
97 for (mov = bb->getEntry(); mov; mov = next) {
98 next = mov->next;
99 if (mov->op != OP_MOV || mov->fixed || !mov->getSrc(0)->asLValue())
101 if (mov->getPredicate())
103 if (mov->def(0).getFile() != mov->src(0).getFile()
    [all...]
nv50_ir_ra.cpp 326 // For each operand of each PHI in b, generate a new value by inserting a MOV
337 Instruction *phi, *mov; local
370 mov = new_Instruction(func, OP_MOV, TYPE_U32);
372 mov->setSrc(0, phi->getSrc(j));
373 mov->setDef(0, new_LValue(func, phi->getDef(0)->asLValue()));
374 phi->setSrc(j, mov->getDef(0));
376 pb->insertBefore(pb->getExit(), mov);
401 Instruction *mov = local
403 mov->setDef(0, tmp);
404 mov->setSrc(0, cal->getSrc(s))
415 Instruction *mov = local
1944 Instruction *mov; local
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32.cc 502 void Assembler::mov(Register dst, int32_t imm32) { function in class:v8::internal::Assembler
509 void Assembler::mov(Register dst, const Immediate& x) { function in class:v8::internal::Assembler
516 void Assembler::mov(Register dst, Handle<Object> handle) { function in class:v8::internal::Assembler
523 void Assembler::mov(Register dst, const Operand& src) { function in class:v8::internal::Assembler
530 void Assembler::mov(Register dst, Register src) { function in class:v8::internal::Assembler
537 void Assembler::mov(const Operand& dst, const Immediate& x) { function in class:v8::internal::Assembler
545 void Assembler::mov(const Operand& dst, Handle<Object> handle) { function in class:v8::internal::Assembler
553 void Assembler::mov(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [all...]
  /external/chromium_org/v8/src/x87/
assembler-x87.cc 444 void Assembler::mov(Register dst, int32_t imm32) { function in class:v8::internal::Assembler
451 void Assembler::mov(Register dst, const Immediate& x) { function in class:v8::internal::Assembler
458 void Assembler::mov(Register dst, Handle<Object> handle) { function in class:v8::internal::Assembler
465 void Assembler::mov(Register dst, const Operand& src) { function in class:v8::internal::Assembler
472 void Assembler::mov(Register dst, Register src) { function in class:v8::internal::Assembler
479 void Assembler::mov(const Operand& dst, const Immediate& x) { function in class:v8::internal::Assembler
487 void Assembler::mov(const Operand& dst, Handle<Object> handle) { function in class:v8::internal::Assembler
495 void Assembler::mov(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale.c 644 mov eax, [esp + 4] // src_ptr
646 mov edx, [esp + 12] // dst_ptr
647 mov ecx, [esp + 16] // dst_width
673 mov eax, [esp + 4 + 4] // src_ptr
674 mov esi, [esp + 4 + 8] // src_stride
675 mov edx, [esp + 4 + 12] // dst_ptr
676 mov ecx, [esp + 4 + 16] // dst_width
717 mov esi, [esp + 32 + 4] // src_ptr
719 mov edi, [esp + 32 + 12] // dst_ptr
720 mov ecx, [esp + 32 + 16] // dst_widt
1164 mov [edi + 4], ax local
1207 mov [edi + 4], ax local
1322 mov [edi], al local
1336 mov [edi], al local
1352 mov [edi], al local
1404 mov [edi], al local
1418 mov [edi], al local
1434 mov [edi], al local
    [all...]
  /external/libyuv/files/source/
row_win.cc 128 mov eax, [esp + 4] // src_y
129 mov edx, [esp + 8] // dst_argb
130 mov ecx, [esp + 12] // pix
156 mov eax, [esp + 4] // src_bgra
157 mov edx, [esp + 8] // dst_argb
158 mov ecx, [esp + 12] // pix
177 mov eax, [esp + 4] // src_abgr
178 mov edx, [esp + 8] // dst_argb
179 mov ecx, [esp + 12] // pix
198 mov eax, [esp + 4] // src_rgb
3639 mov [eax], bl local
3640 mov [eax + 1], dl local
3643 mov [eax + 2], bl local
3644 mov [eax + 3], dl local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 95 Instruction *mov, *si, *next; local
97 for (mov = bb->getEntry(); mov; mov = next) {
98 next = mov->next;
99 if (mov->op != OP_MOV || mov->fixed || !mov->getSrc(0)->asLValue())
101 if (mov->getPredicate())
103 if (mov->def(0).getFile() != mov->src(0).getFile()
    [all...]
nv50_ir_ra.cpp 326 // For each operand of each PHI in b, generate a new value by inserting a MOV
337 Instruction *phi, *mov; local
370 mov = new_Instruction(func, OP_MOV, TYPE_U32);
372 mov->setSrc(0, phi->getSrc(j));
373 mov->setDef(0, new_LValue(func, phi->getDef(0)->asLValue()));
374 phi->setSrc(j, mov->getDef(0));
376 pb->insertBefore(pb->getExit(), mov);
401 Instruction *mov = local
403 mov->setDef(0, tmp);
404 mov->setSrc(0, cal->getSrc(s))
415 Instruction *mov = local
1944 Instruction *mov; local
    [all...]
  /external/vixl/src/a64/
assembler-a64.cc 1168 void Assembler::mov(const Register& rd, const Register& rm) { function in class:vixl::Assembler
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/
scale.c 644 mov eax, [esp + 4] // src_ptr
646 mov edx, [esp + 12] // dst_ptr
647 mov ecx, [esp + 16] // dst_width
673 mov eax, [esp + 4 + 4] // src_ptr
674 mov esi, [esp + 4 + 8] // src_stride
675 mov edx, [esp + 4 + 12] // dst_ptr
676 mov ecx, [esp + 4 + 16] // dst_width
717 mov esi, [esp + 32 + 4] // src_ptr
719 mov edi, [esp + 32 + 12] // dst_ptr
720 mov ecx, [esp + 32 + 16] // dst_widt
1164 mov [edi + 4], ax local
1207 mov [edi + 4], ax local
1322 mov [edi], al local
1336 mov [edi], al local
1352 mov [edi], al local
1404 mov [edi], al local
1418 mov [edi], al local
1434 mov [edi], al local
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.cc 815 // mov dst, #target8_0
826 // If the target fits in a byte then only patch with a mov
831 patcher.masm()->mov(dst, Operand(target24));
850 // Patch with a sequence of mov/orr/orr instructions.
858 patcher.masm()->mov(dst, Operand(target8_0));
864 patcher.masm()->mov(dst, Operand(target8_0));
1464 void Assembler::mov(Register dst, const Operand& src, SBit s, Condition cond) { function in class:v8::internal::Assembler
    [all...]
assembler-arm.h 526 // the instruction this operand is used for is a MOV or MVN instruction the
751 // the branch/call instruction at pc, or the object in a mov.
907 void mov(Register dst, const Operand& src,
909 void mov(Register dst, Register src, SBit s = LeaveCC, Condition cond = al) { function in class:v8::internal::Assembler
910 mov(dst, Operand(src), s, cond);
933 mov(dst, Operand(src1, ASR, src2.rm()), s, cond);
935 mov(dst, Operand(src1, ASR, src2.immediate()), s, cond);
942 mov(dst, Operand(src1, LSL, src2.rm()), s, cond);
944 mov(dst, Operand(src1, LSL, src2.immediate()), s, cond);
951 mov(dst, Operand(src1, LSR, src2.rm()), s, cond)
    [all...]
  /external/chromium_org/v8/src/arm64/
assembler-arm64.cc 1726 void Assembler::mov(const Register& rd, const Register& rm) { function in class:v8::internal::Assembler
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios.c 214 // mov al, #$20
218 // no mov SEG-REG, #value, must mov register into seg-reg
219 // grep -i "mov[ ]*.s" rombios.c
243 mov dx,#PANIC_PORT
244 mov ax,#?1
247 mov dx,#0x80
248 mov ax,#?1
260 mov ax, ?3
261 mov ?1*4, a
458 mov [bx], ax ; write data word local
461 mov [bx], ax ; write data word local
1334 mov [bx], al ; write data byte local
1360 mov [bx], ax ; write data word local
8922 mov [si], al local
9066 mov [si], al local
    [all...]

Completed in 1365 milliseconds

1 2 3 45