Searched refs:buffer (Results 151 - 175 of 8919) sorted by relevance

1234567891011>>

/external/easymock/src/org/easymock/internal/matchers/
H A DNot.java36 public void appendTo(StringBuffer buffer) { argument
37 buffer.append("not(");
38 first.appendTo(buffer);
39 buffer.append(")");
/external/icu/icu4c/source/samples/case/
H A Ducase.c29 UChar buffer[32]; local
48 /* result buffer = "ab?" latin small letter a, latin small letter b, latin
50 length = u_strToLower(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
52 if(U_FAILURE(errorCode) || buffer[length]!=0) {
57 u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
61 /* result buffer = "ABI" latin CAPITAL letter A, latin capital letter B,
63 length = u_strToUpper(buffer, sizeof(buffer)/sizeo
[all...]
/external/nanopb-c/examples/using_double_on_avr/
H A Ddecode_double.c12 uint8_t buffer[32]; local
13 size_t count = fread(buffer, 1, sizeof(buffer), stdin);
14 pb_istream_t stream = pb_istream_from_buffer(buffer, count);
/external/nanopb-c/tests/basic_buffer/
H A Dencode_buffer.c3 * buffer, which is then written to stdout.
13 uint8_t buffer[Person_size]; local
23 stream = pb_ostream_from_buffer(buffer, sizeof(buffer));
30 fwrite(buffer, 1, stream.bytes_written, stdout);
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_inl.h47 inline bool CodedInputStream::InternalReadStringInline(string* buffer, argument
52 STLStringResizeUninitialized(buffer, size);
53 memcpy(string_as_array(buffer), buffer_, size);
58 return ReadStringFallback(buffer, size);
/external/qemu/android/utils/
H A Dtimezone.h24 /* append the current host "zoneinfo" timezone name to a given buffer. note
33 extern char* bufprint_zoneinfo_timezone( char* buffer, char* end );
/external/qemu/distrib/sdl-1.2.15/src/video/dc/
H A DSDL_dcvideo.h39 void *buffer; member in struct:SDL_PrivateVideoData
/external/qemu/distrib/sdl-1.2.15/src/video/dummy/
H A DSDL_nullvideo.h37 void *buffer; member in struct:SDL_PrivateVideoData
/external/skia/src/ports/
H A DSkDebug_nacl.cpp29 char buffer[kBufferSize + 1]; local
32 sprintf(buffer, kLogPrefix);
33 vsnprintf(buffer + strlen(kLogPrefix), kBufferSize, format, args);
35 pp::Var msg = pp::Var(buffer);
/external/valgrind/main/none/tests/s390x/
H A Dex.c3 char buffer[] ="0123456789abcdef"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
12 printf("before: buffer = |%s|\n", buffer);
21 : : "a" (target), "a" (buffer): "1", "2", "memory");
22 printf("after: buffer = |%s|\n", buffer);
H A Dexrl.c3 char buffer[] ="0123456789abcdef"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
12 printf("before: buffer = |%s|\n", buffer);
20 : : "a" (target), "a" (buffer) : "1", "2", "memory");
21 printf("after: buffer = |%s|\n", buffer);
/external/chromium_org/courgette/
H A Dcrc.cc19 uint32 CalculateCrc(const uint8* buffer, size_t size) { argument
24 crc = crc32(0, buffer, size);
28 crc = CrcCalc(buffer, size);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStringExtras.h50 inline int snprintf(char* buffer, size_t count, const char* format, ...) argument
55 result = _vsnprintf(buffer, count, format, args);
58 // In the case where the string entirely filled the buffer, _vsnprintf will not
61 buffer[count - 1] = '\0';
66 inline double wtf_vsnprintf(char* buffer, size_t count, const char* format, va_list args) argument
68 int result = _vsnprintf(buffer, count, format, args);
70 // In the case where the string entirely filled the buffer, _vsnprintf will not
73 buffer[count - 1] = '\0';
79 // vsnprintf does not null terminate the buffer. WebKit can rely on the null termination.
80 #define vsnprintf(buffer, coun
96 strnstr(const char* buffer, const char* target, size_t bufferLength) argument
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-fallback-private.hh37 hb_buffer_t *buffer);
41 hb_buffer_t *buffer);
46 hb_buffer_t *buffer);
/external/chromium_org/v8/test/webkit/
H A Ddfg-float32-array-nan.js28 var buffer = new ArrayBuffer(4);
30 var int32View = new Int32Array(buffer);
31 var floatView = new Float32Array(buffer);
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-fallback-private.hh37 hb_buffer_t *buffer);
41 hb_buffer_t *buffer);
46 hb_buffer_t *buffer);
H A Dhb-ot-shape-complex-hangul.cc110 /* buffer var allocations */
123 hb_buffer_t *buffer,
126 HB_BUFFER_ALLOCATE_VAR (buffer, hangul_shaping_feature);
176 buffer->clear_output ();
180 unsigned int count = buffer->len;
182 for (buffer->idx = 0; buffer->idx < count;)
184 hb_codepoint_t u = buffer->cur().codepoint;
193 if (start < end && end == buffer->out_len)
196 buffer
122 preprocess_text_hangul(const hb_ot_shape_plan_t *plan, hb_buffer_t *buffer, hb_font_t *font) argument
385 setup_masks_hangul(const hb_ot_shape_plan_t *plan, hb_buffer_t *buffer, hb_font_t *font HB_UNUSED) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
H A DSDL_coreaudio.h35 void *buffer; member in struct:SDL_PrivateAudioData
42 #define buffer (this->hidden->buffer) macro
/external/vixl/test/
H A Dtest-fuzz-a64.cc48 Instruction buffer[kInstructionSize]; local
52 buffer->SetInstructionBits(instr);
53 decoder.Decode(buffer);
67 Instruction buffer[kInstructionSize]; local
72 buffer->SetInstructionBits(instr);
73 decoder.Decode(buffer);
90 Instruction buffer[kInstructionSize];
96 buffer->SetInstructionBits(static_cast<uint32_t>(i));
97 decoder.Decode(buffer);
106 Instruction buffer[kInstructionSiz
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicLineParser.java120 CharArrayBuffer buffer = new CharArrayBuffer(value.length());
121 buffer.append(value);
123 return parser.parseProtocolVersion(buffer, cursor);
128 public ProtocolVersion parseProtocolVersion(final CharArrayBuffer buffer, argument
132 if (buffer == null) {
133 throw new IllegalArgumentException("Char array buffer may not be null");
145 skipWhitespace(buffer, cursor);
153 buffer.substring(indexFrom, indexTo));
159 ok = (buffer.charAt(i+j) == protoname.charAt(j));
162 ok = (buffer
224 hasProtocolVersion(final CharArrayBuffer buffer, final ParserCursor cursor) argument
301 parseRequestLine(final CharArrayBuffer buffer, final ParserCursor cursor) argument
393 parseStatusLine(final CharArrayBuffer buffer, final ParserCursor cursor) argument
483 parseHeader(CharArrayBuffer buffer) argument
494 skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DFormDataBuilder.cpp37 static inline void append(Vector<char>& buffer, char string) argument
39 buffer.append(string);
42 static inline void append(Vector<char>& buffer, const char* string) argument
44 buffer.append(string, strlen(string));
47 static inline void append(Vector<char>& buffer, const CString& string) argument
49 buffer.append(string.data(), string.length());
52 static void appendQuotedString(Vector<char>& buffer, const CString& string) argument
63 append(buffer, "%0A");
66 append(buffer, "%0D");
69 append(buffer, "
144 beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name) argument
155 addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary) argument
166 addFilenameToMultiPartHeader(Vector<char>& buffer, const WTF::TextEncoding& encoding, const String& filename) argument
175 addContentTypeToMultiPartHeader(Vector<char>& buffer, const CString& mimeType) argument
181 finishMultiPartHeader(Vector<char>& buffer) argument
186 addKeyValuePairAsFormData(Vector<char>& buffer, const CString& key, const CString& value, FormData::EncodingType encodingType) argument
203 encodeStringAsFormData(Vector<char>& buffer, const CString& string) argument
[all...]
/external/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java47 private char[] buffer; field in class:CharArrayBuffer
55 this.buffer = new char[capacity];
59 char newbuffer[] = new char[Math.max(this.buffer.length << 1, newlen)];
60 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
61 this.buffer = newbuffer;
76 if (newlen > this.buffer.length) {
79 System.arraycopy(b, off, this.buffer, this.len, len);
89 if (newlen > this.buffer.length) {
92 str.getChars(0, strlen, this.buffer, this.len);
100 append(b.buffer, of
172 public char[] buffer() { method in class:CharArrayBuffer
[all...]
/external/e2fsprogs/ext2ed/
H A Dblockbitmap_com.c43 char *ptr,buffer [80]; local
47 ptr=parse_word (command_line,buffer); /* Get the requested entry */
52 ptr=parse_word (ptr,buffer);
54 entry_num=atol (buffer);
66 strcpy (buffer,"show");dispatch (buffer); /* dispatch a show command */
79 char *ptr,buffer [80]; local
81 ptr=parse_word (command_line,buffer);
83 ptr=parse_word (ptr,buffer);
84 entry_offset=atol (buffer);
95 char *ptr,buffer [80]; local
119 char *ptr,buffer [80]; local
148 char *ptr,buffer [80]; local
[all...]
H A Dinodebitmap_com.c30 char *ptr,buffer [80]; local
32 ptr=parse_word (command_line,buffer);
36 ptr=parse_word (ptr,buffer);
38 entry_num=atol (buffer);
45 strcpy (buffer,"show");dispatch (buffer);
52 char *ptr,buffer [80]; local
54 ptr=parse_word (command_line,buffer);
56 ptr=parse_word (ptr,buffer);
57 entry_offset=atol (buffer);
68 char *ptr,buffer [80]; local
84 char *ptr,buffer [80]; local
110 char *ptr,buffer [80]; local
[all...]
/external/chromium_org/chrome/renderer/net/
H A Dpredictor_queue_unittest.cc22 DnsQueueSequentialTester(DnsQueue& buffer, int32 read_counter = 0,
25 // Return of false means buffer was full, or would not take entry.
28 // Return of false means buffer returned wrong value.
40 DnsQueue& buffer, int32 read_counter, int32 write_counter)
41 : buffer_(&buffer),
73 // Use a small buffer so we can see that we can't write a string as soon as it
74 // gets longer than one less than the buffer size. The extra empty character
75 // is used to keep read and write pointers from overlapping when buffer is
76 // full. This shows the buffer size can constrain writes (and we're not
80 DnsQueue buffer(buffer_siz
39 DnsQueueSequentialTester( DnsQueue& buffer, int32 read_counter, int32 write_counter) argument
[all...]

Completed in 887 milliseconds

1234567891011>>