Searched defs:buffer (Results 401 - 425 of 3822) sorted by relevance

<<11121314151617181920>>

/external/easymock/src/org/easymock/internal/matchers/
H A DStartsWith.java37 public void appendTo(StringBuffer buffer) { argument
38 buffer.append("startsWith(\"" + prefix + "\")");
/external/elfutils/0.153/lib/
H A Dcrc32_file.c58 unsigned char buffer[1024 * 8]; local
97 while ((count = TEMP_FAILURE_RETRY (pread (fd, buffer, sizeof buffer,
101 crc = crc32 (crc, buffer, count);
H A Dmd5.h51 char buffer[128] __attribute__ ((__aligned__ (__alignof__ (md5_uint32)))); member in struct:md5_ctx
67 extern void md5_process_block (const void *buffer, size_t len,
74 extern void md5_process_bytes (const void *buffer, size_t len,
77 /* Process the remaining bytes in the buffer and put result from CTX
105 extern void *md5_buffer (const char *buffer, size_t len, void *resblock);
H A Dsha1.h52 char buffer[128] __attribute__ ((__aligned__ (__alignof__ (sha1_uint32)))); member in struct:sha1_ctx
62 extern void sha1_process_block (const void *buffer, size_t len,
69 extern void sha1_process_bytes (const void *buffer, size_t len,
72 /* Process the remaining bytes in the buffer and put result from CTX
/external/elfutils/0.153/libasm/
H A Ddisasm_str.c35 struct buffer struct
45 struct buffer *buffer = (struct buffer *) arg; local
47 if (len > buffer->len)
49 return len - buffer->len;
51 buffer->buf = mempcpy (buffer->buf, str, len);
52 buffer->len = len;
63 struct buffer buffe local
[all...]
/external/expat/tests/
H A Dchardata.c85 char buffer[1280]; local
95 sprintf(buffer, "wrong number of data characters:"
98 sprintf(buffer,
101 fail(buffer);
114 char buffer[1024]; local
121 sprintf(buffer, "wrong number of data characters: got %d, expected %d",
123 fail(buffer);
/external/fio/
H A Dlog.c11 char buffer[1024]; local
14 len = vsnprintf(buffer, sizeof(buffer), str, args);
15 len = min(len, sizeof(buffer) - 1);
18 len = fio_server_text_output(FIO_LOG_INFO, buffer, len);
20 syslog(LOG_INFO, "%s", buffer);
22 len = fwrite(buffer, len, 1, f_out);
39 char buffer[1024]; local
44 len = vsnprintf(buffer, sizeof(buffer), forma
67 char buffer[1024]; local
[all...]
/external/freetype/src/base/
H A Dftsystem.c191 /* buffer :: The address of buffer to store the read data. */
203 unsigned char* buffer,
217 return (unsigned long)ft_fread( buffer, 1, count, file );
201 ft_ansi_stream_io( FT_Stream stream, unsigned long offset, unsigned char* buffer, unsigned long count ) argument
H A Dmd5.h37 unsigned char buffer[64]; member in struct:__anon21538
/external/freetype/src/cff/
H A Dcf2stack.h65 CF2_StackNumber buffer[CF2_OPERAND_STACK_SIZE]; member in struct:CF2_StackRec_
/external/google-tv-pairing-protocol/cpp/src/polo/util/
H A Dpoloutil.cc75 uint8_t* buffer = new uint8_t[length]; local
76 if (RAND_bytes(buffer, length)) {
77 return buffer;
79 delete buffer;
/external/hamcrest/library/src/org/hamcrest/collection/
H A DIsIn.java26 public void describeTo(Description buffer) { argument
27 buffer.appendText("one of ");
28 buffer.appendValueList("{", ", ", "}", collection);
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-normalize-private.hh33 /* buffer var allocations, used during the normalization process */
48 hb_buffer_t *buffer,
55 hb_buffer_t *buffer; member in struct:hb_ot_shape_normalize_context_t
/external/harfbuzz_ng/util/
H A Dmain-font-text.hh60 hb_buffer_t *buffer = hb_buffer_create (); local
64 consumer.consume_line (buffer, text, text_len, input.text_before, input.text_after);
65 hb_buffer_destroy (buffer);
H A Dshape-consumer.hh48 void consume_line (hb_buffer_t *buffer, argument
58 shaper.populate_buffer (buffer, text, text_len, text_before, text_after);
60 output.consume_text (buffer, text, text_len, shaper.utf8_clusters);
61 if (!shaper.shape (font, buffer)) {
63 hb_buffer_set_length (buffer, 0);
64 output.shape_failed (buffer, text, text_len, shaper.utf8_clusters);
69 output.consume_glyphs (buffer, text, text_len, shaper.utf8_clusters);
/external/icu/icu4c/source/common/unicode/
H A Dcaniter.h179 UnicodeString buffer; member in class:CanonicalIterator
196 //Set extract(int comp, String segment, int segmentPos, StringBuffer buffer);
/external/icu/icu4c/source/i18n/
H A Dbocsu.cpp105 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity); local
111 buffer=scratch;
114 p=reinterpret_cast<uint8_t *>(buffer);
137 sink.Append(buffer, (int32_t)(p-reinterpret_cast<uint8_t *>(buffer)));
/external/icu/icu4c/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...]
/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/jpeg/
H A Djdatadst.c29 JOCTET * buffer; /* start of buffer */ member in struct:__anon22688
47 /* Allocate the output buffer --- it will be released when done with image */
48 dest->buffer = (JOCTET *)
52 dest->pub.next_output_byte = dest->buffer;
58 * Empty the output buffer --- called whenever buffer fills up.
60 * In typical applications, this should write the entire output buffer
62 * reset the pointer & count to the start of the buffer, and return TRUE
63 * indicating that the buffer ha
[all...]
H A Djdatasrc.c29 JOCTET * buffer; /* start of buffer */ member in struct:__anon22689
49 * but we don't clear the input buffer.
57 * Fill the input buffer --- called whenever buffer is emptied.
59 * In typical applications, this should read fresh data into the buffer
61 * reset the pointer & count to the start of the buffer, and return TRUE
62 * indicating that the buffer has been reloaded. It is not necessary to
63 * fill the buffer entirely, only to obtain at least one more byte.
67 * the buffer
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DThreadLocalOutputBufferProvider.java43 throw new IllegalStateException("Thread buffer is not free.");
52 public void release(Appendable buffer) { argument
53 if (buffer != pool.get()) {
54 throw new IllegalArgumentException("Can't release buffer that does not "
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DBufferedResourceLoader.java39 protected Reader buffer(Reader reader) { method in class:BufferedResourceLoader
/external/libcxx/test/utilities/memory/storage.iterator/
H A Draw_storag_iterator.pass.cpp34 Storage buffer; local
35 std::raw_storage_iterator<A*, A> it((A*)&buffer);
40 A* ap = (A*)&buffer + i;
/external/libnfc-nci/src/adaptation/
H A DCrcChecksum.cpp69 ** Description Compute a checksum on a buffer of data.
74 unsigned short crcChecksumCompute (const unsigned char *buffer, int bufferLen) argument
77 const register unsigned char *cp = buffer;
110 char buffer [1024]; local
111 ssize_t actualReadData = read (fileStream, buffer, sizeof(buffer));
113 data.append (buffer, actualReadData);

Completed in 4000 milliseconds

<<11121314151617181920>>