HomeSort by relevance Sort by last modified time
    Searched defs:buffer (Results 326 - 350 of 3561) sorted by null

<<11121314151617181920>>

  /external/freetype/src/cff/
cf2stack.h 65 CF2_StackNumber buffer[CF2_OPERAND_STACK_SIZE]; member in struct:CF2_StackRec_
  /external/harfbuzz_ng/contrib/python/lib/
harfbuzz.pyx 44 cdef extern from "hb-buffer.h" :
64 hb_buffer_t *hb_buffer_reference(hb_buffer_t *buffer)
65 unsigned int hb_buffer_get_reference_count(hb_buffer_t *buffer)
66 void hb_buffer_destroy(hb_buffer_t *buffer)
67 void hb_buffer_set_direction(hb_buffer_t *buffer, hb_direction_t direction)
68 hb_direction_t hb_buffer_get_direction(hb_buffer_t *buffer)
69 void hb_buffer_set_script(hb_buffer_t *buffer, hb_script_t script)
70 hb_script_t hb_buffer_get_script(hb_buffer_t *buffer)
71 void hb_buffer_set_language(hb_buffer_t *buffer, hb_language_t language)
72 hb_language_t hb_buffer_get_language(hb_buffer_t *buffer)
132 cdef class buffer : class in inherits:
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-normalize-private.hh 33 #include "hb-buffer.h"
35 /* buffer var allocations, used during the normalization process */
50 hb_buffer_t *buffer,
57 hb_buffer_t *buffer; member in struct:hb_ot_shape_normalize_context_t
  /external/harfbuzz_ng/util/
main-font-text.hh 60 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);
  /external/icu4c/common/
charstr.h 41 CharString() : len(0) { buffer[0]=0; }
43 buffer[0]=0;
47 buffer[0]=0;
51 buffer[0]=0;
66 char operator[](int32_t index) const { return buffer[index]; }
67 StringPiece toStringPiece() const { return StringPiece(buffer.getAlias(), len); }
69 const char *data() const { return buffer.getAlias(); }
70 char *data() { return buffer.getAlias(); }
72 CharString &clear() { len=0; buffer[0]=0; return *this; }
84 * Returns a writable buffer for appending and writes the buffer's capacity t
118 MaybeStackArray<char, 40> buffer; member in class:CharString
    [all...]
  /external/icu4c/common/unicode/
caniter.h 179 UnicodeString buffer; member in class:CanonicalIterator
196 //Set extract(int comp, String segment, int segmentPos, StringBuffer buffer);
normlzr.h 101 * The normalized results is stored in an internal string buffer, and
106 * The following "safe" index, the internal buffer, and the secondary
107 * iteration index into that buffer are not exposed on the API.
111 * current index into the internal buffer.
751 // The normalization buffer is the result of normalization
755 // A buffer for holding intermediate results
756 UnicodeString buffer; member in class:Normalizer
  /external/icu4c/i18n/
bocsu.cpp 106 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity); local
112 buffer=scratch;
115 p=reinterpret_cast<uint8_t *>(buffer);
133 sink.Append(buffer, (int32_t)(p-reinterpret_cast<uint8_t *>(buffer)));
  /external/icu4c/samples/csdet/
csdet.c 18 static char buffer[BUFFER_SIZE]; local
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
52 ucsdet_setText(csd, buffer, inputLength, &status);
  /external/icu4c/tools/toolutil/
