Searched refs:rs (Results 1 - 25 of 652) sorted by path

1234567891011>>

/frameworks/av/cmds/stagefright/
H A DAndroid.mk154 filters/argbtorgba.rs \
155 filters/nightvision.rs \
156 filters/saturation.rs \
173 $(TOP)/frameworks/rs/cpp \
174 $(TOP)/frameworks/rs \
/frameworks/av/cmds/stagefright/filters/
H A Dargbtorgba.rs18 #pragma rs java_package_name(com.android.rs.cppbasic)
H A Dnightvision.rs18 #pragma rs java_package_name(com.android.rs.cppbasic)
H A Dsaturation.rs18 #pragma rs java_package_name(com.android.rs.cppbasic)
/frameworks/av/media/libstagefright/filters/
H A DAndroid.mk11 saturationARGB.rs \
17 $(TOP)/frameworks/rs/cpp \
18 $(TOP)/frameworks/rs \
H A DsaturationARGB.rs18 #pragma rs java_package_name(com.android.rs.cppbasic)
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp1252 fd_set rs, ws; local
1253 FD_ZERO(&rs);
1256 FD_SET(mPipeFd[0], &rs);
1272 FD_SET(s, &rs);
1287 int res = select(maxFd + 1, &rs, &ws, NULL, NULL /* tv */);
1302 if (FD_ISSET(mPipeFd[0], &rs)) {
1331 if (FD_ISSET(s, &rs) || FD_ISSET(s, &ws)) {
1335 if (FD_ISSET(s, &rs)) {
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp253 fd_set rs; local
254 FD_ZERO(&rs);
263 FD_SET(it->mRTPSocket, &rs);
264 FD_SET(it->mRTCPSocket, &rs);
278 int res = select(maxSocket + 1, &rs, NULL, NULL, &tv);
289 if (FD_ISSET(it->mRTPSocket, &rs)) {
292 if (err == OK && FD_ISSET(it->mRTCPSocket, &rs)) {
H A DARTSPConnection.cpp487 fd_set rs; local
488 FD_ZERO(&rs);
489 FD_SET(mSocket, &rs);
491 int res = select(mSocket + 1, &rs, NULL, NULL, &tv);
H A DMyTransmitter.h428 fd_set rs;
429 FD_ZERO(&rs);
430 FD_SET(mRTCPSocket, &rs);
436 int res = select(mRTCPSocket + 1, &rs, NULL, NULL, &tv);
/frameworks/base/core/java/android/hardware/
H A DCamera.java965 * @param rs the RenderScript context for this Allocation.
977 public final Allocation createPreviewAllocation(RenderScript rs, int usage) argument
981 Type.Builder yuvBuilder = new Type.Builder(rs,
982 Element.createPixel(rs,
991 Allocation a = Allocation.createTyped(rs, yuvBuilder.create(),
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java591 NdefRecord[] rs = parse(buffer, true);
597 mTnf = rs[0].mTnf;
598 mType = rs[0].mType;
599 mId = rs[0].mId;
600 mPayload = rs[0].mPayload;
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java428 RecoverySystem rs = (RecoverySystem) context.getSystemService(Context.RECOVERY_SERVICE);
459 if (!rs.uncrypt(filename, progressListener)) {
577 RecoverySystem rs = (RecoverySystem) context.getSystemService(
579 if (!rs.setupBcb(command)) {
635 RecoverySystem rs = (RecoverySystem) context.getSystemService(Context.RECOVERY_SERVICE);
636 if (!rs.setupBcb(command)) {
655 RecoverySystem rs = (RecoverySystem) context.getSystemService(Context.RECOVERY_SERVICE);
656 if (!rs.clearBcb()) {
826 RecoverySystem rs = (RecoverySystem) context.getSystemService(Context.RECOVERY_SERVICE);
827 rs
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java1281 final RowScale rs = new RowScale(ChooserRowAdapter.this, 0.f, 1.f)
1283 mServiceTargetScale[i] = rs;
1304 for (RowScale rs : mServiceTargetScale) {
1305 rs.cancelAnimation();
/frameworks/base/core/jni/
H A DAndroid.mk208 $(TOP)/frameworks/rs/cpp \
209 $(TOP)/frameworks/rs \
/frameworks/base/libs/hwui/
H A DAndroid.mk198 frameworks/rs/cpp \
199 frameworks/rs
/frameworks/base/
H A Dpathmap.mk41 frameworks/rs/support
/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java382 Allocation(long id, RenderScript rs, Type t, int usage) { argument
383 super(id, rs);
424 Allocation(long id, RenderScript rs, Type t, boolean owningType, int usage, MipmapControl mips) { argument
425 this(id, rs, t, usage);
2664 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { argument
2667 rs.validate();
2668 if (type.getID(rs) == 0) {
2672 long id = rs.nAllocationCreateTyped(type.getID(rs), mips.mID, usage, 0);
2676 return new Allocation(id, rs, typ
2693 createTyped(RenderScript rs, Type type, int usage) argument
2706 createTyped(RenderScript rs, Type type) argument
2721 createSized(RenderScript rs, Element e, int count, int usage) argument
2749 createSized(RenderScript rs, Element e, int count) argument
2753 elementFromBitmap(RenderScript rs, Bitmap b) argument
2770 typeFromBitmap(RenderScript rs, Bitmap b, MipmapControl mip) argument
2793 createFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
2886 createAllocations(RenderScript rs, Type t, int usage, int numAlloc) argument
2925 createFromAllocation(RenderScript rs, Allocation alloc) argument
3061 createFromBitmap(RenderScript rs, Bitmap b) argument
3085 createCubemapFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
3132 createCubemapFromBitmap(RenderScript rs, Bitmap b) argument
3156 createCubemapFromCubeFaces(RenderScript rs, Bitmap xpos, Bitmap xneg, Bitmap ypos, Bitmap yneg, Bitmap zpos, Bitmap zneg, MipmapControl mips, int usage) argument
3222 createCubemapFromCubeFaces(RenderScript rs, Bitmap xpos, Bitmap xneg, Bitmap ypos, Bitmap yneg, Bitmap zpos, Bitmap zneg) argument
3249 createFromBitmapResource(RenderScript rs, Resources res, int id, MipmapControl mips, int usage) argument
3281 createFromBitmapResource(RenderScript rs, Resources res, int id) argument
3303 createFromString(RenderScript rs, String str, int usage) argument
[all...]
H A DAllocationAdapter.java26 AllocationAdapter(long id, RenderScript rs, Allocation alloc, Type t) { argument
27 super(id, rs, alloc.mType, alloc.mUsage);
33 long getID(RenderScript rs) {
231 static public AllocationAdapter create1D(RenderScript rs, Allocation a) { argument
232 rs.validate();
233 Type t = Type.createX(rs, a.getElement(), a.getType().getX());
234 return createTyped(rs, a, t);
238 static public AllocationAdapter create2D(RenderScript rs, Allocation a) { argument
239 rs.validate();
240 Type t = Type.createXY(rs,
266 createTyped(RenderScript rs, Allocation a, Type t) argument
[all...]
H A DBaseObj.java29 BaseObj(long id, RenderScript rs) { argument
30 rs.validate();
31 mRS = rs;
47 * @param rs Context to verify against internal context for
52 long getID(RenderScript rs) { argument
60 if ((rs != null) && (rs != mRS)) {
H A DElement.java309 * @param rs Context to which the element will belong.
313 public static Element BOOLEAN(RenderScript rs) { argument
314 if (rs.mElement_BOOLEAN == null) {
315 synchronized (rs) {
316 if (rs.mElement_BOOLEAN == null) {
317 rs.mElement_BOOLEAN = createUser(rs, DataType.BOOLEAN);
321 return rs.mElement_BOOLEAN;
327 * @param rs Context to which the element will belong.
331 public static Element U8(RenderScript rs) { argument
349 I8(RenderScript rs) argument
360 U16(RenderScript rs) argument
371 I16(RenderScript rs) argument
382 U32(RenderScript rs) argument
393 I32(RenderScript rs) argument
404 U64(RenderScript rs) argument
415 I64(RenderScript rs) argument
426 F16(RenderScript rs) argument
437 F32(RenderScript rs) argument
448 F64(RenderScript rs) argument
459 ELEMENT(RenderScript rs) argument
470 TYPE(RenderScript rs) argument
481 ALLOCATION(RenderScript rs) argument
492 SAMPLER(RenderScript rs) argument
503 SCRIPT(RenderScript rs) argument
514 MESH(RenderScript rs) argument
525 PROGRAM_FRAGMENT(RenderScript rs) argument
536 PROGRAM_VERTEX(RenderScript rs) argument
547 PROGRAM_RASTER(RenderScript rs) argument
558 PROGRAM_STORE(RenderScript rs) argument
569 FONT(RenderScript rs) argument
580 A_8(RenderScript rs) argument
591 RGB_565(RenderScript rs) argument
602 RGB_888(RenderScript rs) argument
613 RGBA_5551(RenderScript rs) argument
624 RGBA_4444(RenderScript rs) argument
635 RGBA_8888(RenderScript rs) argument
646 F16_2(RenderScript rs) argument
657 F16_3(RenderScript rs) argument
668 F16_4(RenderScript rs) argument
679 F32_2(RenderScript rs) argument
690 F32_3(RenderScript rs) argument
701 F32_4(RenderScript rs) argument
712 F64_2(RenderScript rs) argument
723 F64_3(RenderScript rs) argument
734 F64_4(RenderScript rs) argument
745 U8_2(RenderScript rs) argument
756 U8_3(RenderScript rs) argument
767 U8_4(RenderScript rs) argument
778 I8_2(RenderScript rs) argument
789 I8_3(RenderScript rs) argument
800 I8_4(RenderScript rs) argument
811 U16_2(RenderScript rs) argument
822 U16_3(RenderScript rs) argument
833 U16_4(RenderScript rs) argument
844 I16_2(RenderScript rs) argument
855 I16_3(RenderScript rs) argument
866 I16_4(RenderScript rs) argument
877 U32_2(RenderScript rs) argument
888 U32_3(RenderScript rs) argument
899 U32_4(RenderScript rs) argument
910 I32_2(RenderScript rs) argument
921 I32_3(RenderScript rs) argument
932 I32_4(RenderScript rs) argument
943 U64_2(RenderScript rs) argument
954 U64_3(RenderScript rs) argument
965 U64_4(RenderScript rs) argument
976 I64_2(RenderScript rs) argument
987 I64_3(RenderScript rs) argument
998 I64_4(RenderScript rs) argument
1009 YUV(RenderScript rs) argument
1020 MATRIX_4X4(RenderScript rs) argument
1033 MATRIX4X4(RenderScript rs) argument
1037 MATRIX_3X3(RenderScript rs) argument
1048 MATRIX_2X2(RenderScript rs) argument
1059 Element(long id, RenderScript rs, Element[] e, String[] n, int[] as) argument
1076 Element(long id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) argument
1095 Element(long id, RenderScript rs) argument
1149 createUser(RenderScript rs, DataType dt) argument
1170 createVector(RenderScript rs, DataType dt, int size) argument
1214 createPixel(RenderScript rs, DataType dt, DataKind dk) argument
1312 Builder(RenderScript rs) argument
[all...]
H A DFileA3D.java129 static synchronized BaseObj internalCreate(RenderScript rs, IndexEntry entry) { argument
139 long objectID = rs.nFileA3DGetEntryByIndex(entry.mID, entry.mIndex);
146 entry.mLoadedObj = new Mesh(objectID, rs);
157 IndexEntry(RenderScript rs, int index, long id, String name, EntryType type) { argument
158 mRS = rs;
170 FileA3D(long id, RenderScript rs, InputStream stream) { argument
171 super(id, rs);
226 * @param rs Context to which the object will belong.
232 static public FileA3D createFromAsset(RenderScript rs, AssetManager mgr, String path) { argument
233 rs
253 createFromFile(RenderScript rs, String path) argument
273 createFromFile(RenderScript rs, File path) argument
287 createFromResource(RenderScript rs, Resources res, int id) argument
[all...]
H A DFont.java151 Font(long id, RenderScript rs) { argument
152 super(id, rs);
160 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) { argument
161 rs.validate();
163 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
168 Font rsFont = new Font(fontId, rs);
176 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) { argument
177 return createFromFile(rs, res, path.getAbsolutePath(), pointSize);
183 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) { argument
184 rs
199 createFromResource(RenderScript rs, Resources res, int id, float pointSize) argument
239 create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) argument
[all...]
H A DMesh.java92 Mesh(long id, RenderScript rs) { argument
93 super(id, rs);
209 * @param rs Context to which the mesh will belong.
214 public Builder(RenderScript rs, int usage) { argument
215 mRS = rs;
427 public AllocationBuilder(RenderScript rs) { argument
428 mRS = rs;
591 * @param rs Context to which the mesh will belong.
599 public TriangleMeshBuilder(RenderScript rs, int vtxSize, int flags) { argument
600 mRS = rs;
[all...]
H A DProgram.java77 Program(long id, RenderScript rs) { argument
78 super(id, rs);
216 protected BaseProgramBuilder(RenderScript rs) { argument
217 mRS = rs;

Completed in 353 milliseconds

1234567891011>>