HomeSort by relevance Sort by last modified time
    Searched defs:RS (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/rs/cpp/
RenderScript.cpp 22 #include "rs.h"
27 bool RS::gInitialized = false;
28 pthread_mutex_t RS::gInitMutex = PTHREAD_MUTEX_INITIALIZER;
30 RS::RS() {
40 RS::~RS() {
54 bool RS::init(bool forceCpu, bool synchronous) {
55 return RS::init(RS_VERSION, forceCpu, synchronous);
58 bool RS::init(int targetApi, bool forceCpu, bool synchronous)
94 RS *rs = static_cast<RS *>(vrsc); local
    [all...]
rsCppStructs.h 27 // Every row in an RS allocation is guaranteed to be aligned by this amount
37 class RS;
45 class RS : public android::LightRefBase<RS> {
48 RS();
49 virtual ~RS();
163 sp<RS> mRS;
166 BaseObj(void *id, sp<RS> rs);
205 Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage)
    [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyView.java 37 RenderScriptGL RS = createRenderScriptGL(sc);
39 render.init(RS, getResources(), false);
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
GrassView.java 37 RenderScriptGL RS = createRenderScriptGL(sc);
39 render.init(RS, getResources(), false);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 208 Selector RS = Ctx.Selectors.getSelector(0, &RII);
240 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx)
MallocChecker.cpp 234 const Expr *DeallocExpr, const RefState *RS) const;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 122 const ReturnStmt *RS = cast<ReturnStmt>(S);
123 if (const Expr *RE = RS->getRetValue())
  /external/llvm/lib/CodeGen/
BranchFolding.h 93 RegScavenger *RS;
PrologEpilogInserter.h 51 RegScavenger *RS;
TailDuplication.cpp 66 OwningPtr<RegScavenger> RS;
136 RS.reset();
138 RS.reset(new RegScavenger());
789 if (RS && !TailBB->livein_empty()) {
791 RS->enterBasicBlock(PredBB);
793 RS->forward(prior(PredBB->end()));
795 RS->getRegsUsed(RegsLiveAtExit, false);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonFixupHwLoops.cpp 65 RegScavenger &RS);
119 RegScavenger RS;
125 RS.enterBasicBlock(MBB);
132 RS.forward(MII);
139 convertLoopInstr(MF, MII, RS);
160 RegScavenger &RS) {
164 unsigned Scratch = RS.scavengeRegister(&Hexagon::IntRegsRegClass, MII, 0);
  /packages/wallpapers/Basic/src/com/android/wallpaper/fall/
FallView.java 40 RenderScriptGL RS = createRenderScriptGL(sc);
42 mRender.init(RS, getResources(), false);
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.cpp 60 #define RS 0x04 // RS pin
63 #define SET_RS lcdPins |= RS
64 #define CLR_RS lcdPins &= ~RS
  /frameworks/compile/mclinker/include/mcld/ADT/
StringHash.h 26 RS,
53 * \brief RS StringHash funciton
56 struct StringHash<RS> : public std::unary_function<const llvm::StringRef&, uint32_t>
  /external/guava/guava/src/com/google/common/base/
Ascii.java 335 * relationship shall be: FS is the most inclusive, then GS, then RS,
355 public static final byte RS = 30;
  /external/llvm/lib/Target/MBlaze/Disassembler/
MBlazeDisassembler.cpp 528 unsigned RS = getRS(insn);
665 if (RD == UNSUPPORTED || RS == UNSUPPORTED)
668 instr.addOperand(MCOperand::CreateReg(RS));
672 if (RS == UNSUPPORTED || RA == UNSUPPORTED)
674 instr.addOperand(MCOperand::CreateReg(RS));
  /external/dropbear/libtomcrypt/src/ciphers/twofish/
twofish.c 55 /* The 4x8 RS Linear Transform */
56 static const unsigned char RS[4][8] = {
223 /* computes [y0 y1 y2 y3] = RS . [x0 x1 x2 x3 x4 x5 x6 x7] */
234 /* computes [y0 y1 y2 y3] = RS . [x0 x1 x2 x3 x4 x5 x6 x7] */
241 out[x] ^= gf_mult(in[y], RS[x][y], RS_POLY);
  /ndk/sources/host-tools/nawk-20071023/
tran.c 40 char **RS; /* initial record sep */
79 RS = &setsymtab("RS", "\n", 0.0, STR|DONTFREE, symtab)->sval;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterRS.java 133 Log.e(LOGTAG, "RS runtime exception ? " + e);
151 RenderScript RS = CachingPipeline.getRenderScriptContext();
152 if (RS != mRScache || mGreyConvert == null) {
153 mGreyConvert = new ScriptC_grey(RS, RS.getApplicationContext().getResources(),
155 mRScache = RS;
158 Type.Builder tb_a8 = new Type.Builder(RS, Element.A_8(RS));
161 if (bitmapTemp.getType().getElement().isCompatible(Element.A_8(RS))) {
167 Allocation bitmapAlloc = Allocation.createTyped(RS, tb_a8.create()
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 415 const ReturnStmt *RS = *I;
416 const Expr *RetE = RS->getRetValue();
424 Diag(RS->getLocStart(),
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
CachingPipeline.java 80 public static synchronized void setRenderScriptContext(RenderScript RS) {
81 sRS = RS;
86 Log.w(LOGTAG, "A prior RS context exists when calling setRenderScriptContext");
206 RenderScript RS = getRenderScriptContext();
209 mFiltersOnlyOriginalAllocation = Allocation.createFromBitmap(RS, originalBitmap,
217 mOriginalAllocation = Allocation.createFromBitmap(RS, mResizedOriginalBitmap,
419 RenderScript RS = getRenderScriptContext();
428 mOutPixelsAllocation = Allocation.createFromBitmap(RS, bitmapBuffer,
430 mInPixelsAllocation = Allocation.createTyped(RS,
434 if (RS != null)
    [all...]
  /external/aac/libAACenc/src/
metadata_compressor.cpp 121 RS = 5,
176 INT channelIdx[9]; /*!< Offsets of interleaved channel samples (L, R, C, LFE, Ls, Rs, S, Ls2, Rs2). */
531 drcComp->channelIdx[RS] = channelMapping.elInfo[2].ChannelIndex[1];
539 drcComp->channelIdx[RS] = channelMapping.elInfo[2].ChannelIndex[1];
547 drcComp->channelIdx[RS] = channelMapping.elInfo[2].ChannelIndex[1];
    [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 69 RegScavenger *RS;
    [all...]
  /external/qemu/tcg/ppc/
tcg-target.c 396 #define RS(r) ((r)<<21)
408 #define SAB(s,a,b) (RS(s) | RA(a) | RB(b))
453 tcg_out32 (s, ORI | RS (ret) | RA (ret) | (arg & 0xffff));
477 tcg_out32 (s, MTSPR | RS (0) | CTR);
502 tcg_out32 (s, MTSPR | RS (arg) | LR);
558 | RS (addr_reg)
573 | RS (addr_reg)
605 tcg_out32 (s, EXTSB | RA (data_reg) | RS (3));
608 tcg_out32 (s, EXTSH | RA (data_reg) | RS (3));
672 tcg_out32 (s, EXTSB | RA (data_reg) | RS (data_reg))
    [all...]
  /external/qemu/tcg/ppc64/
tcg-target.c 393 #define RS(r) ((r)<<21)
406 #define SAB(s,a,b) (RS(s) | RA(a) | RB(b))
443 static void tcg_out_rld (TCGContext *s, int op, int ra, int rs, int sh, int mb)
447 tcg_out32 (s, op | RA (ra) | RS (rs) | sh | mb);
457 tcg_out32 (s, ORI | RS (ret) | RA (ret) | (arg & 0xffff));
477 if (h16) tcg_out32 (s, ORIS | RS (ret) | RA (ret) | h16);
478 if (l16) tcg_out32 (s, ORI | RS (ret) | RA (ret) | l16);
497 tcg_out32 (s, MTSPR | RS (0) | CTR);
509 tcg_out32 (s, MTSPR | RS (arg) | LR)
    [all...]

Completed in 389 milliseconds

1 2