HomeSort by relevance Sort by last modified time
    Searched refs:RS (Results 126 - 150 of 542) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaRegisterInfo.h 42 int SPAdj, RegScavenger *RS = NULL) const;
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUFrameLowering.h 44 RegScavenger *RS = NULL) const;
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeRegisterInfo.h 59 int SPAdj, RegScavenger *RS = NULL) const;
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsRegisterInfo.h 55 int SPAdj, RegScavenger *RS = NULL) const;
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXRegisterInfo.cpp 36 RegScavenger *RS) const {
  /external/swiftshader/third_party/LLVM/lib/Target/Sparc/
SparcRegisterInfo.h 44 int SPAdj, RegScavenger *RS = NULL) const;
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZRegisterInfo.h 48 int SPAdj, RegScavenger *RS = NULL) const;
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreFrameLowering.h 46 RegScavenger *RS = NULL) const;
  /frameworks/av/media/libstagefright/filters/
IntrinsicBlurFilter.h 41 RSC::sp<RSC::RS> mRS;
RSFilter.h 46 RSC::sp<RSC::RS> mRS;
SaturationFilter.h 43 RSC::sp<RSC::RS> mRS;
  /external/valgrind/none/tests/mips64/
cvm_ins.c 70 #define TESTINST1(instruction, RSVal, RT, RS, p, lenm1) \
75 "move $" #RS ", %1" "\n\t" \
80 : #RS, #RT, "cc", "memory" \
82 printf("%s :: rt 0x%lx rs 0x%x, p 0x%08x, lenm1 0x%08x\n", \
85 #define TESTINST2(instruction, RSVal, RTval, RD, RS, RT) \
90 "move $" #RS ", %1" "\n\t" \
96 : #RD, #RS, #RT, "cc", "memory" \
98 printf("%s :: rd 0x%lx rs 0x%x, rt 0x%x\n", \
101 #define TESTINST3(instruction, RSVal, RT, RS, imm) \
106 "move $" #RS ", %1" "\n\t"
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterRS.java 144 Log.e(LOGTAG, "RS runtime exception ? " + e);
154 protected static Allocation convertBitmap(RenderScript RS, Bitmap bitmap) {
155 return Allocation.createFromBitmap(RS, bitmap,
160 private static Allocation convertRGBAtoA(RenderScript RS, Bitmap bitmap) {
161 if (RS != mRScache || mGreyConvert == null) {
162 mGreyConvert = new ScriptC_grey(RS);
163 mRScache = RS;
166 Type.Builder tb_a8 = new Type.Builder(RS, Element.A_8(RS));
168 Allocation bitmapTemp = convertBitmap(RS, bitmap)
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
h8500-opc.h 145 #define RS 39
199 {6,'-','X','!','!',O_XCH|O_WORD,"xch.w",2,{RS,RD},2, {{0xa8,0xf8,RS },{0x90,0xf8,RD }}},
200 {7,'-','X','!','!',O_XCH|O_UNSZ,"xch",2,{RS,RD},2, {{0xa8,0xf8,RS },{0x90,0xf8,RD }}},
    [all...]
  /frameworks/rs/cpp/
Allocation.cpp 41 Allocation::Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage) :
42 BaseObj(id, rs), mSelectedY(0), mSelectedZ(0), mSelectedLOD(0),
144 const void *typeID = RS::dispatch->AllocationGetType(mRS->getContext(), getID());
165 tryDispatch(mRS, RS::dispatch->AllocationSyncAll(mRS->getContext(), getIDSafe(), srcLocation));
176 if (RS::dispatch->AllocationGetPointer == nullptr) {
181 p = RS::dispatch->AllocationGetPointer(mRS->getContext(), getIDSafe(), 0,
232 tryDispatch(mRS, RS::dispatch->Allocation1DData(mRS->getContext(), getIDSafe(), off, mSelectedLOD,
236 tryDispatch(mRS, RS::dispatch->Allocation1DData(mRS->getContext(), getIDSafe(), off, mSelectedLOD,
254 tryDispatch(mRS, RS::dispatch->Allocation1DRead(mRS->getContext(), getIDSafe(), off, mSelectedLOD
    [all...]
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 51 static void doSpillCalleeSavedRegs(MachineFunction &MF, RegScavenger *RS,
57 static void doScavengeFrameVirtualRegs(MachineFunction &MF, RegScavenger *RS);
93 std::function<void(MachineFunction &MF, RegScavenger *RS,
98 std::function<void(MachineFunction &MF, RegScavenger *RS)>
103 RegScavenger *RS;
177 RS = TRI->requiresRegisterScavenging(Fn) ? new RegScavenger() : nullptr;
190 SpillCalleeSavedRegisters(Fn, RS, MinCSFrameIndex, MaxCSFrameIndex,
195 TFI->processFunctionBeforeFrameFinalized(Fn, RS);
217 ScavengeFrameVirtualRegs(Fn, RS);
231 delete RS;
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.h 31 RegScavenger *RS) const override;
42 RegScavenger *RS) const override;
  /frameworks/rs/tests/cpp_api/cpp-globalguard/
compute.cpp 17 // This file is based on frameworks/rs/tests/cpp_api/cppallocation/compute.cpp.
23 sp<RS> rs; variable
43 rs = new RS();
45 if (!rs->init("/system/bin")) {
50 e = Element::U32(rs);
52 Type::Builder tb(rs, e);
56 ain = Allocation::createTyped(rs, t);
57 aout = Allocation::createTyped(rs, t)
    [all...]
  /frameworks/rs/tests/cpp_api/cppallocation/
compute.cpp 20 sp<RS> rs = new RS(); local
22 if (!rs->init("/system/bin")) {
27 sp<const Element> e = Element::U32(rs);
29 Type::Builder tb(rs, e);
33 sp<Allocation> ain = Allocation::createTyped(rs, t);
34 sp<Allocation> aout = Allocation::createTyped(rs, t);
36 sp<ScriptC_multiply> sc = new ScriptC_multiply(rs);
  /frameworks/rs/tests/lldb/cpp/BranchingFunCalls/
BranchingFunCalls.cpp 24 sp<RS> rs = new RS(); local
26 rs->init("/data/rscache", RS_INIT_LOW_LATENCY | RS_INIT_WAIT_FOR_ATTACH);
28 auto e = Element::I32(rs);
29 Type::Builder tb(rs, e);
34 auto a = Allocation::createTyped(rs, t);
35 auto b = Allocation::createTyped(rs, t);
45 sp<ScriptC_scalars> s = new ScriptC_scalars(rs);
48 rs->finish()
    [all...]
  /frameworks/rs/tests/lldb/jni/BranchingFunCalls/jnibranchingfuncalls/
jnibranchingfuncalls.cpp 31 sp<RS> rs = new RS(); local
34 rs->init(path, RS_INIT_LOW_LATENCY | RS_INIT_WAIT_FOR_ATTACH);
37 auto e = Element::I32(rs);
38 Type::Builder tb(rs, e);
43 auto a = Allocation::createTyped(rs, t);
44 auto b = Allocation::createTyped(rs, t);
54 sp<ScriptC_scalars> s = new ScriptC_scalars(rs);
57 rs->finish()
    [all...]
  /frameworks/rs/tests/lldb/jni/DebugWaitAttach/jnidebugwaitattach/
jnidebugwaitattach.cpp 31 sp<RS> rs = new RS(); local
34 rs->init(path, RS_INIT_LOW_LATENCY | RS_INIT_WAIT_FOR_ATTACH);
37 auto e = Element::RGBA_8888(rs);
38 Type::Builder tb(rs, e);
43 auto a = Allocation::createTyped(rs, t);
44 auto b = Allocation::createTyped(rs, t);
47 sp<ScriptC_simple> s = new ScriptC_simple(rs);
55 rs->finish()
    [all...]
  /frameworks/rs/tests/lldb/jni/InfiniteLoop/jniinfiniteloop/
jniinfiniteloop.cpp 32 sp<RS> rs = new RS(); local
35 rs->init(path, RS_INIT_LOW_LATENCY);
38 auto e = Element::RGBA_8888(rs);
39 Type::Builder tb(rs, e);
44 auto a = Allocation::createTyped(rs, t);
45 auto b = Allocation::createTyped(rs, t);
47 sp<ScriptC_infiniteloop> s = new ScriptC_infiniteloop(rs);
  /frameworks/rs/tests/lldb/jni/MultipleRSFiles/jnimultiplersfiles/
jnimultiplersfiles.cpp 32 sp<RS> rs = new RS(); local
35 rs->init(path, RS_INIT_LOW_LATENCY | RS_INIT_WAIT_FOR_ATTACH);
38 auto e = Element::RGBA_8888(rs);
39 Type::Builder tb(rs, e);
44 auto a = Allocation::createTyped(rs, t);
45 auto b = Allocation::createTyped(rs, t);
48 sp<ScriptC_first> s1 = new ScriptC_first(rs);
49 sp<ScriptC_second> s2 = new ScriptC_second(rs);
    [all...]
  /cts/tests/tests/rscpp/librscpptest/
rs_jni.cpp 53 sp<const Element> makeElement(const sp<RS> &rs, RsDataType dt, int vecSize) {
55 return Element::createVector(rs, dt, vecSize);
58 return Element::U8(rs);
60 return Element::F32(rs);
72 sp<RS> rs = new RS(); local
73 r &= rs->init(path);
93 sp<RS> rs = new RS() local
134 sp<RS> rs = new RS(); local
179 sp<RS> rs = new RS(); local
222 sp<RS> rs = new RS(); local
266 sp<RS> rs = new RS(); local
314 sp<RS> rs = new RS(); local
402 sp<RS> rs = new RS(); local
    [all...]

Completed in 502 milliseconds

1 2 3 4 56 7 8 91011>>