/external/libdrm/tests/modetest/ |
Makefile.sources | 2 buffers.c \ 3 buffers.h \
|
/art/test/070-nio-buffer/ |
info.txt | 1 Exercise NIO buffers (e.g. java.nio.ByteBuffer).
|
/frameworks/base/core/java/android/util/proto/ |
package.html | 2 Provides utility classes to export protocol buffers from the system.
|
/system/sepolicy/private/ |
mediadrmserver.te | 5 # allocate and use graphic buffers
|
/prebuilts/go/darwin-x86/src/net/ |
writev_test.go | 20 buffers := Buffers{ 28 got, err := ioutil.ReadAll(&buffers) 35 if len(buffers) != 0 { 36 t.Errorf("len(buffers) = %d; want 0", len(buffers)) 42 in Buffers 44 want Buffers 47 in: Buffers{[]byte("foo"), []byte("bar")}, 49 want: Buffers{[]byte("foo"), []byte("bar")} [all...] |
/prebuilts/go/linux-x86/src/net/ |
writev_test.go | 20 buffers := Buffers{ 28 got, err := ioutil.ReadAll(&buffers) 35 if len(buffers) != 0 { 36 t.Errorf("len(buffers) = %d; want 0", len(buffers)) 42 in Buffers 44 want Buffers 47 in: Buffers{[]byte("foo"), []byte("bar")}, 49 want: Buffers{[]byte("foo"), []byte("bar")} [all...] |
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
GLES20IdImpl.java | 19 public void glGenBuffers(int n, int[] buffers, int offset) { 20 GLES20.glGenBuffers(n, buffers, offset); 32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { 33 GLES20.glDeleteBuffers(n, buffers, offset); 38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { 39 GLES20.glDeleteFramebuffers(n, buffers, offset);
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
GLES20IdImpl.java | 19 public void glGenBuffers(int n, int[] buffers, int offset) { 20 GLES20.glGenBuffers(n, buffers, offset); 32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { 33 GLES20.glDeleteBuffers(n, buffers, offset); 38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { 39 GLES20.glDeleteFramebuffers(n, buffers, offset);
|
GLES11IdImpl.java | 38 public void glGenBuffers(int n, int[] buffers, int offset) { 41 buffers[offset + n] = sNextId++; 54 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { 56 gl.glDeleteBuffers(n, buffers, offset); 61 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { 63 gl11ep.glDeleteFramebuffersOES(n, buffers, offset);
|
/packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/ |
GLES20IdImpl.java | 19 public void glGenBuffers(int n, int[] buffers, int offset) { 20 GLES20.glGenBuffers(n, buffers, offset); 32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { 33 GLES20.glDeleteBuffers(n, buffers, offset); 38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { 39 GLES20.glDeleteFramebuffers(n, buffers, offset);
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/d1new/ |
RefocusFilterd1new.java | 50 ImageBuffersForRenderScriptd1new buffers; field in class:RefocusFilterd1new 58 buffers.destroy(); 69 // Allocates, binds, and initializes buffers that interface between Java 74 buffers = new ImageBuffersForRenderScriptd1new(inputImage, margin, 76 buffers.initializeRenderScript(focalLayer, scriptC); 81 // Extracts the result from .rs file to {@code buffers.outputImage} in Java. 85 scriptC.forEach_PackOutputImage(buffers.outAllocation); 89 buffers.outAllocation.copyTo(buffers.outputImage); 90 return buffers.outputImage [all...] |
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/ |
RefocusFilterd1new.java | 38 ImageBuffersForRenderScriptd1new buffers; field in class:RefocusFilterd1new 49 // Allocates, binds, and initializes buffers that interface between Java 54 buffers = new ImageBuffersForRenderScriptd1new(inputImage, margin, 56 buffers.initializeRenderScript(focalLayer, scriptC); 62 // Extracts the result from .rs file to {@code buffers.outputImage} in Java. 66 scriptC.forEach_PackOutputImage(buffers.outAllocation); 71 buffers.outAllocation.copyTo(buffers.outputImage); 75 return buffers.outputImage; 83 Bitmap mBitmap = Bitmap.createBitmap(buffers.inputImage.getWidth() [all...] |
/development/samples/browseable/Camera2Raw/ |
_index.jd | 9 camera buffers and save them as DNG files.
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/f32/ |
RefocusFilterF32.java | 37 ImageBuffersForRenderScriptF32 buffers; field in class:RefocusFilterF32 48 // Allocates, binds, and initializes buffers that interface between Java 53 buffers = new ImageBuffersForRenderScriptF32(inputImage, margin, 55 buffers.initializeRenderScript(focalLayer, scriptC); 60 // Extracts the result from .rs file to {@code buffers.outputImage} in Java. 64 scriptC.forEach_PackOutputImage(buffers.outAllocation); 69 buffers.outAllocation.copyTo(buffers.outputImage); 73 return buffers.outputImage; 81 Bitmap mBitmap = Bitmap.createBitmap(buffers.inputImage.getWidth() [all...] |
/hardware/interfaces/graphics/allocator/2.0/ |
IAllocator.hal | 34 * Allocates buffers with the properties specified by the descriptor. 36 * @param descriptor specifies the properties of the buffers to allocate. 37 * @param count is the number of buffers to allocate. 45 * the buffers, when the concept of consecutive rows is defined. 47 * @return buffers is an array of raw handles to the newly allocated 48 * buffers. 56 vec<handle> buffers);
|
/frameworks/native/include/gui/ |
CpuConsumer.h | 36 * access to the underlying gralloc buffers provided by BufferQueue. Multiple 37 * buffers may be acquired by it at once, to be used concurrently by the 93 // how many buffers can be locked for user access at the same time. 106 // NOT_ENOUGH_DATA if the maximum number of buffers is already locked. 108 // Only a fixed number of buffers can be locked at a time, determined by the 110 // returned by lockNextBuffer, then old buffers must be returned to the queue 111 // by calling unlockBuffer before more buffers can be acquired. 115 // only a fixed number of buffers may be locked at a time, old buffers must 116 // be released by calling unlockBuffer to ensure new buffers can be acquired b [all...] |
/external/lzma/xz-embedded/ |
xz_dec_test.c | 42 * Input and output buffers. The input buffer is used as a temporary safe 49 * Structure to pass the input and output buffers to the XZ decoder. 52 static struct xz_buf buffers = { variable in typeref:struct:xz_buf 75 buffers.in_pos = 0; 76 buffers.in_size = 0; 77 buffers.out_pos = 0; 120 while ((remaining > 0 || buffers.out_pos == buffers.out_size) 122 if (buffers.in_pos == buffers.in_size) [all...] |
/hardware/intel/common/libva/va/x11/ |
dri2_util.c | 53 union dri_buffer buffers[5]; member in struct:dri2_drawable 121 VA_DRI2Buffer *buffers; local 129 buffers = VA_DRI2GetBuffers(ctx->native_dpy, dri_drawable->x_drawable, 132 assert(buffers); 133 if (buffers == NULL) 139 dri2_drawable->buffers[i].dri2.attachment = buffers[i].attachment; 140 dri2_drawable->buffers[i].dri2.name = buffers[i].name; 141 dri2_drawable->buffers[i].dri2.pitch = buffers[i].pitch [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/ |
RefocusFilterF32.java | 53 ImageBuffersForRenderScriptF32 buffers; field in class:RefocusFilterF32 60 buffers.destroy(); 69 // Allocates, binds, and initializes buffers that interface between Java 74 buffers = new ImageBuffersForRenderScriptF32(inputImage, margin, 76 buffers.initializeRenderScript(focalLayer, scriptC); 81 // Extracts the result from .rs file to {@code buffers.outputImage} in Java. 85 scriptC.forEach_PackOutputImage(buffers.outAllocation); 89 buffers.outAllocation.copyTo(buffers.outputImage); 90 return buffers.outputImage [all...] |
/device/generic/goldfish/camera/fake-pipeline2/ |
JpegCompressor.h | 19 * This class simulates a hardware JPEG compressor. It receives image buffers 57 // Start compressing COMPRESSED format buffers; JpegCompressor takes 58 // ownership of the Buffers vector. 59 status_t start(Buffers *buffers, JpegListener *listener); 62 status_t compressSynchronous(Buffers *buffers); 82 Buffers *mBuffers;
|
/external/valgrind/memcheck/tests/ |
null_socket.c | 7 // It's legit to have NULL buffers; before the bug was fixed Valgrind 8 // reported spurious errors for the buffers.
|
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
message_buffer.h | 10 // Utility type for thread-local buffers, providing suitable defaults for most 11 // situations. Independent thread-local buffers may be created by using
|
/hardware/libhardware/modules/camera/3_0/ |
Stream.h | 35 // Register buffers with hardware 58 // Handle to framework's stream, used as a cookie for buffers 62 // Width in pixels of the buffers in this stream 64 // Height in pixels of the buffers in this stream 70 // Max simultaneous in-flight buffers for this stream 72 // Buffers have been registered for this stream and are ready 74 // Array of handles to buffers currently in use by the stream 76 // Number of buffers in mBuffers
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
consuming_buffers.hpp | 26 // A proxy iterator for a sub-range in a list of buffers. 150 // A proxy for a sub-range in a list of buffers. 151 template <typename Buffer, typename Buffers> 155 // The type for each element in the list of buffers. 159 typedef consuming_buffers_iterator<Buffer, typename Buffers::const_iterator> 162 // Construct to represent the entire list of buffers. 163 consuming_buffers(const Buffers& buffers) 164 : buffers_(buffers), 184 typename Buffers::const_iterator first = other.buffers_.begin() [all...] |
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3Stream.h | 46 * buffers may still be returned. 48 * STATE_CONSTRUCTED: The stream is ready for configuration, but buffers cannot 49 * be gotten yet. Not connected to any endpoint, no buffers are registered 58 * re-registering buffers with HAL. 60 * STATE_CONFIGURED: Stream is configured, and has registered buffers with the 64 * STATE_PREPARING: The stream's buffers are being pre-allocated for use. On 66 * buffers may be allocated at time of first use. But some use cases require 82 * When finishConfiguration() fails to allocate or register buffers. 89 * When finishConfiguration() fails to allocate or register buffers. 98 * all stream buffers, or cancelPrepare is called [all...] |