HomeSort by relevance Sort by last modified time
    Searched full:buffers (Results 226 - 250 of 8463) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/include/utils/
SkFrontBufferedStream.h 14 * Specialized stream that buffers the first X bytes of a stream,
25 * Creates a new stream that wraps and buffers an SkStream.
  /external/skqp/include/utils/
SkFrontBufferedStream.h 14 * Specialized stream that buffers the first X bytes of a stream,
25 * Creates a new stream that wraps and buffers an SkStream.
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_executable.h 93 // Allocate buffers required for execution and assign them to the elements of
94 // "buffers". "buffers" should be sized to the number of buffers in buffer
100 std::vector<perftools::gputools::DeviceMemoryBase>* buffers);
103 // arguments using the supplied buffers.
108 buffers,
130 // Buffer assignment for the buffers we need to allocate.
parallel_cpu_executable.h 93 // Allocate buffers required for execution and assign them to the elements of
94 // "buffers". "buffers" should be sized to the number of buffers in buffer
100 std::vector<perftools::gputools::DeviceMemoryBase>* buffers);
103 // computation with the given arguments using the supplied buffers.
108 buffers,
119 // Buffer assignment for the buffers we need to allocate.
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
gpu_constants.h 24 // Minimum alignment of cudaMalloc. We require that buffers created by our
25 // DeviceMemoryAllocator, and all input/output buffers, have this alignment.
  /external/webrtc/webrtc/base/
bufferqueue.h 28 // Return number of queued buffers.
31 // ReadFront will only read one buffer at a time and will truncate buffers
  /external/webrtc/webrtc/
video_frame.h 33 // CreateEmptyFrame: Sets frame dimensions and allocates buffers based
35 // If required size is bigger than the allocated one, new buffers of adequate
44 // CreateFrame: Sets the frame's members and buffers. If required size is
45 // bigger than allocated one, new buffers of adequate size will be allocated.
67 // CreateFrame: Sets the frame's members and buffers. If required size is
68 // bigger than allocated one, new buffers of adequate size will be allocated.
77 // buffers of adequate size will be allocated.
142 // Return true if underlying plane buffers are of zero size, false if not.
  /frameworks/av/media/libaaudio/src/utility/
FixedBlockReader.h 27 * This can be used to convert a pull data flow from fixed sized buffers to variable sized buffers.
FixedBlockWriter.h 25 * This can be used to convert a push data flow from variable sized buffers to fixed sized buffers.
  /frameworks/av/media/libstagefright/filters/
GraphicBufferListener.h 38 // Returns the handle to the producer side of the BufferQueue. Buffers
60 // the buffers queued by the producer.
  /frameworks/av/services/camera/libcameraservice/gui/
RingBufferConsumer.h 37 * When new buffers are produced, the oldest non-pinned buffer item is immediately
47 * - If all the buffers get filled or pinned then there will be no empty
48 * buffers left, so the producer will block on dequeue.
61 // bufferCount parameter specifies how many buffers can be pinned for user
72 // setDefaultBufferSize is used to set the size of buffers returned by
156 // Release all the non-pinned buffers in the ring buffer
171 // if all the buffers were pinned.
180 // List of acquired buffers in our ring buffer
  /frameworks/native/libs/gui/include/gui/
StreamSplitter.h 44 // before queueing any buffers to the input.
54 // connects to outputQueue as a CPU producer, and any buffers queued
56 // outputs are added before any buffers are queued on the input. If any
74 // can block if there are too many outstanding buffers. If it blocks, it
80 // We don't care about released buffers because we detach each buffer as
103 // buffers so they can continue operating until they run out of buffers to
165 // has been abandoned, it will continue to detach buffers from other
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Pipeline.java 34 * The pipline uses this stage to setup buffers it needs
46 * This stage converts triangles into buffers used in the raycast
  /hardware/interfaces/confirmationui/1.0/default/
