| /external/chromium_org/third_party/libvpx/source/libvpx/ |
| video_writer.c | 71 const uint8_t *buffer, size_t size, 74 if (fwrite(buffer, 1, size, writer->file) != size)
|
| /external/chromium_org/third_party/libwebp/dec/ |
| webpi.h | 10 // Internal header: WebP decoding parameters and custom IO on buffer 32 WebPDecBuffer* output; // output buffer. 55 const uint8_t* data; // input buffer 56 size_t data_size; // input buffer size 87 // Internal functions regarding WebPDecBuffer memory (in buffer.c). 90 // Prepare 'buffer' with the requested initial dimensions width/height. 91 // If no external storage is supplied, initializes buffer by allocating output 96 // output buffer. This takes cropping / scaling / rotation into account. 97 // Also incorporates the options->flip flag to flip the buffer parameters if 101 WebPDecBuffer* const buffer); [all...] |
| /external/chromium_org/third_party/libxml/src/include/libxml/ |
| xmlIO.h | 47 * @buffer: the buffer to store data read 48 * @len: the length of the buffer in bytes 54 typedef int (XMLCALL *xmlInputReadCallback) (void * context, char * buffer, int len); 93 * @buffer: the buffer of data to write 94 * @len: the length of the buffer in bytes 100 typedef int (XMLCALL *xmlOutputWriteCallback) (void * context, const char * buffer, 132 xmlBufferPtr buffer; /* Local buffer encoded in UTF-8 * member in struct:_xmlParserInputBuffer 148 xmlBufferPtr buffer; \/* Local buffer encoded in UTF-8 or ISOLatin *\/ member in struct:_xmlOutputBuffer [all...] |
| /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/ |
| pb_buffer_fenced.c | 70 * Maximum buffer size that can be safely allocated. 86 * Fenced buffer list. 105 * Fenced buffer. 107 * Wrapper around a pipe buffer which adds fencing and reference counting. 125 * Buffer with storage. 127 struct pb_buffer *buffer; member in struct:fenced_buffer 133 * store the buffer. 139 * buffer usage. 191 * Dump the fenced buffer list. 204 "buffer", "size", "refcount", "storage", "fence", "signalled") [all...] |
| /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
| i915_batchbuffer.h | 96 struct i915_winsys_buffer *buffer, 100 return batch->iws->batchbuffer_reloc(batch, buffer, usage, offset, fenced);
|
| /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
| lp_draw_arrays.c | 72 buf = llvmpipe_resource_data(lp->vertex_buffer[i].buffer); 76 /* Map index buffer, if present */ 80 mapped_indices = llvmpipe_resource_data(lp->index_buffer.buffer); 106 * TODO: Flush only when a user vertex/index buffer is present
|
| /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/ |
| xorg_renderer.h | 29 float buffer[BUF_SIZE]; member in struct:xorg_renderer 52 const float *buffer,
|
| /external/chromium_org/third_party/mesa/src/src/mesa/main/ |
| framebuffer.h | 48 _mesa_destroy_framebuffer(struct gl_framebuffer *buffer); 51 _mesa_free_framebuffer_data(struct gl_framebuffer *buffer);
|
| /external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/ |
| AndroidPathRenderer.h | 47 static void cleanup(void* buffer) { 48 delete[] (TYPE*)buffer;
|
| /external/chromium_org/third_party/skia/include/gpu/ |
| GrRenderTarget.h | 18 * GrRenderTarget represents a 2D buffer of pixels that can be rendered to. 48 void* buffer, 54 const void* buffer, 60 * If this RT is multisampled, this is the multisample buffer 66 * If this RT is multisampled, this is the buffer it is resolved to.
|
| GrSurface.h | 98 * @param config the pixel config of the destination buffer 99 * @param buffer memory to read the rectangle into. 109 void* buffer, 114 * Copy the src pixels [buffer, rowbytes, pixelconfig] into the surface at the specified 120 * @param config the pixel config of the source buffer 121 * @param buffer memory to read the rectangle from. 128 const void* buffer,
|
| /external/chromium_org/third_party/skia/src/core/ |
| SkXfermode_proccoeff.h | 47 SkProcCoeffXfermode(SkReadBuffer& buffer); 50 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
|
| /external/chromium_org/third_party/skia/src/effects/ |
| SkXfermodeImageFilter.cpp | 36 SkXfermodeImageFilter::SkXfermodeImageFilter(SkReadBuffer& buffer) 37 : INHERITED(2, buffer) { 38 fMode = buffer.readXfermode(); 42 SkFlattenable* SkXfermodeImageFilter::CreateProc(SkReadBuffer& buffer) { 44 SkAutoTUnref<SkXfermode> mode(buffer.readXfermode()); 48 void SkXfermodeImageFilter::flatten(SkWriteBuffer& buffer) const { 49 this->INHERITED::flatten(buffer); 50 buffer.writeFlattenable(fMode);
|
| /external/chromium_org/third_party/skia/src/effects/gradients/ |
| SkTwoPointRadialGradient.h | 47 SkTwoPointRadialGradient(SkReadBuffer& buffer); 48 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
|
| /external/chromium_org/third_party/skia/src/utils/ |
| SkParsePath.cpp | 191 char buffer[64]; local 193 int len = _snprintf(buffer, sizeof(buffer), "%g", value); 195 int len = snprintf(buffer, sizeof(buffer), "%g", value); 197 char* stop = buffer + len; 198 stream->write(buffer, stop - buffer);
|
| /external/chromium_org/third_party/skia/src/utils/ios/ |
| SkOSFile_iOS.mm | 69 size_t sk_fread(void* buffer, size_t byteCount, SkFILE* rec) { 70 if (NULL == buffer) { 77 memcpy(buffer, (char*)[rec->fData bytes] + rec->fOffset, byteCount); 84 size_t sk_fwrite(const void* buffer, size_t byteCount, SkFILE* f) {
|
| /external/chromium_org/third_party/skia/src/utils/mac/ |
| SkStream_mac.cpp | 20 static size_t get_bytes_proc(void* info, void* buffer, size_t bytes) { 22 return ((SkStream*)info)->read(buffer, bytes);
|
| /external/chromium_org/third_party/skia/tests/ |
| FlatDataTest.cpp | 20 static void Flatten(SkWriteBuffer& buffer, const SkFlattenable& flattenable) { 21 buffer.writeFlattenable(&flattenable);
|
| /external/chromium_org/third_party/webrtc/common_video/interface/ |
| texture_video_frame.h | 54 virtual uint8_t* buffer(PlaneType type) OVERRIDE; 55 virtual const uint8_t* buffer(PlaneType type) const OVERRIDE;
|
| /external/chromium_org/third_party/webrtc/common_video/ |
| plane.cc | 64 int Plane::Copy(int size, int stride, const uint8_t* buffer) { 67 memcpy(buffer_.get(), buffer, size);
|
| texture_video_frame.cc | 69 uint8_t* TextureVideoFrame::buffer(PlaneType type) { function in class:webrtc::TextureVideoFrame 74 const uint8_t* TextureVideoFrame::buffer(PlaneType type) const { function in class:webrtc::TextureVideoFrame
|
| /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/i420/main/interface/ |
| i420.h | 82 virtual int CodecConfigParameters(uint8_t* /*buffer*/, 88 static uint8_t* InsertHeader(uint8_t* buffer, uint16_t width, 110 virtual int SetCodecConfigParameters(const uint8_t* /*buffer*/, 155 static const uint8_t* ExtractHeader(const uint8_t* buffer,
|
| /external/chromium_org/ui/gl/ |
| gl_image_egl.cc | 20 EGLClientBuffer buffer, 26 buffer,
|
| /external/chromium_org/v8/test/cctest/ |
| test-javascript-arm64.cc | 132 char buffer[256]; local 133 snprintf(buffer, sizeof(buffer), 139 Local<Value> result = CompileRun(buffer); 148 char buffer[256]; local 149 snprintf(buffer, sizeof(buffer), 156 Local<Value> result = CompileRun(buffer);
|
| test-utils.cc | 86 Vector<char> buffer = Vector<char>::New(i + 1); local 87 buffer[i] = kMarker; 88 int n = SNPrintF(Vector<char>(buffer.start(), i), "%s", s); 91 CHECK_EQ(0, strncmp(buffer.start(), s, i - 1)); 92 CHECK_EQ(kMarker, buffer[i]); 94 CHECK_EQ(i - 1, StrLength(buffer.start())); 96 CHECK_EQ(length, StrLength(buffer.start())); 98 buffer.Dispose();
|