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

1234567891011>>

/external/v8/src/
H A Dstrtod.h13 // The buffer must only contain digits in the range [0-9]. It must not
15 double Strtod(Vector<const char> buffer, int exponent);
/external/valgrind/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);
H A Dsrst.c2 char buffer[24] ="0123456789abcdefghijklmn"; variable
52 buf = srst3(&buffer[23], &buffer[23], '0', &cc);
56 buf = srst3(&buffer[23], &buffer[0], '0', &cc);
60 buf = srst3(&buffer[23], &buffer[0], 'a', &cc);
64 buf = srst3(&buffer[23], &buffer[0], 'm', &cc);
68 buf = srst3(&buffer[2
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dcreate_augmented_vec.h31 int16_t *buffer, /* (i) Pointer to the end of the codebook memory that
/external/okhttp/okio/okio/src/main/java/okio/
H A DRealBufferedSource.java26 public final Buffer buffer; field in class:RealBufferedSource
30 public RealBufferedSource(Source source, Buffer buffer) { argument
32 this.buffer = buffer;
40 @Override public Buffer buffer() { method in class:RealBufferedSource
41 return buffer;
49 if (buffer.size == 0) {
50 long read = source.read(buffer, Segment.SIZE);
54 long toRead = Math.min(byteCount, buffer.size);
55 return buffer
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.h22 // stack frame "frame_no" and appends it to the "buffer". "format" is a
50 void RenderFrame(InternalScopedString *buffer, const char *format, int frame_no,
55 void RenderSourceLocation(InternalScopedString *buffer, const char *file,
59 void RenderModuleLocation(InternalScopedString *buffer, const char *module,
/external/compiler-rt/test/asan/TestCases/Darwin/
H A Dmixing-global-constructors.cc28 char buffer[10] = "world"; local
29 func(buffer);
30 printf("%s\n", buffer);
/external/curl/lib/
H A Dcurl_endian.c36 * buf [in] - A pointer to a 2 byte buffer.
55 * buf [in] - A pointer to a 4 byte buffer.
75 * buf [in] - A pointer to a 8 byte buffer.
112 * buf [in] - A pointer to a 2 byte buffer.
131 * buf [in] - A pointer to a 4 byte buffer.
151 * buf [in] - A pointer to a 8 byte buffer.
188 * buffer [in] - A pointer to the output buffer.
190 void Curl_write16_le(const short value, unsigned char *buffer) argument
192 buffer[
207 Curl_write32_le(const int value, unsigned char *buffer) argument
228 Curl_write64_le(const long long value, unsigned char *buffer) argument
[all...]
/external/google-breakpad/src/processor/
H A Dlogging.cc87 char buffer[11]; local
88 snprintf(buffer, sizeof(buffer), "0x%x", number);
89 return string(buffer);
93 char buffer[19]; local
94 snprintf(buffer, sizeof(buffer), "0x%" PRIx64, number);
95 return string(buffer);
99 char buffer[19]; local
100 snprintf(buffer, sizeo
[all...]
/external/harfbuzz_ng/test/fuzzing/
H A Dhb-fuzzer.cc17 hb_buffer_t *buffer = hb_buffer_create(); local
18 hb_buffer_add_utf8(buffer, text, -1, 0, -1);
19 hb_buffer_guess_segment_properties(buffer);
20 hb_shape(font, buffer, NULL, 0);
21 hb_buffer_destroy(buffer);
27 hb_buffer_t *buffer = hb_buffer_create(); local
28 hb_buffer_add_utf32(buffer, text32, sizeof(text32)/sizeof(text32[0]), 0, -1);
29 hb_buffer_guess_segment_properties(buffer);
30 hb_shape(font, buffer, NULL, 0);
32 unsigned int len = hb_buffer_get_length (buffer);
[all...]
/external/pdfium/core/fxcrt/
H A Dfxcrt_stream.cpp21 size_t IFX_SeekableReadStream::ReadBlock(void* buffer, size_t size) { argument
25 bool IFX_SeekableStream::WriteBlock(const void* buffer, size_t size) { argument
26 return WriteBlock(buffer, GetSize(), size);
/external/vixl/test/aarch64/
H A Dtest-fuzz-aarch64.cc50 Instruction buffer[kInstructionSize]; local
54 buffer->SetInstructionBits(instr);
55 decoder.Decode(buffer);
69 Instruction buffer[kInstructionSize]; local
74 buffer->SetInstructionBits(instr);
75 decoder.Decode(buffer);
91 Instruction buffer[kInstructionSize];
97 buffer->SetInstructionBits(static_cast<uint32_t>(i));
98 decoder.Decode(buffer);
107 Instruction buffer[kInstructionSiz
[all...]
/external/v8/src/wasm/
H A Dwasm-module-builder.cc35 size_t EmitSection(WasmSectionCode code, ZoneBuffer& buffer) { argument
37 buffer.write_u8(code);
40 return buffer.reserve_u32v();
44 void FixupSection(ZoneBuffer& buffer, size_t start) { argument
45 buffer.patch_u32v(start, static_cast<uint32_t>(buffer.offset() - start -
66 byte buffer[8]; local
67 byte* ptr = buffer;
69 for (byte* p = buffer; p < ptr; p++) {
171 void WasmFunctionBuilder::WriteSignature(ZoneBuffer& buffer) cons
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicLineParser.java125 CharArrayBuffer buffer = new CharArrayBuffer(value.length());
126 buffer.append(value);
128 return parser.parseProtocolVersion(buffer, cursor);
133 public ProtocolVersion parseProtocolVersion(final CharArrayBuffer buffer, argument
137 if (buffer == null) {
138 throw new IllegalArgumentException("Char array buffer may not be null");
150 skipWhitespace(buffer, cursor);
158 buffer.substring(indexFrom, indexTo));
164 ok = (buffer.charAt(i+j) == protoname.charAt(j));
167 ok = (buffer
229 hasProtocolVersion(final CharArrayBuffer buffer, final ParserCursor cursor) argument
306 parseRequestLine(final CharArrayBuffer buffer, final ParserCursor cursor) argument
398 parseStatusLine(final CharArrayBuffer buffer, final ParserCursor cursor) argument
488 parseHeader(CharArrayBuffer buffer) argument
499 skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) argument
[all...]
/external/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java52 private char[] buffer; field in class:CharArrayBuffer
60 this.buffer = new char[capacity];
64 char newbuffer[] = new char[Math.max(this.buffer.length << 1, newlen)];
65 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
66 this.buffer = newbuffer;
81 if (newlen > this.buffer.length) {
84 System.arraycopy(b, off, this.buffer, this.len, len);
94 if (newlen > this.buffer.length) {
97 str.getChars(0, strlen, this.buffer, this.len);
105 append(b.buffer, of
177 public char[] buffer() { method in class:CharArrayBuffer
[all...]
/external/e2fsprogs/ext2ed/
H A Dblockbitmap_com.c44 char *ptr,buffer [80]; local
48 ptr=parse_word (command_line,buffer); /* Get the requested entry */
53 ptr=parse_word (ptr,buffer);
55 entry_num=atol (buffer);
67 strcpy (buffer,"show");dispatch (buffer); /* dispatch a show command */
80 char *ptr,buffer [80]; local
82 ptr=parse_word (command_line,buffer);
84 ptr=parse_word (ptr,buffer);
85 entry_offset=atol (buffer);
96 char *ptr,buffer [80]; local
120 char *ptr,buffer [80]; local
149 char *ptr,buffer [80]; local
[all...]
H A Dinodebitmap_com.c31 char *ptr,buffer [80]; local
33 ptr=parse_word (command_line,buffer);
37 ptr=parse_word (ptr,buffer);
39 entry_num=atol (buffer);
46 strcpy (buffer,"show");dispatch (buffer);
53 char *ptr,buffer [80]; local
55 ptr=parse_word (command_line,buffer);
57 ptr=parse_word (ptr,buffer);
58 entry_offset=atol (buffer);
69 char *ptr,buffer [80]; local
85 char *ptr,buffer [80]; local
111 char *ptr,buffer [80]; local
[all...]
/external/ltp/lib/
H A Ddatabin.c44 void databingen(int mode, char *buffer, int bsize, int offset) argument
51 memset(buffer, 0x55, bsize);
55 memset(buffer, 0xf0, bsize);
60 buffer[ind] = ((offset + ind) % 8 & 0177);
65 memset(buffer, 0xff, bsize);
69 memset(buffer, 0x0, bsize);
74 buffer[ind] = (rand() & 0177) | 0100;
80 * >= 0 : error at byte offset into the file, offset+buffer[0-(bsize-1)]
83 int databinchk(int mode, char *buffer, int bsize, int offset, char **errmsg) argument
90 chr = (unsigned char *)buffer;
153 unsigned char *buffer; local
[all...]
/external/syslinux/com32/hdt/
H A Dhdt-menu-summary.c34 char buffer[SUBMENULEN + 1]; local
37 snprintf(buffer, sizeof(buffer), " Summary (%d CPU) ", hardware->physical_cpu_count);
38 menu->menu = add_menu(buffer, -1);
43 snprintf(buffer, sizeof buffer, "CPU Vendor : %s", hardware->cpu.vendor);
46 add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0);
49 snprintf(buffer, sizeof buffer, "CPU Model : %s", hardware->cpu.model);
52 add_item(buffer, statbuffe
[all...]
/external/webrtc/webrtc/base/
H A Dstringencode.cc26 size_t escape(char * buffer, size_t buflen, argument
29 RTC_DCHECK(buffer); // TODO(grunell): estimate output size
39 buffer[bufpos++] = escape;
41 buffer[bufpos++] = ch;
44 buffer[bufpos] = '\0';
48 size_t unescape(char * buffer, size_t buflen, argument
51 RTC_DCHECK(buffer); // TODO(grunell): estimate output size
61 buffer[bufpos++] = ch;
63 buffer[bufpos] = '\0';
67 size_t encode(char * buffer, size_ argument
92 decode(char * buffer, size_t buflen, const char * source, size_t srclen, char escape) argument
143 url_encode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
169 url_decode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
232 utf8_encode(char* buffer, size_t buflen, unsigned long value) argument
258 html_encode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
311 html_decode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
317 xml_encode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
350 xml_decode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
431 hex_encode(char* buffer, size_t buflen, const char* csource, size_t srclen) argument
436 hex_encode_with_delimiter(char* buffer, size_t buflen, const char* csource, size_t srclen, char delimiter) argument
480 char* buffer = STACK_ARRAY(char, kBufferSize); local
531 hex_decode(char* buffer, size_t buflen, const std::string& source) argument
534 hex_decode_with_delimiter(char* buffer, size_t buflen, const std::string& source, char delimiter) argument
542 char* buffer = STACK_ARRAY(char, maxlen + 1); local
551 char * buffer = STACK_ARRAY(char, maxlen); local
[all...]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
H A DHTMLElementTest.java27 private StringWriter buffer; field in class:HTMLElementTest
33 buffer = new StringWriter();
34 root = new HTMLElement(buffer, "root") {
47 buffer.toString());
56 buffer.toString());
63 assertEquals("<root><title/></root>", buffer.toString());
70 assertEquals("<root><h1/></root>", buffer.toString());
77 assertEquals("<root><p/></root>", buffer.toString());
84 assertEquals("<root><span/></root>", buffer.toString());
91 assertEquals("<root><span class=\"abc\"/></root>", buffer
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Drle.c41 appendEncodedByte(uint16_t* buffer, uint16_t* buffLimit, uint8_t value, uint8_t state[],UErrorCode* status) { argument
47 if(buffer < buffLimit){
48 *buffer++ = c;
53 return buffer;
58 return buffer;
66 encodeRunByte(uint16_t* buffer,uint16_t* bufLimit, uint8_t value, int32_t length, uint8_t state[], UErrorCode* status) { argument
74 buffer = appendEncodedByte(buffer,bufLimit, ESCAPE_BYTE, state,status);
76 buffer = appendEncodedByte(buffer,bufLimi
108 encodeRunShort(uint16_t* buffer,uint16_t* bufLimit, uint16_t value, int32_t length,UErrorCode* status) argument
150 usArrayToRLEString(const uint16_t* src,int32_t srcLen,uint16_t* buffer, int32_t bufLen,UErrorCode* status) argument
196 byteArrayToRLEString(const uint8_t* src,int32_t srcLen, uint16_t* buffer,int32_t bufLen, UErrorCode* status) argument
[all...]
/external/clang/test/SemaCXX/
H A Darray-bounds-ptr-arith.cpp27 char buffer[5]; // expected-note 2 {{declared here}} local
29 swallow(buffer + sizeof("Hello")-1); // expected-warning {{refers past the end of the array}}
30 swallow(buffer + (sizeof("Hello")-1)); // no-warning
31 if (n > 0 && n <= 6) swallow(buffer + 6 - n); // expected-warning {{refers past the end of the array}}
32 if (n > 0 && n <= 6) swallow(buffer + (6 - n)); // no-warning
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLBIOInputStream.java52 public int gets(byte[] buffer) throws IOException { argument
53 if (buffer == null || buffer.length == 0) {
59 while (offset < buffer.length) {
74 buffer[offset++] = (byte) inputByte;

Completed in 2976 milliseconds

1234567891011>>