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

  /system/core/libpixelflinger/codeflinger/
MIPSAssembler.h 272 void ADDU(int Rd, int Rs, int Rt);
273 void ADDIU(int Rt, int Rs, int16_t imm);
274 void SUBU(int Rd, int Rs, int Rt);
275 void SUBIU(int Rt, int Rs, int16_t imm);
277 void MUL(int Rd, int Rs, int Rt);
278 void MULT(int Rs, int Rt); // dest is hi,lo
279 void MULTU(int Rs, int Rt); // dest is hi,lo
280 void MADD(int Rs, int Rt); // hi,lo = hi,lo + Rs * Rt
281 void MADDU(int Rs, int Rt); // hi,lo = hi,lo + Rs * R
    [all...]
MIPSAssembler.cpp     [all...]
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
vibrance.rs 27 static float Rt = 0.f;
43 Rt = Rf * MS;
51 float Rc = R * (Rt + S) + G * Gt + B * Bt;
52 float Gc = R * Rt + G * (Gt + S) + B * Bt;
53 float Bc = R * Rt + G * Gt + B * (Bt + S);
66 Rt = Rf * MS;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
vibrance.rs 27 static float Rt = 0.f;
43 Rt = Rf * MS;
51 float Rc = R * (Rt + S) + G * Gt + B * Bt;
52 float Gc = R * Rt + G * (Gt + S) + B * Bt;
53 float Bc = R * Rt + G * Gt + B * (Bt + S);
66 Rt = Rf * MS;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
vibrance.rs 38 float Rt = Rf * MS;
46 float Rc = R * (Rt + S) + G * Gt + B * Bt;
47 float Gc = R * Rt + G * (Gt + S) + B * Bt;
48 float Bc = R * Rt + G * Gt + B * (Bt + S);
  /packages/apps/Gallery2/jni/filters/
saturated.c 30 float Rt = Rf * MS;
44 float Rc = R * (Rt + S) + G * Gt + B * Bt;
45 float Gc = R * Rt + G * (Gt + S) + B * Bt;
46 float Bc = R * Rt + G * Gt + B * (Bt + S);
vibrance.c 32 float Rt = Rf * MS;
45 Rt = Rf * MS;
53 float Rc = R * (Rt + S) + G * Gt + B * Bt;
54 float Gc = R * Rt + G * (Gt + S) + B * Bt;
55 float Bc = R * Rt + G * Gt + B * (Bt + S);
  /external/eigen/Eigen/src/Geometry/
Umeyama.h 135 TransformationMatrixType Rt = TransformationMatrixType::Identity(m+1,m+1);
146 Rt.block(0,0,m,m).noalias() = svd.matrixU()*svd.matrixV().transpose();
149 Rt.block(0,0,m,m).noalias() = svd.matrixU() * S.asDiagonal() * svd.matrixV().transpose();
153 Rt.block(0,0,m,m).noalias() = svd.matrixU() * S.asDiagonal() * svd.matrixV().transpose();
162 Rt.col(m).head(m) = dst_mean;
163 Rt.col(m).head(m).noalias() -= c*Rt.topLeftCorner(m,m)*src_mean;
165 if (with_scaling) Rt.block(0,0,m,m) *= c;
167 return Rt;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
saturation.rs 70 float Rt = Rf * MS;
76 rsMatrixSet(&colorMatrix_max, 0, 0, b * (Rt + S));
79 rsMatrixSet(&colorMatrix_max, 0, 1, b * Rt);
82 rsMatrixSet(&colorMatrix_max, 0, 2, b * Rt);
88 Rt = Rf * MS;
93 rsMatrixSet(&colorMatrix_min, 0, 0, b * (Rt + S));
96 rsMatrixSet(&colorMatrix_min, 0, 1, b * Rt);
99 rsMatrixSet(&colorMatrix_min, 0, 2, b * Rt);
vignette.rs 48 float Rt = Rf * MS;
56 rsMatrixSet(&colorMatrix, 0, 0, b * (Rt + S));
59 rsMatrixSet(&colorMatrix, 0, 1, b * Rt);
62 rsMatrixSet(&colorMatrix, 0, 2, b * Rt);
grad.rs 72 float Rt = Rf * MS;
80 rsMatrixSet(&grads[i].colorMatrix, 0, 0, b * (Rt + S));
83 rsMatrixSet(&grads[i].colorMatrix, 0, 1, b * Rt);
86 rsMatrixSet(&grads[i].colorMatrix, 0, 2, b * Rt);
  /art/runtime/
