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

<<51525354555657585960>>

  /external/chromium_org/media/filters/
ffmpeg_audio_decoder.h 43 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
52 // decode input buffers, or is decoding an input buffer.
53 // - kDecodeFinished: EOS buffer received, codec flushed and decode finished.
62 // When buffer->end_of_stream() is true and avcodec_decode_audio4()
78 // Handles decoding an unencrypted encoded buffer.
79 void DecodeBuffer(const scoped_refptr<DecoderBuffer>& buffer,
81 bool FFmpegDecode(const scoped_refptr<DecoderBuffer>& buffer,
vpx_video_decoder.h 40 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
59 void DecodeBuffer(const scoped_refptr<DecoderBuffer>& buffer);
60 bool VpxDecode(const scoped_refptr<DecoderBuffer>& buffer,
  /external/chromium_org/mojo/services/public/cpp/network/
web_socket_read_queue.cc 36 const void* buffer = NULL; local
39 handle_, &buffer, &bytes_read, MOJO_READ_DATA_FLAG_ALL_OR_NONE);
52 op->callback_.Run(static_cast<const char*>(buffer)); // may delete |this|
  /external/chromium_org/net/disk_cache/blockfile/
file_ios.cc 189 bool File::Read(void* buffer, size_t buffer_len, size_t offset) {
196 int ret = base_file_.Read(offset, static_cast<char*>(buffer), buffer_len);
200 bool File::Write(const void* buffer, size_t buffer_len, size_t offset) {
207 int ret = base_file_.Write(offset, static_cast<const char*>(buffer),
215 bool File::Read(void* buffer, size_t buffer_len, size_t offset,
221 return Read(buffer, buffer_len, offset);
227 GetFileInFlightIO()->PostRead(this, buffer, buffer_len, offset, callback);
233 bool File::Write(const void* buffer, size_t buffer_len, size_t offset,
239 return Write(buffer, buffer_len, offset);
242 return AsyncWrite(buffer, buffer_len, offset, callback, completed)
    [all...]
file_win.cc 112 bool File::Read(void* buffer, size_t buffer_len, size_t offset) {
117 int ret = sync_base_file_.Read(offset, static_cast<char*>(buffer),
122 bool File::Write(const void* buffer, size_t buffer_len, size_t offset) {
127 int ret = sync_base_file_.Write(offset, static_cast<const char*>(buffer),
135 bool File::Read(void* buffer, size_t buffer_len, size_t offset,
141 return Read(buffer, buffer_len, offset);
151 if (!ReadFile(base_file_.GetPlatformFile(), buffer, size, &actual,
168 bool File::Write(const void* buffer, size_t buffer_len, size_t offset,
174 return Write(buffer, buffer_len, offset);
177 return AsyncWrite(buffer, buffer_len, offset, callback, completed)
    [all...]
  /external/chromium_org/net/spdy/
hpack_output_stream.cc 26 // Buffer ends on a byte boundary.
30 // Buffer does not end on a byte boundary but the given bits fit
34 // Buffer does not end on a byte boundary and the given bits do
46 void HpackOutputStream::AppendBytes(StringPiece buffer) {
48 buffer_.append(buffer.data(), buffer.size());
69 // This must hold, since all public functions cause the buffer to
  /external/chromium_org/ppapi/thunk/
ppb_file_io_api.h 32 char* buffer,
37 PP_ArrayOutput* buffer,
40 const char* buffer,
  /external/chromium_org/printing/
pdf_metafile_cg_mac_unittest.cc 42 std::vector<char> buffer(size, 0);
43 pdf.GetData(&buffer.front(), size);
47 EXPECT_TRUE(pdf2.InitFromData(&buffer.front(), size));
  /external/chromium_org/remoting/client/jni/
jni_frame_consumer.h 30 // FrameConsumer implementation that draws onto a JNI direct byte buffer.
45 webrtc::DesktopFrame* buffer,
48 virtual void ReturnBuffer(webrtc::DesktopFrame* buffer) OVERRIDE;
54 // Allocates a new buffer of |source_size|, informs Java about it, and tells
58 // Frees a frame buffer previously allocated by AllocateBuffer.
59 void FreeBuffer(webrtc::DesktopFrame* buffer);
  /external/chromium_org/sandbox/win/tests/common/
test_utils.cc 40 char buffer[2000] = {0}; local
43 REPARSE_DATA_BUFFER* data = reinterpret_cast<REPARSE_DATA_BUFFER*>(buffer);
53 if (!DeviceIoControl(source, FSCTL_SET_REPARSE_POINT, &buffer, data_size,
  /external/chromium_org/sandbox/win/wow_helper/
wow_helper.cc 21 // ntdll.dll. 'thunk' is the buffer on the address space of process 'child',
78 DWORD buffer = wcstoul(next, NULL, 0);
79 if (!buffer)
82 void* thunk = reinterpret_cast<void*>(static_cast<ULONG_PTR>(buffer));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontData.h 47 virtual bool fillSVGGlyphPage(GlyphPage*, unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData*) const OVERRIDE;
63 bool fillBMPGlyphs(SVGFontElement*, GlyphPage* , unsigned offset, unsigned length, UChar* buffer, const SimpleFontData*) const;
64 bool fillNonBMPGlyphs(SVGFontElement*, GlyphPage* , unsigned offset, unsigned length, UChar* buffer, const SimpleFontData*) const;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontPlatformDataSkia.cpp 77 RefPtr<SharedBuffer> buffer; local
84 buffer = SharedBuffer::adoptVector(tableBuffer);
86 return buffer.release();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ThreadSafeDataTransportTest.cpp 42 RefPtr<SharedBuffer> buffer = SharedBuffer::create(testString, sizeof(testString)); local
44 transport.setData(buffer.get(), false);
52 transport.setData(buffer.get(), false);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
CString.h 45 // CStringBuffers are allocated out of the WTF buffer partition.
64 CString(CStringBuffer* buffer) : m_buffer(buffer) { }
80 CStringBuffer* buffer() const { return m_buffer.get(); } function in class:WTF::CString
  /external/chromium_org/third_party/icu/source/io/unicode/
ustdio.h 47 and make sure that a character that is contained across buffer boundries
63 internal conversion buffer. For example, read the buffer size # of
65 at the end of the last buffer.
70 order to prevent buffer overruns. (e.g. %256.256d).
76 better testing. This prevents buffer overflows.
759 * @param buffer The Unicode String to which to write.
762 * @return The number of Unicode code units written to <TT>buffer</TT>. This
767 u_sprintf(UChar *buffer,
774 * units of data are stored in <TT>buffer</TT> and a negative value i
    [all...]
  /external/chromium_org/third_party/icu/source/samples/csdet/
csdet.c 18 static char buffer[BUFFER_SIZE]; local
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
52 ucsdet_setText(csd, buffer, inputLength, &status);
  /external/chromium_org/third_party/libjpeg_turbo/
jdpostct.c 24 /* Private buffer controller object */
29 /* Color quantization source buffer: this holds output data from
31 * For two-pass color quantization, we need a full-image buffer;
32 * for one-pass operation, a strip buffer is sufficient.
35 JSAMPARRAY buffer; /* strip buffer, or current strip of virtual */ member in struct:__anon17375
36 JDIMENSION strip_height; /* buffer size in rows */
84 * allocate a strip buffer. Use the virtual-array buffer as workspace.
86 if (post->buffer == NULL)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvwriter.cpp 25 int32 MkvWriter::Write(const void* buffer, uint32 length) {
32 if (buffer == NULL)
35 const size_t bytes_written = fwrite(buffer, 1, length, file_);
  /external/chromium_org/third_party/mesa/src/docs/
MESA_copy_sub_buffer.spec 33 of the back color buffer to the front color buffer. This can be
35 when the back color buffer cannot be damaged by other windows.
63 may be used to copy a rectangular region of the back color buffer to
64 the front color buffer. This can be used to quickly repaint 3D windows
65 in response to expose events when the back color buffer cannot be
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_pool.c 31 * Batch buffer pool management.
69 struct pb_buffer *buffer; member in struct:pool_pb_manager
150 return pb_validate(pool->buffer, vl, flags);
160 pb_fence(pool->buffer, fence);
171 pb_get_base_buffer(pool->buffer, base_buf, offset);
203 debug_printf("warning: out of fixed size buffer objects\n");
211 debug_printf("error: fixed size buffer pool corruption\n");
245 pb_unmap(pool->buffer);
246 pb_reference(&pool->buffer, NULL);
284 pool->buffer = provider->create_buffer(provider, numBufs*bufSize, desc);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_draw_arrays.c 82 buf = softpipe_resource(sp->vertex_buffer[i].buffer)->data;
86 /* Map index buffer, if present */
90 mapped_indices = softpipe_resource(sp->index_buffer.buffer)->data;
99 void *buf = softpipe_resource(sp->so_targets[i]->target.buffer)->data;
120 * TODO: Flush only when a user vertex/index buffer is present
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.cc 63 << " of the Protocol Buffer runtime library, but the installed version "
74 << VersionString(headerVersion) << " of the Protocol Buffer runtime "
91 char buffer[128]; local
92 snprintf(buffer, sizeof(buffer), "%d.%d.%d", major, minor, micro);
95 buffer[sizeof(buffer)-1] = '\0';
97 return buffer;
160 char buffer[128]; \
161 snprintf(buffer, sizeof(buffer), FORMAT, value);
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
ClockFaceView.cpp 94 Dot2DPathEffect(SkReadBuffer& buffer) : INHERITED(buffer) {
95 fRadius = buffer.readScalar();
100 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE {
101 buffer.writeMatrix(this->getMatrix());
102 buffer.writeScalar(fRadius);
112 SkFlattenable* Dot2DPathEffect::CreateProc(SkReadBuffer& buffer) {
114 buffer.readMatrix(&matrix);
115 return SkNEW_ARGS(Dot2DPathEffect, (buffer.readScalar(), matrix, NULL));
131 InverseFillPE(SkReadBuffer& buffer) : INHERITED(buffer) {
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkComposeImageFilter.cpp 39 SkFlattenable* SkComposeImageFilter::CreateProc(SkReadBuffer& buffer) {
45 SkComposeImageFilter::SkComposeImageFilter(SkReadBuffer& buffer)
46 : INHERITED(2, buffer) {

Completed in 2162 milliseconds

<<51525354555657585960>>