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

  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.h 76 static uint32_t reg_reg(int Rm, int type, int Rs);
120 int Rd, int Rm, int Rs, int Rn) = 0;
122 int Rd, int Rm, int Rs) = 0;
124 int RdLo, int RdHi, int Rm, int Rs) = 0;
126 int RdLo, int RdHi, int Rm, int Rs) = 0;
128 int RdLo, int RdHi, int Rm, int Rs) = 0;
130 int RdLo, int RdHi, int Rm, int Rs) = 0;
196 int Rd, int Rm, int Rs) = 0;
198 int Rd, int Rm, int Rs) = 0;
200 int Rd, int Rm, int Rs, int Rn) = 0
    [all...]
ARMAssembler.cpp 224 int Rd, int Rm, int Rs, int Rn) {
225 if (Rd == Rm) { int t = Rm; Rm=Rs; Rs=t; }
226 LOG_FATAL_IF(Rd==Rm, "MLA(r%u,r%u,r%u,r%u)", Rd,Rm,Rs,Rn);
228 (Rd<<16) | (Rn<<12) | (Rs<<8) | 0x90 | Rm;
231 int Rd, int Rm, int Rs) {
232 if (Rd == Rm) { int t = Rm; Rm=Rs; Rs=t; }
233 LOG_FATAL_IF(Rd==Rm, "MUL(r%u,r%u,r%u)", Rd,Rm,Rs);
234 *mPC++ = (cc<<28) | (s<<20) | (Rd<<16) | (Rs<<8) | 0x90 | Rm
    [all...]
ARMAssembler.h 64 int Rd, int Rm, int Rs, int Rn);
66 int Rd, int Rm, int Rs);
68 int RdLo, int RdHi, int Rm, int Rs);
70 int RdLo, int RdHi, int Rm, int Rs);
72 int RdLo, int RdHi, int Rm, int Rs);
74 int RdLo, int RdHi, int Rm, int Rs);
117 int Rd, int Rm, int Rs);
119 int Rd, int Rm, int Rs);
121 int Rd, int Rm, int Rs, int Rn);
123 int RdHi, int RdLo, int Rs, int Rm)
    [all...]
ARMAssemblerProxy.h 54 int Rd, int Rm, int Rs, int Rn);
56 int Rd, int Rm, int Rs);
58 int RdLo, int RdHi, int Rm, int Rs);
60 int RdLo, int RdHi, int Rm, int Rs);
62 int RdLo, int RdHi, int Rm, int Rs);
64 int RdLo, int RdHi, int Rm, int Rs);
107 int Rd, int Rm, int Rs);
109 int Rd, int Rm, int Rs);
111 int Rd, int Rm, int Rs, int Rn);
113 int RdHi, int RdLo, int Rs, int Rm)
    [all...]
ARMAssemblerProxy.cpp 75 void ARMAssemblerProxy::MLA(int cc, int s, int Rd, int Rm, int Rs, int Rn) {
76 mTarget->MLA(cc, s, Rd, Rm, Rs, Rn);
78 void ARMAssemblerProxy::MUL(int cc, int s, int Rd, int Rm, int Rs) {
79 mTarget->MUL(cc, s, Rd, Rm, Rs);
82 int RdLo, int RdHi, int Rm, int Rs) {
83 mTarget->UMULL(cc, s, RdLo, RdHi, Rm, Rs);
86 int RdLo, int RdHi, int Rm, int Rs) {
87 mTarget->UMUAL(cc, s, RdLo, RdHi, Rm, Rs);
90 int RdLo, int RdHi, int Rm, int Rs) {
91 mTarget->SMULL(cc, s, RdLo, RdHi, Rm, Rs);
    [all...]
ARMAssemblerInterface.cpp 98 uint32_t ARMAssemblerInterface::reg_reg(int Rm, int type, int Rs)
100 return ((Rs&0xF)<<8) | ((type&0x3)<<5) | (1<<4) | (Rm&0xF);
GGLAssembler.cpp 389 int Rs = scratches.obtain();
391 CONTEXT_LOAD(Rs, state.buffers.color.stride);
393 SMLABB(AL, Rs, Ry, Rs, Rx); // Rs = Rx + Ry*Rs
394 base_offset(parts.cbPtr, parts.cbPtr, Rs);
395 scratches.recycle(Rs);
425 int Rs = dzdx;
427 CONTEXT_LOAD(Rs, state.buffers.depth.stride)
    [all...]
  /development/tools/findunused/
findunusedstrings 32 for i in $(grep -Rs "\(string\|plurals\) name=" res | sed 's/.*string name=\"//' | sed 's/.*plurals name=\"//'|sed 's/".*$//'|sort -u)
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.h 36 Int Rs; /*bit rate for the sequence (or segment) e.g., 24000 bits/sec */
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_int.h 256 int Rs; /*bit rate for the sequence (or segment) e.g., 24000 bits/sec */
  /external/qemu/
trace.c 895 int Rs = (insn >> 8) & 15;
905 result += 2 + _interlock_use(Rm) + _interlock_use(Rs);
910 int Rs = (insn >> 8) & 15;
920 result += 3 + _interlock_use(Rm) + _interlock_use(Rs);
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp     [all...]
  /external/v8/src/arm/
disasm-arm.cc 236 int rs = instr->RsValue(); local
239 PrintRegister(rs);
332 } else if (format[1] == 's') { // 'rs: Rs register
693 Format(instr, "mul'cond's 'rn, 'rm, 'rs");
696 // of registers as "Rd, Rm, Rs, Rn". But confusingly it uses the
699 Format(instr, "mla'cond's 'rn, 'rm, 'rs, 'rd");
707 // The order of registers is: <RdLo>, <RdHi>, <Rm>, <Rs>
708 Format(instr, "'um'al'cond's 'rd, 'rn, 'rm, 'rs");
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp     [all...]

Completed in 183 milliseconds