disassembler_arm.cc 352 ArmRegister Rt(instr, 12);
357 args << Rd << ", " << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
360 args << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
858 // STRB Rt,[Rn,#+/-imm8] - 111 11 00 0 0 00 0 nnnn tttt 1 PUWii ii iiii
859 // STRB Rt,[Rn,Rm,lsl #imm2] - 111 11 00 0 0 00 0 nnnn tttt 0 00000 ii mmmm
861 ArmRegister Rt(instr, 12);
865 args << Rt << ", [" << Rn << ",#" << imm8 << "]";
869 args << Rt << ", [" << Rn << ", " << Rm
    [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 592 unsigned Rt = fieldFromInstruction(Insn, 0, 5);
606 // Rn_wb, Rt, Rt2, Rn, Imm
611 if (L && Rt == Rt2)
616 if (Indexed && V == 0 && Rn != 31 && (Rt == Rn || Rt2 == Rn))
627 DecodeFPR32RegisterClass(Inst, Rt, Address, Decoder);
631 DecodeFPR64RegisterClass(Inst, Rt, Address, Decoder);
635 DecodeFPR128RegisterClass(Inst, Rt, Address, Decoder);
643 DecodeGPR32RegisterClass(Inst, Rt, Address, Decoder);
648 DecodeGPR64RegisterClass(Inst, Rt, Address, Decoder);
652 DecodeGPR64RegisterClass(Inst, Rt, Address, Decoder)
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/test/MC/ARM/
diagnostics.s 271 @ Out of order Rt/Rt2 operands for ldrexd/strexd
327 @ Out of order Rt/Rt2 operands for ldrd
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/testdata/
video.rtpdump     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/testdata/
video.rtpdump     [all...]
h264-svc-99-640x360.rtpdump 418 Jr?T?-? ?t?1 |???{U.?e|?? ?r?0?`i.~???a??W????b??E@???t?x????a?*?Z?Q%????c%i??'??f??f???qr8>????4??v?Hc^X|)?E??A??d??-?&??{4????v?c?u??????ov;???MY? >?4G??????Za/5R^?,T?v???f?[B_?“]]?{9?????1???q?<%?)????7€U?r?m???2??q??????@8#??r?g??*:???j???S~7? Z]????y????? ?[?F={F?)????/??O??n0?-3?v?wxm?Nf??s??yh?R?"?}???%x??G?????~@o?\??? ?ms ??k?Ã?n??(?-~q+??z??????F?????%o??b??????3?z?]f ?????< ??7?9j??$b???=???????- ????sCZ?:????K?T N(v??le???[}??????X:??p???X9&???0BI?B3????:?,mTH.?$ig???(????k?u?LU?M??6???Y??~?????7}???2v?????6?3?¼hW???o&A?????j3??z????H?????g??R?,|??Rt??*t?G@V?kX?~??y?t?0?P>???i{??1???M??*m?????????QTn?f9??????kP?Z??}?4$?A?!~??F??N?$`h?-?N6rh????.kM????(?????4~??????????Y?q??Wi?S?Q?Wl3eM ??“??+h?????9?'??a?????P?v?!?/_??:??X?G?’??;??w ??O?u??v?????2 N?Z??????0?U??<D[t???7?X???*?f ??D?'j?AVO-??h???h?b??????]?)???-?v?? ??R=???????J?,uZ??p??P?F??%?4?r0}?-???65?]?U?I?* jTv?Ym=?~Nk?o????;? Q?\?????@?????[?c??s'E?{w???!O???????.)[??Aj??){???????6?O???y{?.l???'6???{P:RC?????U?? y??S????\B?1??????"?"??1K?L ? ?? ???L?T??*?????
    [all...]

Completed in 535 milliseconds