flagparser.c 16 static int32_t extractFlag(char* buffer, int32_t bufferSize, char* flag, int32_t flagSize, const char ** flagNames, int32_t numOfFlags, UErrorCode *status);
17 static int32_t getFlagOffset(const char *buffer, int32_t bufferSize);
24 char* buffer = uprv_malloc(sizeof(char) * currentBufferSize); local
36 if (buffer == NULL) {
45 uprv_free(buffer);
46 buffer = uprv_malloc(sizeof(char) * currentBufferSize);
47 if (buffer == NULL) {
54 if (T_FileStream_readLine(f, buffer, currentBufferSize) == NULL) {
58 if (buffer[0] == '#') {
62 if (uprv_strlen(buffer) == (currentBufferSize - 1) && buffer[currentBufferSize-2] != '\n')
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
EnumSerializer.java 60 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
62 buffer.putInt(-1);
64 buffer.putInt(((Enum)object).ordinal());
  /external/jpeg/
example.c 57 * pointer to our image buffer. In particular, let's say that the image is
93 int row_stride; /* physical row width in image buffer */
219 * buffer, but to send it line-by-line someplace else. We need a one-
220 * scanline-high JSAMPLE array as a work buffer, and we will let the JPEG
222 * because we don't need to remember to deallocate the buffer separately: it
242 * longjmp(). But we need to make the setjmp buffer accessible to the
297 JSAMPARRAY buffer; /* Output row buffer */ local
298 int row_stride; /* physical row width in output buffer */
358 * In this example, we need to make an output work buffer of the right size
    [all...]
jdatadst.c 29 JOCTET * buffer; /* start of buffer */ member in struct:__anon21415
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 has been dumped
    [all...]
jdatasrc.c 29 JOCTET * buffer; /* start of buffer */ member in struct:__anon21416
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. In most cases, generating a warning message and inserting
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
BufferedResourceLoader.java 39 protected Reader buffer(Reader reader) { method in class:BufferedResourceLoader
  /external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java 24 * 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. The size is fixed
    [all...]
  /external/junit/src/junit/framework/
TestFailure.java 41 StringBuffer buffer= new StringBuffer(); local
42 buffer.append(fFailedTest+": "+fThrownException.getMessage());
43 return buffer.toString();
49 StringBuffer buffer= stringWriter.getBuffer(); local
50 return buffer.toString();
  /external/junit/src/org/junit/experimental/theories/internal/
ParameterizedAssertionError.java 30 StringBuffer buffer = new StringBuffer(); local
34 buffer.append(stringValueOf(next));
36 buffer.append(delimiter);
39 return buffer.toString();
  /external/libnfc-nci/src/adaptation/
CrcChecksum.cpp 69 ** Description Compute a checksum on a buffer of data.
74 unsigned short crcChecksumCompute (const unsigned char *buffer, int bufferLen)
77 const register unsigned char *cp = buffer;
110 char buffer [1024]; local
111 size_t actualReadData = read (fileStream, buffer, sizeof(buffer));
113 data.append (buffer, actualReadData);
  /external/libvorbis/lib/
analysis.c 73 char buffer[80]; local
75 sprintf(buffer,"%s_%d.m",base,i);
76 of=fopen(buffer,"w");
  /external/libvpx/libvpx/test/
superframe_test.cc 48 const uint8_t *buffer = reinterpret_cast<uint8_t*>(pkt->data.frame.buf); local
49 const uint8_t marker = buffer[pkt->data.frame.sz - 1];
55 buffer[pkt->data.frame.sz - index_sz] == marker) {
  /external/libvpx/libvpx/vp9/decoder/
vp9_dboolhuff.c 22 int vp9_reader_init(vp9_reader *r, const uint8_t *buffer, size_t size) {
25 r->buffer_end = buffer + size;
26 r->buffer = buffer;
31 if (size && !buffer)
41 const uint8_t *buffer = r->buffer; local
46 const int bits_left = (int)((buffer_end - buffer)*CHAR_BIT);
57 value |= (VP9_BD_VALUE)*buffer++ << shift;
62 r->buffer = buffer
    [all...]
  /external/llvm/include/llvm/Support/
MD5.h 44 uint8_t buffer[64]; member in class:llvm::MD5
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 19 static char buffer[10]; member in class:__anon24175::ImmutableSetTest
25 MyIter() : counter(0), ptr(buffer) {
26 for (unsigned i=0; i<sizeof(buffer);++i) buffer[i]='\0';
34 char ImmutableSetTest::buffer[10]; member in class:__anon24175::ImmutableSetTest
149 ASSERT_STREQ("aeiou", buffer);
161 ASSERT_STREQ("bcdfgh", buffer);
166 ASSERT_STREQ("bcd", buffer);
171 ASSERT_STREQ("", buffer);
  /external/llvm/utils/
DSAextract.py 59 buffer = input.readline() variable
60 while buffer != '':
62 if not arrowexp.search(buffer):
67 if regexp.search(buffer):
68 node_set |= set([re.split('\s+',buffer,2)[1]])
70 buffer = input.readline() variable
86 buffer = input.readline() variable
87 while buffer != '':
95 if arrowexp.search(buffer):
98 nodes = arrowexp.split(buffer)
110 buffer = input.readline() variable
    [all...]

Completed in 524 milliseconds

<<11121314151617181920>>