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

<<81828384858687888990>>

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLDrawBuffers.cpp 72 m_context->synthesizeGLError(GL_INVALID_VALUE, "drawBuffersWEBGL", "more than one buffer");
115 const unsigned char* buffer = 0; // Chromium doesn't allow init data for depth/stencil tetxures. local
125 context->texImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_STENCIL_OES, 1, 1, 0, GL_DEPTH_STENCIL_OES, GL_UNSIGNED_INT_24_8_OES, buffer);
131 context->texImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, 1, 1, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, buffer);
141 context->texImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
ConvolverNode.h 57 AudioBuffer* buffer();
  /external/chromium_org/third_party/WebKit/Source/platform/
TestingPlatformSupport.cpp 83 void TestingPlatformSupport::cryptographicallyRandomValues(unsigned char* buffer, size_t length)
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCacheTest.cpp 19 virtual void cryptographicallyRandomValues(unsigned char* buffer, size_t length) OVERRIDE { }
  /external/chromium_org/third_party/WebKit/public/platform/
WebClipboard.h 56 enum Buffer {
65 virtual uint64_t sequenceNumber(Buffer) { return 0; }
67 virtual bool isFormatAvailable(Format, Buffer) { return false; }
70 Buffer, bool* containsFilenames) { return WebVector<WebString>(); }
71 virtual WebString readPlainText(Buffer) { return WebString(); }
78 Buffer buffer, WebURL* pageURL, unsigned* fragmentStart,
80 virtual WebData readImage(Buffer) { return WebData(); }
82 Buffer, const WebString& type) { return WebString(); }
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_system.h 53 int Read(void* buffer, size_t buffer_size);
  /external/chromium_org/third_party/angle/src/libGLESv2/
VertexArray.h 8 // The buffer objects that are to be used by the vertex stage of the GL are collected
30 class Buffer;
44 void setAttributeState(unsigned int attributeIndex, gl::Buffer *boundBuffer, GLint size, GLenum type,
48 Buffer *getElementArrayBuffer() const { return mElementArrayBuffer.get(); }
49 void setElementArrayBuffer(Buffer *buffer);
58 BindingPointer<Buffer> mElementArrayBuffer;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
VertexBuffer11.cpp 13 #include "libGLESv2/Buffer.h"
52 return gl::Error(GL_OUT_OF_MEMORY, "Failed to allocate internal vertex buffer of size, %lu.", size);
73 return gl::Error(GL_OUT_OF_MEMORY, "Internal vertex buffer is not initialized.");
76 gl::Buffer *buffer = attrib.buffer.get(); local
84 return gl::Error(GL_OUT_OF_MEMORY, "Failed to map internal vertex buffer, HRESULT: 0x%08x.", result);
92 if (buffer)
94 Buffer11 *storage = Buffer11::makeBuffer11(buffer->getImplementation());
152 return gl::Error(GL_OUT_OF_MEMORY, "New vertex buffer size would result in an overflow.")
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Buffer9.h 26 static Buffer9 *makeBuffer9(BufferImpl *buffer);
  /external/chromium_org/third_party/brotli/src/woff2/
font.h 42 // Buffer used to mutate the data before writing out.
43 std::vector<uint8_t> buffer; member in struct:woff2::Font::Table
52 // buffer overflow. The font is valid only so long the input data pointer is
59 // Writes the font into the specified dst buffer. The dst_size should be the
60 // same as returned by FontFileSize(). Returns false upon buffer overflow (which
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
compact_lang_det_impl.h 62 of every full 4KB buffer. If it compresses very well (say 3:1) or has
117 // We distinguish between bytes of the raw input buffer and bytes of non-tag
148 const char* buffer,
166 // of the input buffer.
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Scanners.pxd 10 cdef public unicode buffer
39 trace=bint, discard=long, data=unicode, buffer=unicode)
  /external/chromium_org/third_party/freetype/include/freetype/
ftsystem.h 232 * buffer ::
233 * The address of the read buffer.
250 unsigned char* buffer,
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svsfnt.h 43 FT_Byte* buffer,
  /external/chromium_org/third_party/freetype/src/cff/
