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

<<11121314151617181920>>

  /external/chromium_org/base/allocator/
unittest_utils.cc 10 inline int snprintf(char* buffer, size_t count, const char* format, ...) {
14 result = _vsnprintf(buffer, count, format, args);
  /external/chromium_org/net/base/
test_data_stream.h 21 // Fill |buffer| with |length| bytes of data from the stream.
22 void GetBytes(char* buffer, int length);
24 // Verify that |buffer| contains the expected next |length| bytes from the
26 bool VerifyBytes(const char *buffer, int length);
33 // index and fill the buffer.
36 // Consume data from the spill buffer.
  /external/chromium_org/net/spdy/
spdy_buffer_producer.cc 17 SimpleBufferProducer::SimpleBufferProducer(scoped_ptr<SpdyBuffer> buffer)
18 : buffer_(buffer.Pass()) {}
  /external/chromium_org/ppapi/api/dev/
ppb_crypto_dev.idl 16 * Fills the given buffer with random bytes. This is potentially slow so only
19 void GetRandomBytes([out] str_t buffer, [in] uint32_t num_bytes);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
ArrayBufferView.idl 30 readonly attribute ArrayBuffer buffer;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
ConvolverNode.idl 29 [RaisesException=Setter] attribute AudioBuffer buffer;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontCustomPlatformDataMac.cpp 50 PassOwnPtr<FontCustomPlatformData> FontCustomPlatformData::create(SharedBuffer* buffer)
52 ASSERT_ARG(buffer, buffer);
54 OpenTypeSanitizer sanitizer(buffer);
58 buffer = transcodeBuffer.get();
60 RetainPtr<CFDataRef> bufferData(AdoptCF, CFDataCreate(0, reinterpret_cast<const UInt8*>(buffer->data()), buffer->size()));
70 RefPtr<SkMemoryStream> stream = adoptRef(new SkMemoryStream(buffer->getAsSkData().get()));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
SpinLockTest.cpp 49 static void fillBuffer(volatile char* buffer, char fillPattern)
52 buffer[i] = fillPattern;
55 static void changeAndCheckBuffer(volatile char* buffer)
57 fillBuffer(buffer, '\0');
60 total += buffer[i];
66 fillBuffer(buffer, '!');
69 static void threadMain(volatile char* buffer)
73 changeAndCheckBuffer(buffer);
  /external/chromium_org/third_party/libwebp/dec/
buffer.c 36 static VP8StatusCode CheckDecBuffer(const WebPDecBuffer* const buffer) {
38 const WEBP_CSP_MODE mode = buffer->colorspace;
39 const int width = buffer->width;
40 const int height = buffer->height;
44 const WebPYUVABuffer* const buf = &buffer->u.YUVA;
68 const WebPRGBABuffer* const buf = &buffer->u.RGBA;
78 static VP8StatusCode AllocateBuffer(WebPDecBuffer* const buffer) {
79 const int w = buffer->width;
80 const int h = buffer->height;
81 const WEBP_CSP_MODE mode = buffer->colorspace
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_screen_buffer.h 49 static INLINE struct r300_buffer *r300_buffer(struct pipe_resource *buffer)
51 return (struct r300_buffer *)buffer;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_buffer.h 60 * SVGA pipe buffer.
124 struct pipe_resource *buffer; member in struct:svga_buffer::__anon18751
127 * We combine multiple user buffers into the same hardware buffer. This
128 * is the relative offset within that buffer.
133 * Range of user buffer that is uploaded in @buffer at @offset.
142 * A piece of GMR memory, with the same size of the buffer. It is created
143 * when mapping the buffer, and will be used to upload vertex data to the
156 * Whether this buffer has an unfinished DMA upload command.
165 * Pointer to the DMA copy box *inside* the command buffer
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkEmptyShader.h 34 SkEmptyShader(SkReadBuffer& buffer) : INHERITED(buffer) {}
SkUtilsArm.cpp 55 char buffer[4096]; local
66 // sentinel '\n' characters: one at the start of the buffer, and one at
67 // the end. This means we reserve the first and last buffer bytes.
68 buffer[0] = '\n';
69 int size = TEMP_FAILURE_RETRY(read(fd, buffer+1, sizeof(buffer)-2));
78 size, buffer+1);
80 // Compute buffer limit, and place final sentinel
81 char* buffer_end = buffer + 1 + size;
85 // '\nFeatures ' in our buffer
    [all...]
  /external/clang/test/Frontend/
backend-diagnostic.c 22 char buffer[80]; local
23 doIt(buffer);
  /external/deqp/framework/delibs/decpp/
deRingBuffer.cpp 21 * \brief Ring buffer template.
43 RingBuffer<int> buffer (bufSize);
54 bool canRead = buffer.getNumElements() > 0;
55 bool canWrite = writePos < dataSize && buffer.getNumFree() > 0;
59 DE_TEST_ASSERT(buffer.getNumFree() == bufSize - (writePos-readPos));
63 int numBytes = rnd.getInt(1, buffer.getNumElements());
66 buffer.popBack(&tmp[0], numBytes);
77 int numBytes = rnd.getInt(1, de::min(dataSize-writePos, buffer.getNumFree()));
78 buffer.pushFront(&data[writePos], numBytes);
  /external/deqp/framework/delibs/destream/
deRingbuffer.h 37 * when buffer is empty.
42 void deProducerStream_init (deOutStream* stream, deRingbuffer* buffer);
43 void deConsumerStream_init (deInStream* stream, deRingbuffer* buffer);
  /external/easymock/src/org/easymock/internal/matchers/
Any.java 36 public void appendTo(StringBuffer buffer) {
37 buffer.append("<any>");
NotNull.java 36 public void appendTo(StringBuffer buffer) {
37 buffer.append("notNull()");
Null.java 35 public void appendTo(StringBuffer buffer) {
36 buffer.append("isNull()");
  /external/mesa3d/src/gallium/drivers/r300/
r300_screen_buffer.h 49 static INLINE struct r300_buffer *r300_buffer(struct pipe_resource *buffer)
51 return (struct r300_buffer *)buffer;
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_buffer.h 60 * SVGA pipe buffer.
124 struct pipe_resource *buffer; member in struct:svga_buffer::__anon7089
127 * We combine multiple user buffers into the same hardware buffer. This
128 * is the relative offset within that buffer.
133 * Range of user buffer that is uploaded in @buffer at @offset.
142 * A piece of GMR memory, with the same size of the buffer. It is created
143 * when mapping the buffer, and will be used to upload vertex data to the
156 * Whether this buffer has an unfinished DMA upload command.
165 * Pointer to the DMA copy box *inside* the command buffer
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
TrackReferenceTypeBox.java 65 StringBuilder buffer = new StringBuilder(); local
66 buffer.append("TrackReferenceTypeBox[type=").append(getType());
68 buffer.append(";trackId");
69 buffer.append(i);
70 buffer.append("=");
71 buffer.append(trackIds[i]);
73 buffer.append("]");
74 return buffer.toString();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitReaderBuffer.java 7 private ByteBuffer buffer; field in class:BitReaderBuffer
11 public BitReaderBuffer(ByteBuffer buffer) {
12 this.buffer = buffer;
13 initialPos = buffer.position();
17 byte b = buffer.get(initialPos + position / 8);
31 buffer.position(initialPos + (int) Math.ceil((double) position / 8));
49 return buffer.limit() * 8 - position;
  /external/nist-sip/java/gov/nist/javax/sip/header/
SubscriptionState.java 170 protected StringBuffer encodeBody(StringBuffer buffer) {
172 buffer.append(state);
174 buffer.append(";reason=").append(reasonCode);
176 buffer.append(";expires=").append(expires);
178 buffer.append(";retry-after=").append(retryAfter);
181 buffer.append(SEMICOLON);
182 parameters.encode(buffer);
184 return buffer;
  /external/oprofile/libutil/
op_growable_buffer.h 3 * a growable buffer interface
23 * init_buffer - initialize an empty buffer
24 * @param buffer the buffer to initialize
29 void init_buffer(struct growable_buffer * buffer);
32 * free_buffer - free the memory allocated for this buffer
33 * @param buffer the buffer to free
35 void free_buffer(struct growable_buffer * buffer);
38 * add_data - add data to this buffer
    [all...]

Completed in 1438 milliseconds

<<11121314151617181920>>