HomeSort by relevance Sort by last modified time
    Searched full:buffers (Results 26 - 50 of 7567) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/doc/spec/
x5791.htm 108 >Streaming is an I/O method where only pointers to buffers
110 copied. Memory mapping is primarily intended to map buffers in device
115 buffers in DMA-able main memory.</P
117 >A driver can support many sets of buffers. Each set is
129 >To allocate device buffers applications call the
136 > ioctl with the desired number of buffers and buffer
141 This ioctl can also be used to change the number of buffers or to free
142 the allocated memory, provided none of the buffers are still
145 >Before applications can access the buffers they must map
153 location of the buffers in device memory can be determined with th
    [all...]
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_svc_dg_create/
assertions.xml 6 Test svc_dg_create() bottom level function arguments limits. Arguments are send and receive buffers sizes
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_svc_vc_create/
assertions.xml 6 Test svc_vc_create() bottom level function arguments limits. Arguments are send and receive buffers sizes
  /external/protobuf/
protobuf-lite.pc.in 6 Name: Protocol Buffers
  /external/protobuf/util/
protobuf-lite.pc.in 6 Name: Protocol Buffers
  /prebuilts/tools/darwin-x86_64/protoc/lib/pkgconfig/
protobuf-lite.pc 6 Name: Protocol Buffers
  /system/sepolicy/private/
mediaserver.te 5 # allocate and use graphic buffers
  /external/v8/src/heap/
array-buffer-tracker.h 29 // allocated memory used as backing store in live array buffers.
45 // Frees all remaining, live or dead, array buffers on a page. Only useful
49 // Processes all array buffers on a given page. |mode| specifies the action
50 // to perform on the buffers. Returns whether the tracker is empty or not.
57 // LocalArrayBufferTracker tracks internalized array buffers.
74 // Frees up array buffers determined by |free_mode|.
78 // Processes buffers one by one. The CallbackResult of the callback decides
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_stream_socket.hpp 214 * @param buffers One or more data buffers to be sent on the socket.
230 * buffers in one go, and how to use it with arrays, boost::array or
234 std::size_t send(const ConstBufferSequence& buffers)
238 this->get_implementation(), buffers, 0, ec);
249 * @param buffers One or more data buffers to be sent on the socket.
267 * buffers in one go, and how to use it with arrays, boost::array or
271 std::size_t send(const ConstBufferSequence& buffers,
276 this->get_implementation(), buffers, flags, ec)
    [all...]
read.hpp 38 * @li The supplied buffers are full. That is, the bytes transferred is equal to
49 * @param buffers One or more buffers into which the data will be read. The sum
61 * buffers in one go, and how to use it with arrays, boost::array or
66 * s, buffers,
70 std::size_t read(SyncReadStream& s, const MutableBufferSequence& buffers);
77 * @li The supplied buffers are full. That is, the bytes transferred is equal to
88 * @param buffers One or more buffers into which the data will be read. The sum
100 * buffers in one go, and how to use it with arrays, boost::array o
    [all...]
write.hpp 37 * @li All of the data in the supplied buffers has been written. That is, the
48 * @param buffers One or more buffers containing the data to be written. The sum
60 * buffers in one go, and how to use it with arrays, boost::array or
65 * s, buffers,
69 std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers);
76 * @li All of the data in the supplied buffers has been written. That is, the
87 * @param buffers One or more buffers containing the data to be written. The sum
99 * buffers in one go, and how to use it with arrays, boost::array o
    [all...]
  /frameworks/native/include/gui/
