Searched refs:buffer (Results 251 - 275 of 6812) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/icu/source/tools/genrb/
H A Drbutil.c66 itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad) argument
83 buffer[length++]= digits[digit];
88 buffer[length++] = '0';/*zero padding */
93 buffer[length++]='-';
96 /* null terminate the buffer */
98 buffer[length] = 0x0000;
106 temp = buffer[(length-1) - j];
107 buffer[(length-1) - j] = buffer[j];
108 buffer[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_vdecl.c66 * buffer offset below. The important thing is that all vertex buffer
77 struct svga_buffer *buffer; local
81 if (!vb->buffer)
84 buffer = svga_buffer(vb->buffer);
85 if (buffer->uploaded.start > offset) {
86 tmp_neg_bias = buffer->uploaded.start - offset;
97 struct svga_buffer *buffer; local
99 if (!vb->buffer)
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/rc4/
H A Drc4s.cpp39 unsigned char buffer[1024]; local
59 RC4(&ctx,numm,buffer,buffer);
61 RC4(&ctx,numm,buffer,buffer);
64 RC4(&ctx,num,buffer,buffer);
66 RC4(&ctx,num,buffer,buffer);
/external/chromium_org/v8/src/
H A Ddtoa.cc57 Vector<char> buffer, int* sign, int* length, int* point) {
69 buffer[0] = '0';
70 buffer[1] = '\0';
77 buffer[0] = '\0';
85 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point);
88 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point);
92 buffer, length, point);
102 BignumDtoa(v, bignum_mode, requested_digits, buffer, length, point);
103 buffer[*length] = '\0';
56 DoubleToAscii(double v, DtoaMode mode, int requested_digits, Vector<char> buffer, int* sign, int* length, int* point) argument
H A Dfixed-dtoa.h36 // The buffer must be big enough to hold the result plus one terminating null
41 // Example: FastFixedDtoa(0.001, 5, ...) is allowed to return buffer = "1", and
44 // FastFixedDtoa(0.15, 2, ...) thus returns buffer = "2", decimal_point = 0.
45 // The returned buffer may contain digits that would be truncated from the
51 Vector<char> buffer, int* length, int* decimal_point);
/external/easymock/src/org/easymock/internal/matchers/
H A DSame.java37 public void appendTo(StringBuffer buffer) { argument
38 buffer.append("same(");
39 ArgumentToString.appendArgument(expected, buffer);
40 buffer.append(")");
/external/harfbuzz/contrib/
H A Dharfbuzz-freetype.h7 HB_Byte *buffer, HB_UInt *len);
/external/icu4c/tools/genrb/
H A Drbutil.c66 itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad) argument
83 buffer[length++]= digits[digit];
88 buffer[length++] = '0';/*zero padding */
93 buffer[length++]='-';
96 /* null terminate the buffer */
98 buffer[length] = 0x0000;
106 temp = buffer[(length-1) - j];
107 buffer[(length-1) - j] = buffer[j];
108 buffer[
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DOutputBufferProvider.java20 * Simple Provider interface for the output buffer.
25 * Returns a clean Appendable buffer ready to use while rendering.
30 * Tells the provider that this buffer is free to be reused.
32 * @param buffer the Appendable object handed out by {@link #get}
34 void release(Appendable buffer); argument
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DJavascriptTokenBuffer.java24 * Implements a circular (ring) buffer of characters with specialized
34 * the buffer. Changing the API would mean changing the test
40 * <li> The buffer size is fixed. There is currently no need to
47 * Size of the ring buffer used to lookup the last token in the javascript
50 * an empty ring buffer slot.
54 /** Storage implementing the circular buffer. */
55 private final char[] buffer; field in class:JavascriptTokenBuffer
57 /** Index of the first item in our circular buffer. */
60 /** Index of the last item in our circular buffer. */
64 * Constructs an empty javascript token buffer
[all...]
/external/mdnsresponder/mDNSShared/
H A Ddnssd_ipc.c35 static char buffer[1024]; local
37 memset(buffer, 0, sizeof(buffer));
43 buffer,
44 sizeof(buffer),
49 while ((n > 0) && isspace(((unsigned char *) buffer)[n - 1]))
50 buffer[--n] = '\0';
52 return buffer;
111 int get_string(const char **ptr, const char *const end, char *buffer, int buflen) argument
115 *buffer
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_vdecl.c66 * buffer offset below. The important thing is that all vertex buffer
77 struct svga_buffer *buffer; local
81 if (!vb->buffer)
84 buffer = svga_buffer(vb->buffer);
85 if (buffer->uploaded.start > offset) {
86 tmp_neg_bias = buffer->uploaded.start - offset;
97 struct svga_buffer *buffer; local
99 if (!vb->buffer)
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DUUIDConverter.java30 byte[] buffer = new byte[16];
33 buffer[i] = (byte) (msb >>> 8 * (7 - i));
36 buffer[i] = (byte) (lsb >>> 8 * (7 - i));
39 return buffer;
/external/openssl/crypto/rc4/
H A Drc4s.cpp39 unsigned char buffer[1024]; local
59 RC4(&ctx,numm,buffer,buffer);
61 RC4(&ctx,numm,buffer,buffer);
64 RC4(&ctx,num,buffer,buffer);
66 RC4(&ctx,num,buffer,buffer);
/external/qemu/distrib/sdl-1.2.15/src/video/nds/
H A DSDL_ndsvideo.h38 void *buffer; member in struct:SDL_PrivateVideoData
/external/skia/tools/
H A DLazyDecodeBitmap.h20 bool LazyDecodeBitmap(const void* buffer, size_t size, SkBitmap* bitmap);
/external/v8/src/
H A Ddtoa.cc57 Vector<char> buffer, int* sign, int* length, int* point) {
69 buffer[0] = '0';
70 buffer[1] = '\0';
77 buffer[0] = '\0';
85 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point);
88 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point);
92 buffer, length, point);
102 BignumDtoa(v, bignum_mode, requested_digits, buffer, length, point);
103 buffer[*length] = '\0';
56 DoubleToAscii(double v, DtoaMode mode, int requested_digits, Vector<char> buffer, int* sign, int* length, int* point) argument
H A Dfixed-dtoa.h36 // The buffer must be big enough to hold the result plus one terminating null
41 // Example: FastFixedDtoa(0.001, 5, ...) is allowed to return buffer = "1", and
44 // FastFixedDtoa(0.15, 2, ...) thus returns buffer = "2", decimal_point = 0.
45 // The returned buffer may contain digits that would be truncated from the
51 Vector<char> buffer, int* length, int* decimal_point);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-complex-sea.cc29 /* buffer var allocations */
70 hb_buffer_t *buffer);
74 hb_buffer_t *buffer);
78 hb_buffer_t *buffer);
167 hb_buffer_t *buffer,
170 HB_BUFFER_ALLOCATE_VAR (buffer, sea_category);
171 HB_BUFFER_ALLOCATE_VAR (buffer, sea_position);
176 unsigned int count = buffer->len;
178 set_sea_properties (buffer->info[i]);
184 hb_buffer_t *buffer)
166 setup_masks_sea(const hb_ot_shape_plan_t *plan HB_UNUSED, hb_buffer_t *buffer, hb_font_t *font HB_UNUSED) argument
182 setup_syllables(const hb_ot_shape_plan_t *plan HB_UNUSED, hb_font_t *font HB_UNUSED, hb_buffer_t *buffer) argument
200 initial_reordering_consonant_syllable(const hb_ot_shape_plan_t *plan, hb_face_t *face, hb_buffer_t *buffer, unsigned int start, unsigned int end) argument
239 initial_reordering_broken_cluster(const hb_ot_shape_plan_t *plan, hb_face_t *face, hb_buffer_t *buffer, unsigned int start, unsigned int end) argument
260 initial_reordering_syllable(const hb_ot_shape_plan_t *plan, hb_face_t *face, hb_buffer_t *buffer, unsigned int start, unsigned int end) argument
274 insert_dotted_circles(const hb_ot_shape_plan_t *plan HB_UNUSED, hb_font_t *font, hb_buffer_t *buffer) argument
326 initial_reordering(const hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) argument
347 final_reordering(const hb_ot_shape_plan_t *plan, hb_font_t *font HB_UNUSED, hb_buffer_t *buffer) argument
[all...]
H A Dhb-buffer.cc30 #include "hb-buffer-private.hh"
61 /* Here is how the buffer works internally:
73 * to an alternate buffer (which we reuse the pos buffer for!), and its
519 /* If we hit the start of buffer, continue in out-buffer. */
547 /* If we hit the end of out-buffer, continue in buffer. */
562 /* If script is set to INVALID, guess from buffer contents */
589 dump_var_allocation (const hb_buffer_t *buffer) argument
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-sea.cc29 /* buffer var allocations */
70 hb_buffer_t *buffer);
74 hb_buffer_t *buffer);
78 hb_buffer_t *buffer);
167 hb_buffer_t *buffer,
170 HB_BUFFER_ALLOCATE_VAR (buffer, sea_category);
171 HB_BUFFER_ALLOCATE_VAR (buffer, sea_position);
176 unsigned int count = buffer->len;
178 set_sea_properties (buffer->info[i]);
184 hb_buffer_t *buffer)
166 setup_masks_sea(const hb_ot_shape_plan_t *plan HB_UNUSED, hb_buffer_t *buffer, hb_font_t *font HB_UNUSED) argument
182 setup_syllables(const hb_ot_shape_plan_t *plan HB_UNUSED, hb_font_t *font HB_UNUSED, hb_buffer_t *buffer) argument
200 initial_reordering_consonant_syllable(const hb_ot_shape_plan_t *plan, hb_face_t *face, hb_buffer_t *buffer, unsigned int start, unsigned int end) argument
239 initial_reordering_broken_cluster(const hb_ot_shape_plan_t *plan, hb_face_t *face, hb_buffer_t *buffer, unsigned int start, unsigned int end) argument
260 initial_reordering_syllable(const hb_ot_shape_plan_t *plan, hb_face_t *face, hb_buffer_t *buffer, unsigned int start, unsigned int end) argument
274 insert_dotted_circles(const hb_ot_shape_plan_t *plan HB_UNUSED, hb_font_t *font, hb_buffer_t *buffer) argument
326 initial_reordering(const hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) argument
347 final_reordering(const hb_ot_shape_plan_t *plan, hb_font_t *font HB_UNUSED, hb_buffer_t *buffer) argument
[all...]
H A Dhb-buffer.cc30 #include "hb-buffer-private.hh"
61 /* Here is how the buffer works internally:
73 * to an alternate buffer (which we reuse the pos buffer for!), and its
467 /* If we hit the start of buffer, continue in out-buffer. */
495 /* If we hit the end of out-buffer, continue in buffer. */
510 /* If script is set to INVALID, guess from buffer contents */
537 dump_var_allocation (const hb_buffer_t *buffer) argument
[all...]
/external/chromium_org/media/base/
H A Daudio_buffer_unittest.cc31 scoped_refptr<AudioBuffer> buffer = MakeInterleavedAudioBuffer<uint8>( local
33 EXPECT_EQ(frames, buffer->frame_count());
34 EXPECT_EQ(buffer->timestamp(), start_time);
35 EXPECT_EQ(buffer->duration().InSeconds(), frames);
36 EXPECT_FALSE(buffer->end_of_stream());
40 scoped_refptr<AudioBuffer> buffer = AudioBuffer::CreateEOSBuffer(); local
41 EXPECT_TRUE(buffer->end_of_stream());
52 scoped_refptr<AudioBuffer> buffer = AudioBuffer::CopyFrom( local
54 EXPECT_EQ(16, buffer->frame_count()); // 2 channels of 8-bit data
56 buffer
66 scoped_refptr<AudioBuffer> buffer = MakeInterleavedAudioBuffer<uint8>( local
86 scoped_refptr<AudioBuffer> buffer = MakeInterleavedAudioBuffer<int16>( local
111 scoped_refptr<AudioBuffer> buffer = MakeInterleavedAudioBuffer<int32>( local
134 scoped_refptr<AudioBuffer> buffer = MakeInterleavedAudioBuffer<float>( local
156 scoped_refptr<AudioBuffer> buffer = MakePlanarAudioBuffer<int16>( local
189 scoped_refptr<AudioBuffer> buffer = local
222 scoped_refptr<AudioBuffer> buffer = AudioBuffer::CreateEmptyBuffer( local
243 scoped_refptr<AudioBuffer> buffer = local
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dzip_internal.cc156 ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); local
157 if (!buffer || !buffer->data || !buffer->length)
159 buffer->offset = 0;
166 ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); local
167 DCHECK_LE(buffer->offset, buffer->length);
168 size_t remaining_bytes = buffer->length - buffer
189 ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); local
197 ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); local
[all...]
/external/chromium_org/third_party/zlib/google/
H A Dzip_internal.cc156 ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); local
157 if (!buffer || !buffer->data || !buffer->length)
159 buffer->offset = 0;
166 ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); local
167 DCHECK_LE(buffer->offset, buffer->length);
168 size_t remaining_bytes = buffer->length - buffer
189 ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); local
197 ZipBuffer* buffer = static_cast<ZipBuffer*>(opaque); local
[all...]

Completed in 5072 milliseconds

<<11121314151617181920>>