cf2stack.h 65 CF2_StackNumber buffer[CF2_OPERAND_STACK_SIZE]; member in struct:CF2_StackRec_
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-shape-plan.h 79 hb_buffer_t *buffer,
hb-uniscribe.cc 591 hb_buffer_t *buffer,
730 hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size);
743 ALLOCATE_ARRAY (WCHAR, pchars, buffer->len * 2);
746 for (unsigned int i = 0; i < buffer->len; i++)
748 hb_codepoint_t c = buffer->info[i].codepoint;
749 buffer->info[i].utf16_index() = chars_len;
767 for (unsigned int i = 0; i < buffer->len; i++)
769 hb_codepoint_t c = buffer->info[i].codepoint;
770 unsigned int cluster = buffer->info[i].cluster;
794 * implementations of Shape and Place functions use that buffer
    [all...]
  /external/chromium_org/third_party/icu/source/io/
uprintf.c 163 UChar buffer[UFMT_DEFAULT_BUFFER_SIZE]; local
167 if (size >= MAX_UCHAR_BUFFER_SIZE(buffer)) {
174 pattern = buffer;
182 if (pattern != buffer) {
  /external/chromium_org/third_party/icu/source/tools/toolutil/
filestrm.c 151 T_FileStream_readLine(FileStream* fileStream, char* buffer, int32_t length)
153 return fgets(buffer, length, (FILE*)fileStream);
157 T_FileStream_writeLine(FileStream* fileStream, const char* buffer)
159 return fputs(buffer, (FILE*)fileStream);
  /external/chromium_org/third_party/libjpeg_turbo/
jdcoefct.c 10 * This file contains the coefficient buffer controller for decompression.
12 * The coefficient buffer lies between entropy decoding and inverse-DCT steps.
29 /* Private buffer controller object */
42 /* In single-pass modes, it's sufficient to buffer just one MCU.
47 * buffer is necessary.)
145 * Input and output must run in lockstep since we have only a one-MCU buffer.
170 /* Try to fetch an MCU. Entropy decoder expects buffer to be zeroed. */
243 * Consume input data and store it in the full-image coefficient buffer.
256 JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN]; local
263 buffer[ci] = (*cinfo->mem->access_virt_barray
327 JBLOCKARRAY buffer; local
473 JBLOCKARRAY buffer; local
732 JBLOCKROW buffer; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglarray.h 74 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_screen.c 34 static char buffer[128]; local
36 util_snprintf(buffer, sizeof(buffer), "NV%02X", dev->chipset);
37 return buffer;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_draw.h 81 struct pipe_resource *buffer );
svga_pipe_constants.c 52 struct pipe_resource *buf = cb ? cb->buffer : NULL;
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_state.h 192 /** stride for an entire vertex for each buffer in dwords */
197 * Selected components are tightly packed into the output buffer.
204 unsigned dst_offset:16; /**< offset into the buffer in dwords */
219 unsigned writemask:1; /**< allow depth buffer writes? */
297 struct pipe_surface *zsbuf; /**< Z/stencil buffer */
398 * A memory object/resource such as a vertex buffer or texture.
438 * A vertex buffer. Typically, all the vertex data/attributes for
439 * drawing something will be in one buffer. But it's also possible, for
440 * example, to put colors in one buffer and texcoords in another.
445 unsigned buffer_offset; /**< offset to start of data in buffer, in bytes *
446 struct pipe_resource *buffer; \/**< the actual buffer *\/ member in struct:pipe_vertex_buffer
456 struct pipe_resource *buffer; \/**< the actual buffer *\/ member in struct:pipe_constant_buffer
479 struct pipe_resource *buffer; \/**< the output buffer *\/ member in struct:pipe_stream_output_target
517 struct pipe_resource *buffer; \/**< the actual buffer *\/ member in struct:pipe_index_buffer
    [all...]

Completed in 1455 milliseconds

<<81828384858687888990>>