HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 826 - 850 of 9401) sorted by null

<<31323334353637383940>>

  /external/chromium_org/remoting/client/
frame_producer.h 23 // Adds an image buffer to the pool of pending buffers for subsequent drawing.
24 // Once drawing is completed the buffer will be returned to the consumer via
25 // the FrameConsumer::ApplyBuffer() call. Alternatively an empty buffer could
28 // The passed buffer must be large enough to hold the whole clipping area.
29 virtual void DrawBuffer(webrtc::DesktopFrame* buffer) = 0;
  /external/chromium_org/remoting/protocol/
buffered_socket_writer.h 45 // Puts a new data chunk in the buffer. Returns false and doesn't enqueue
47 bool Write(scoped_refptr<net::IOBufferWithSize> buffer,
50 // Returns current size of the buffer. Can be called on any thread.
53 // Returns number of chunks that are currently in the buffer waiting
76 // must set |*buffer| to NULL if there is nothing left in the queue.
77 virtual void GetNextPacket(net::IOBuffer** buffer, int* size) = 0;
110 virtual void GetNextPacket(net::IOBuffer** buffer, int* size) OVERRIDE;
124 virtual void GetNextPacket(net::IOBuffer** buffer, int* size) OVERRIDE;
  /external/chromium_org/testing/gtest/xcode/Samples/FrameworkSample/
widget.h 53 void GetCharPtrValue(char* buffer, size_t max_size) const;
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBufferList.h 60 size_t find(SourceBuffer* buffer) { return m_list.find(buffer); }
61 bool contains(SourceBuffer* buffer) { return m_list.find(buffer) != kNotFound; }
  /external/chromium_org/third_party/WebKit/Source/wtf/
CryptographicallyRandomNumber.h 42 WTF_EXPORT void cryptographicallyRandomValues(void* buffer, size_t length);
Int16Array.h 74 PassRefPtr<Int16Array> Int16Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
76 return TypedArrayBase<short>::create<Int16Array>(buffer, byteOffset, length);
84 Int16Array::Int16Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
85 : IntegralTypedArrayBase<short>(buffer, byteOffset, length)
Int32Array.h 73 PassRefPtr<Int32Array> Int32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
75 return TypedArrayBase<int>::create<Int32Array>(buffer, byteOffset, length);
83 Int32Array::Int32Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
84 : IntegralTypedArrayBase<int>(buffer, byteOffset, length)
Int8Array.h 75 PassRefPtr<Int8Array> Int8Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
77 return TypedArrayBase<signed char>::create<Int8Array>(buffer, byteOffset, length);
85 Int8Array::Int8Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
86 : IntegralTypedArrayBase<signed char>(buffer, byteOffset, length)
Uint16Array.h 75 PassRefPtr<Uint16Array> Uint16Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
77 return TypedArrayBase<unsigned short>::create<Uint16Array>(buffer, byteOffset, length);
85 Uint16Array::Uint16Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
86 : IntegralTypedArrayBase<unsigned short>(buffer, byteOffset, length)
Uint32Array.h 75 PassRefPtr<Uint32Array> Uint32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
77 return TypedArrayBase<unsigned>::create<Uint32Array>(buffer, byteOffset, length);
85 Uint32Array::Uint32Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
86 : IntegralTypedArrayBase<unsigned>(buffer, byteOffset, length)
Uint8Array.h 75 PassRefPtr<Uint8Array> Uint8Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
77 return TypedArrayBase<unsigned char>::create<Uint8Array>(buffer, byteOffset, length);
85 Uint8Array::Uint8Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
86 : IntegralTypedArrayBase<unsigned char>(buffer, byteOffset, length)
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
VertexArrayImpl.h 13 #include "libGLESv2/Buffer.h"
24 virtual void setElementArrayBuffer(const gl::Buffer *buffer) = 0;
  /external/chromium_org/third_party/brotli/src/brotli/dec/
streams.h 61 const uint8_t* buffer; member in struct:__anon16318
70 BrotliInput BrotliInitMemInput(const uint8_t* buffer, size_t length,
73 /* Output buffer with position. */
75 uint8_t* buffer; member in struct:__anon16319
84 BrotliOutput BrotliInitMemOutput(uint8_t* buffer, size_t length,
  /external/chromium_org/third_party/freetype/src/base/
ftapi.c 73 FT_Byte* buffer,
76 return FT_Stream_Read( stream, buffer, count );
83 FT_Byte* buffer,
86 return FT_Stream_ReadAt( stream, pos, buffer, count );
md5.h 37 unsigned char buffer[64]; member in struct:__anon16428
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape.h 41 hb_buffer_t *buffer,
  /external/chromium_org/third_party/leveldatabase/
chromium_logger.h 29 // We try twice: the first time with a fixed-size stack allocated buffer,
30 // and the second time with a much larger dynamically allocated buffer.
31 char buffer[500]; local
36 bufsize = sizeof(buffer);
37 base = buffer;
70 continue; // Try again with larger buffer
84 if (base != buffer) {
  /external/chromium_org/third_party/libaddressinput/chromium/
canonicalize_string.cc 46 scoped_ptr<uint8_t[]> buffer(new uint8_t[buffer_size]);
47 DCHECK(buffer.get());
49 collator_->getSortKey(icu_str, buffer.get(), buffer_size);
51 return std::string(reinterpret_cast<const char*>(buffer.get()));
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfdec.c 72 int ivf_read_frame(FILE *infile, uint8_t **buffer,
89 uint8_t *new_buffer = realloc(*buffer, 2 * frame_size);
92 *buffer = new_buffer;
95 warn("Failed to allocate compressed data buffer\n");
102 if (fread(*buffer, 1, frame_size, infile) != frame_size) {
video_reader.c 24 uint8_t *buffer; member in struct:VpxVideoReaderStruct
62 free(reader->buffer);
68 return !ivf_read_frame(reader->file, &reader->buffer, &reader->frame_size,
77 return reader->buffer;
video_writer.h 40 const uint8_t *buffer, size_t size,
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvreader.hpp 26 virtual int Read(long long position, long length, unsigned char* buffer);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_idct.h 102 /* init a buffer assosiated with agiven idct instance */
104 vl_idct_init_buffer(struct vl_idct *idct, struct vl_idct_buffer *buffer,
108 /* cleanup a buffer of an idct instance */
110 vl_idct_cleanup_buffer(struct vl_idct_buffer *buffer);
112 /* flush the buffer and start rendering, vertex buffers needs to be setup before calling this */
114 vl_idct_flush(struct vl_idct *idct, struct vl_idct_buffer *buffer, unsigned num_verts);
117 vl_idct_prepare_stage2(struct vl_idct *idct, struct vl_idct_buffer *buffer);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_state_so.c 39 struct pipe_resource *buffer,
48 pipe_resource_reference(&t->target.buffer, buffer);
58 pipe_resource_reference(&target->buffer, NULL);
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_video_decoder.h 116 * destroy this video buffer
118 void (*destroy)(struct pipe_video_buffer *buffer);
123 struct pipe_sampler_view **(*get_sampler_view_planes)(struct pipe_video_buffer *buffer);
128 struct pipe_sampler_view **(*get_sampler_view_components)(struct pipe_video_buffer *buffer);
133 struct pipe_surface **(*get_surfaces)(struct pipe_video_buffer *buffer);

Completed in 990 milliseconds

<<31323334353637383940>>