BufferItemConsumer.h 31 * access to the whole BufferItem entry from BufferQueue. Multiple buffers may
50 // bufferCount parameter specifies how many buffers can be locked for user
70 // of buffers is empty, and INVALID_OPERATION if the maximum number of
71 // buffers is already acquired.
73 // Only a fixed number of buffers can be acquired at a time, determined by
75 // returned by acquireBuffer, then old buffers must be returned to the
76 // queue by calling releaseBuffer before more buffers can be acquired.
84 // only a fixed number of buffers may be acquired at a time, old buffers
85 // must be released by calling releaseBuffer to ensure new buffers can b
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_clear.h 37 * Clear the given buffers to the specified values.
42 struct pipe_framebuffer_state *framebuffer, unsigned buffers,
45 if (buffers & PIPE_CLEAR_COLOR) {
53 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
55 pipe->clear_depth_stencil(pipe, ps, buffers & PIPE_CLEAR_DEPTHSTENCIL,
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
buffer_sequence_adapter.hpp 28 // The maximum number of buffers to support in a single operation.
60 // Helper class to translate buffers into the native buffer representation.
61 template <typename Buffer, typename Buffers>
66 explicit buffer_sequence_adapter(const Buffers& buffer_sequence)
69 typename Buffers::const_iterator iter = buffer_sequence.begin();
70 typename Buffers::const_iterator end = buffer_sequence.end();
79 native_buffer_type* buffers()
94 static bool all_empty(const Buffers& buffer_sequence)
96 typename Buffers::const_iterator iter = buffer_sequence.begin();
97 typename Buffers::const_iterator end = buffer_sequence.end()
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
MemoryDeferredOutputStream.java 16 private final List<byte[]> buffers = Lists.newArrayList(); field in class:MemoryDeferredOutputStream
29 for (byte[] buffer: buffers) {
35 buffers.clear();
41 buffers.add(currentBuffer);
63 buffers.add(currentBuffer);
  /external/volley/src/main/java/com/android/volley/toolbox/
ByteArrayPool.java 27 * supply those buffers to consumers who need to use them for a short period of time and then
28 * dispose of them. Simply creating and disposing such buffers in the conventional manner can
31 * permanently allocated pool of buffers in order to gain heap performance improvements; that is
35 * <code>byte[]</code> buffers to copy data around. In these use cases, often the consumer wants
39 * free to return buffers larger than the requested size. The caller needs to be able to gracefully
40 * deal with getting buffers any size over the minimum.
45 * This class has no special ownership of buffers it creates; the caller is free to take a buffer
50 * This class ensures that the total size of the buffers in its recycling pool never exceeds a
52 * least-recently-used buffers are disposed.
59 /** The total size of the buffers in the pool *
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
Util.java 41 // The number of temp buffers in our pool
44 // Per-thread cache of temporary direct buffers
55 * A simple cache of direct buffers.
58 // the array of buffers
59 private ByteBuffer[] buffers; field in class:Util.BufferCache
61 // the number of buffers in the cache
72 buffers = new ByteBuffer[TEMP_BUF_POOL_SIZE];
83 ByteBuffer[] buffers = this.buffers;
86 ByteBuffer buf = buffers[start]
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_clear.c 39 unsigned buffers,
62 if ((buffers & PIPE_CLEAR_COLOR) && fb->cbufs[0]) {
70 if ((buffers & PIPE_CLEAR_DEPTHSTENCIL) && fb->zsbuf) {
71 if (buffers & PIPE_CLEAR_DEPTH)
75 (buffers & PIPE_CLEAR_STENCIL))
107 svga_clear(struct pipe_context *pipe, unsigned buffers,
114 if (buffers & PIPE_CLEAR_COLOR)
121 ret = try_clear( svga, buffers, color, depth, stencil );
128 ret = try_clear( svga, buffers, color, depth, stencil );
  /hardware/interfaces/graphics/allocator/2.0/default/
Gralloc0Allocator.cpp 72 std::vector<hidl_handle> buffers; local
73 buffers.reserve(count);
75 // allocate the buffers
94 buffers.emplace_back(hidl_handle(tmpBuffer));
97 // return the buffers
100 hidl_buffers.setToExternal(buffers.data(), buffers.size());
104 // free the buffers
105 for (const auto& buffer : buffers) {
  /frameworks/av/media/libstagefright/foundation/
MediaBufferGroup.cpp 30 // MediaBufferGroup may create shared memory buffers at a
39 MediaBufferGroup::MediaBufferGroup(size_t buffers, size_t buffer_size, size_t growthLimit)
42 if (mGrowthLimit > 0 && buffers > mGrowthLimit) {
43 ALOGW("Preallocated buffers %zu > growthLimit %zu, increasing growthLimit",
44 buffers, mGrowthLimit);
45 mGrowthLimit = buffers;
55 size_t total = (augmented_size + alignment - 1) / alignment * alignment * buffers;
58 for (size_t i = 0; i < buffers; ++i) {
61 ALOGW("Only allocated %zu shared buffers of size %zu", i, buffer_size);
72 for (size_t i = 0; i < buffers; ++i)
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoEncoderMPEG4.cpp 81 OMX_BUFFERHEADERTYPE **buffers,
95 LOGV_IF(buffers[INPORT_INDEX]->nFlags & OMX_BUFFERFLAG_EOS,
98 if (!buffers[INPORT_INDEX]->nFilledLen) {
103 inBuf.data = buffers[INPORT_INDEX]->pBuffer + buffers[INPORT_INDEX]->nOffset;
104 inBuf.size = buffers[INPORT_INDEX]->nFilledLen;
107 inBuf.timeStamp = buffers[INPORT_INDEX]->nTimeStamp;
112 buffers[OUTPORT_INDEX]->pBuffer + buffers[OUTPORT_INDEX]->nOffset;
114 outBuf.bufferSize = buffers[OUTPORT_INDEX]->nAllocLen - buffers[OUTPORT_INDEX]->nOffset
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
NativeBuffers.java 31 * Factory for native buffers.
58 NativeBuffer[] buffers = threadLocal.get(); local
59 if (buffers != null) {
61 NativeBuffer buffer = buffers[i];
63 buffers[i] = null;
92 NativeBuffer[] buffers = threadLocal.get(); local
93 if (buffers == null) {
94 buffers = new NativeBuffer[TEMP_BUF_POOL_SIZE];
95 buffers[0] = buffer;
96 threadLocal.set(buffers);
    [all...]
  /docs/source.android.com/src/devices/camera/
camera3_error_stream.jd 40 or the output buffers must not be reported in this case.</li>
41 <li>If the metadata for a capture cannot be produced, but some image buffers were
44 produced or some other buffers were filled, the HAL must call notify() with
49 metadata could not be produced, it should be NULL. If some buffers could not be
64 such a stream has already had its buffers registered, register_stream_buffers()
65 will not be called again for the stream, and buffers from the stream can be
70 then reallocate the stream buffers, and call register_stream_buffers() again
71 before using buffers from that stream in a request.<br/>
74 configure() call by the framework, and all the gralloc buffers for it will be
86 framework and the platform gralloc module to allocate the gralloc buffers for
    [all...]
  /external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
BufferPerformanceBench.java 64 * Each benchmark thread maintains three buffers; a receive buffer, a process buffer
77 * responses are satisfied with precomputed buffers to eliminate GC effects on
85 * buffers can be read from and written to during request/response handling but
100 public void threads1hot(HotBuffers buffers) throws IOException {
101 readWriteRecycle(buffers);
106 public void threads2hot(HotBuffers buffers) throws IOException {
107 readWriteRecycle(buffers);
112 public void threads4hot(HotBuffers buffers) throws IOException {
113 readWriteRecycle(buffers);
118 public void threads8hot(HotBuffers buffers) throws IOException
    [all...]
  /hardware/intel/common/libva/test/basic/
testplan.txt 48 - Create and destroy buffers
54 - Map & unmap buffers
68 - Render single MPEG2 I-frame, split buffers
69 - Slice split over 2 buffers
72 - Render single MPEG2 I-frame, split buffers
73 - Slice split over 3 buffers

Completed in 557 milliseconds

12 3 4 5 6 7 8 91011>>