PlatformSpecifics.cpp 40 const support::auth_token_key_t& key, std::initializer_list<support::ByteBufferProxy> buffers) {
46 for (auto& buffer : buffers) {
  /libcore/dalvik/src/main/java/dalvik/system/
InMemoryDexClassLoader.java 28 * Create an in-memory DEX class loader with the given dex buffers.
30 * @param dexBuffers array of buffers containing DEX files between
  /libcore/ojluni/src/main/java/java/nio/channels/
ScatteringByteChannel.java 33 * A channel that can read bytes into a sequence of buffers.
36 * sequence of bytes into one or more of a given sequence of buffers.
55 * given buffers.
74 * is transferred into the given buffers. As many bytes as possible are
85 * The buffers into which bytes are to be transferred
93 * The maximum number of buffers to be accessed; must be
127 * Reads a sequence of bytes from this channel into the given buffers.
136 * The buffers into which bytes are to be transferred
  /external/golang-protobuf/
README.md 1 # Go support for Protocol Buffers
11 This software implements Go bindings for protocol buffers. For
12 information about protocol buffers themselves, see
13 https://developers.google.com/protocol-buffers/
18 - Install the standard C++ implementation of protocol buffers from
19 https://developers.google.com/protocol-buffers/
34 protocol buffers; and a library that implements run-time support for
36 buffers.
38 There is support for gRPC in Go using protocol buffers.
44 ## Using protocol buffers with Go #
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 93 // Check that both direct and non-direct buffers work.
95 ByteBuffer[] buffers = new ByteBuffer[] { ByteBuffer.allocateDirect(4), ByteBuffer.allocate(4) }; local
96 assertEquals(8, fc.read(buffers));
98 assertEquals(8, buffers[0].limit() + buffers[1].limit());
100 buffers[0].flip();
101 buffers[0].get(bytes);
103 buffers[1].flip();
104 buffers[1].get(bytes);
111 // Check that both direct and non-direct buffers work
112 ByteBuffer[] buffers = new ByteBuffer[] { ByteBuffer.allocateDirect(4), ByteBuffer.allocate(4) }; local
    [all...]
  /device/google/cuttlefish/shared/config/
media_codecs.xml 53 <Quirk name="output-buffers-are-unreadable" />
60 of input buffers using the OMX_UseBuffer(...) API but instead requires
65 of output buffers using the OMX_UseBuffer(...) API but instead requires
68 "output-buffers-are-unreadable"
69 must be advertised if the emitted output buffers of a decoder component
  /device/google/cuttlefish_common/guest/hals/camera/
media_codecs.xml 50 <Quirk name="output-buffers-are-unreadable" />
57 of input buffers using the OMX_UseBuffer(...) API but instead requires
62 of output buffers using the OMX_UseBuffer(...) API but instead requires
65 "output-buffers-are-unreadable"
66 must be advertised if the emitted output buffers of a decoder component
  /external/mesa3d/src/glx/
dri2.c 415 DRI2Buffer *buffers; local
442 buffers = malloc(rep.count * sizeof buffers[0]);
443 if (buffers == NULL) {
452 buffers[i].attachment = repBuffer.attachment;
453 buffers[i].name = repBuffer.name;
454 buffers[i].pitch = repBuffer.pitch;
455 buffers[i].cpp = repBuffer.cpp;
456 buffers[i].flags = repBuffer.flags;
462 return buffers;
474 DRI2Buffer *buffers; local
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_recv_op.hpp 33 socket_ops::state_type state, const MutableBufferSequence& buffers,
38 buffers_(buffers),
52 bufs.buffers(), bufs.count(), o->flags_,
72 socket_ops::state_type state, const MutableBufferSequence& buffers,
75 buffers, flags, &reactive_socket_recv_op::do_complete),
reactive_socket_recvfrom_op.hpp 33 const MutableBufferSequence& buffers, Endpoint& endpoint,
38 buffers_(buffers),
54 bufs.buffers(), bufs.count(), o->flags_,
80 const MutableBufferSequence& buffers, Endpoint& endpoint,
83 socket, protocol_type, buffers, endpoint, flags,
reactive_socket_recvmsg_op.hpp 34 const MutableBufferSequence& buffers, socket_base::message_flags in_flags,
38 buffers_(buffers),
53 bufs.buffers(), bufs.count(),
73 const MutableBufferSequence& buffers, socket_base::message_flags in_flags,
75 : reactive_socket_recvmsg_op_base<MutableBufferSequence>(socket, buffers,
reactive_socket_sendto_op.hpp 33 const ConstBufferSequence& buffers, const Endpoint& endpoint,
37 buffers_(buffers),
52 bufs.buffers(), bufs.count(), o->flags_,
72 const ConstBufferSequence& buffers, const Endpoint& endpoint,
75 buffers, endpoint, flags, &reactive_socket_sendto_op::do_complete),

Completed in 1856 milliseconds

1 2 3 4 5 6 7 8 91011>>