HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 226 - 250 of 4217) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libutil/
op_growable_buffer.h 3 * a growable buffer interface
23 * init_buffer - initialize an empty buffer
24 * @param buffer the buffer to initialize
29 void init_buffer(struct growable_buffer * buffer);
32 * free_buffer - free the memory allocated for this buffer
33 * @param buffer the buffer to free
35 void free_buffer(struct growable_buffer * buffer);
38 * add_data - add data to this buffer
    [all...]
  /external/skia/include/core/
SkDrawLooper.h 71 SkDrawLooper(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {}
SkPathEffect.h 96 static SkFlattenable* CreateProc(SkFlattenableReadBuffer& buffer) {
97 return SkNEW_ARGS(SkComposePathEffect, (buffer));
99 SkComposePathEffect(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {}
131 static SkFlattenable* CreateProc(SkFlattenableReadBuffer& buffer) {
132 return SkNEW_ARGS(SkSumPathEffect, (buffer));
134 SkSumPathEffect(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {}
  /external/srec/portable/src/
pendian.c 27 void swap_byte_order(void *buffer, size_t count, size_t itemSize)
29 char *data = (char *) buffer;
  /external/webkit/Source/WebCore/platform/graphics/opentype/
OpenTypeSanitizer.h 43 explicit OpenTypeSanitizer(SharedBuffer* buffer)
44 : m_buffer(buffer)
  /external/webkit/Source/WebCore/platform/graphics/wince/
GlyphPageTreeNodeWinCE.cpp 36 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
47 DWORD actualCodePages = getCharCodePages(buffer[i], lastPos);
49 setGlyphDataForIndex(offset + i, buffer[i], fontData);
51 setGlyphDataForIndex(offset + i, buffer[i], 0);
61 langFontLink->GetCharCodePages(buffer[i], &actualCodePages);
63 setGlyphDataForIndex(offset + i, buffer[i], fontData);
65 setGlyphDataForIndex(offset + i, buffer[i], 0);
73 setGlyphDataForIndex(offset + i, buffer[i], fontData);
  /external/webkit/Source/WebCore/webaudio/
ConvolverNode.idl 31 attribute [JSCCustomSetter] AudioBuffer buffer;
  /external/wpa_supplicant_8/src/crypto/
sha1_i.h 21 unsigned char buffer[64]; member in struct:SHA1Context
27 void SHA1Transform(u32 state[5], const unsigned char buffer[64]);
  /frameworks/base/core/java/android/net/http/
CharArrayBuffers.java 32 * Returns true if the buffer contains the given string. Ignores leading
35 * @param buffer to search
39 static boolean containsIgnoreCaseTrimmed(CharArrayBuffer buffer,
41 int len = buffer.length();
42 char[] chars = buffer.buffer();
64 static int setLowercaseIndexOf(CharArrayBuffer buffer, final int ch) {
67 int endIndex = buffer.length();
68 char[] chars = buffer.buffer();
    [all...]
  /frameworks/base/services/audioflinger/
AudioBufferProvider.h 31 struct Buffer {
42 virtual status_t getNextBuffer(Buffer* buffer) = 0;
43 virtual void releaseBuffer(Buffer* buffer) = 0;
  /libcore/luni/src/main/java/java/io/
ObjectInput.java 58 * Reads bytes from this stream into the byte array {@code buffer}. Blocks
61 * @param buffer
68 public int read(byte[] buffer) throws IOException;
72 * byte array {@code buffer} starting at offset {@code count}. Blocks while
75 * @param buffer
78 * the initial position in {@code buffer} to store the bytes read
81 * the maximum number of bytes to store in {@code buffer}.
87 public int read(byte[] buffer, int offset, int count) throws IOException;
ObjectOutput.java 46 * Writes the entire contents of the byte array {@code buffer} to the output
49 * @param buffer
50 * the buffer to write.
54 public void write(byte[] buffer) throws IOException;
57 * Writes {@code count} bytes from the byte array {@code buffer} starting at
61 * @param buffer
62 * the buffer to write.
64 * the index of the first byte in {@code buffer} to write.
66 * the number of bytes from {@code buffer} to write to the target
71 public void write(byte[] buffer, int offset, int count) throws IOException
    [all...]
StringBufferInputStream.java 33 protected String buffer; field in class:StringBufferInputStream
59 buffer = str;
78 return pos < count ? buffer.charAt(pos++) & 0xFF : -1;
85 * @param buffer
102 public synchronized int read(byte[] buffer, int offset, int length) {
103 if (buffer == null) {
104 throw new NullPointerException("buffer == null");
106 Arrays.checkOffsetAndCount(buffer.length, offset, length);
113 buffer[offset + i] = (byte) this.buffer.charAt(pos + i)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLEngineAppData.java 30 * Buffer containing received application data.
32 byte[] buffer; field in class:SSLEngineAppData
41 * just the array reference is remembered into the buffer field.
44 if (buffer != null) {
49 buffer = src;
53 * Places the data from the buffer into the array of destination
57 if (buffer == null) {
61 int len = buffer.length;
68 // can fully write remaining data into buffer
69 dsts[i].put(buffer, pos, len - pos)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/
libgen.h 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned
43 * otherwise, place result in 'buffer'
49 * ERANGE: buffer is too short
52 extern int dirname_r(const char* path, char* buffer, size_t bufflen);
53 extern int basename_r(const char* path, char* buffer, size_t bufflen);

Completed in 1297 milliseconds

1 2 3 4 5 6 7 8 91011>>