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

<<11121314151617181920>>

/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/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 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);
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
/external/apache-http/src/org/apache/http/cookie/
H A DCookieOrigin.java95 StringBuilder buffer = new StringBuilder();
96 buffer.append('[');
98 buffer.append("(secure)");
100 buffer.append(this.host);
101 buffer.append(':');
102 buffer.append(Integer.toString(this.port));
103 buffer.append(this.path);
104 buffer.append(']');
105 return buffer.toString();
/external/chromium_org/cloud_print/common/win/
H A Dcloud_print_utils.cc31 LPCWSTR buffer = NULL; local
34 int count = ::LoadString(module, id, reinterpret_cast<LPWSTR>(&buffer), 0);
35 if (!buffer)
37 return string16(buffer, buffer + count);
41 LPWSTR buffer = NULL; local
44 0, hr, 0, reinterpret_cast<LPWSTR>(&buffer), 0, NULL);
45 string16 result(buffer);
46 ::LocalFree(buffer);
/external/chromium_org/net/spdy/
H A Dspdy_read_queue.cc28 void SpdyReadQueue::Enqueue(scoped_ptr<SpdyBuffer> buffer) { argument
29 DCHECK_GT(buffer->GetRemainingSize(), 0u);
30 total_size_ += buffer->GetRemainingSize();
31 queue_.push_back(buffer.release());
38 SpdyBuffer* buffer = queue_.front(); local
40 std::min(len - bytes_copied, buffer->GetRemainingSize());
41 memcpy(out + bytes_copied, buffer->GetRemainingData(), bytes_to_copy);
43 if (bytes_to_copy == buffer->GetRemainingSize()) {
47 buffer->Consume(bytes_to_copy);
/external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/
H A Dirt_manifest_file_test.cc49 char buffer[4096]; local
50 while (fgets(buffer, sizeof buffer, iob) != NULL) {
74 int len = strlen(buffer);
75 if (len >= 2 && buffer[len-1] == '\n' && buffer[len-2] == '\r') {
76 buffer[len-2] = '\n';
77 buffer[len-1] = '\0';
79 str += buffer;
/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/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
/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/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/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
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/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...]
/external/icu4c/samples/ustring/
H A Dustring.cpp151 UChar buffer[32]; local
156 buffer[0]=0; /* empty, NUL-terminated string */
157 u_strncat(buffer, text, 1); /* append just n=1 character ('A') */
158 u_strcat(buffer, appendText); /* buffer=="Aabc" */
159 length=u_strlen(buffer); /* length=4 */
160 printUString("should be \"Aabc\": ", buffer, -1);
162 /* bitwise comparing buffer with text */
163 compare=u_strcmp(buffer, text);
168 /* Build "A<sharp s>C" in the buffer
196 UChar buffer[32]; local
567 UChar buffer[200]; local
[all...]
/external/chromium_org/chrome/browser/nacl_host/
H A Dnacl_validation_cache.cc91 std::string buffer; local
95 if (!iter.ReadString(&buffer))
97 if (0 != buffer.compare(kValidationCacheBeginMagic))
101 if (!iter.ReadString(&buffer))
103 if (buffer.size() != kValidationCacheKeySize)
106 validation_cache_key_ = buffer;
113 if (!iter.ReadString(&buffer))
115 if (buffer.size() != kValidationCacheEntrySize)
117 validation_cache_.Put(buffer, true);
121 if (!iter.ReadString(&buffer))
[all...]
/external/chromium_org/third_party/icu/source/io/
H A Dsscanf.c34 u_sscanf(const UChar *buffer, argument
42 converted = u_vsscanf(buffer, patternSpecification, ap);
49 u_sscanf_u(const UChar *buffer, argument
57 converted = u_vsscanf_u(buffer, patternSpecification, ap);
64 u_vsscanf(const UChar *buffer, argument
86 converted = u_vsscanf_u(buffer, pattern, ap);
97 u_vsscanf_u(const UChar *buffer, argument
111 inStr.str.fBuffer = (UChar *)buffer;
112 inStr.str.fPos = (UChar *)buffer;
113 inStr.str.fLimit = buffer
[all...]

Completed in 2632 milliseconds

<<11121314151617181920>>