HomeSort by relevance Sort by last modified time
    Searched full:buffer (Results 251 - 275 of 7143) sorted by null

<<11121314151617181920>>

  /external/kernel-headers/original/linux/
circ_buf.h 10 /* Return count in buffer. */
14 as a completely full buffer has head == tail, which is the same as
18 /* Return count up to the end of the buffer. Carefully avoid
26 /* Return space available up to the end of the buffer. */
xattr.h 37 int (*get)(struct inode *inode, const char *name, void *buffer,
39 int (*set)(struct inode *inode, const char *name, const void *buffer,
47 ssize_t generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size);
48 ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size);
  /external/openssl/crypto/buffer/
Makefile 2 # OpenSSL/crypto/buffer/Makefile
5 DIR= buffer
20 LIBSRC= buffer.c buf_str.c buf_err.c
21 LIBOBJ= buffer.o buf_str.o buf_err.o
25 EXHEADER= buffer.h
77 buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
85 buf_str.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
91 buffer.o: ../../e_os.h ../../include/openssl/bio.h
92 buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.
    [all...]
  /external/oprofile/libop/
op_xml_out.c 94 void open_xml_element(tag_t tag, int with_attrs, char * buffer)
101 fprintf(stderr,"Warning: open_xml_element: buffer overflow %d\n", max_len);
108 strncat(buffer, tmp_buf, sizeof(tmp_buf));
112 void close_xml_element(tag_t tag, int has_nested, char * buffer)
119 fprintf(stderr,"Warning: close_xml_element: buffer overflow %d\n", max_len);
132 strncat(buffer, tmp_buf, sizeof(tmp_buf));
136 void init_xml_int_attr(tag_t attr, int value, char * buffer)
144 "Warning: init_xml_int_attr: buffer overflow %d\n", max_len);
152 strncat(buffer, tmp_buf, sizeof(tmp_buf));
156 void init_xml_dbl_attr(tag_t attr, double value, char * buffer)
    [all...]
  /external/skia/include/core/
SkMallocPixelRef.h 27 /** Allocate the specified buffer for pixels. The memory is freed when the
41 static SkPixelRef* Create(SkFlattenableReadBuffer& buffer) {
42 return SkNEW_ARGS(SkMallocPixelRef, (buffer));
50 SkMallocPixelRef(SkFlattenableReadBuffer& buffer);
  /external/skia/src/effects/
SkDashPathEffect.cpp 149 void SkDashPathEffect::flatten(SkFlattenableWriteBuffer& buffer)
153 buffer.write32(fCount);
154 buffer.write32(fInitialDashIndex);
155 buffer.writeScalar(fInitialDashLength);
156 buffer.writeScalar(fIntervalLength);
157 buffer.write32(fScaleToFit);
158 buffer.writeMul4(fIntervals, fCount * sizeof(fIntervals[0]));
161 SkFlattenable* SkDashPathEffect::CreateProc(SkFlattenableReadBuffer& buffer)
163 return SkNEW_ARGS(SkDashPathEffect, (buffer));
166 SkDashPathEffect::SkDashPathEffect(SkFlattenableReadBuffer& buffer)
    [all...]
  /external/skia/src/images/
SkImageRef_GlobalPool.cpp 42 SkImageRef_GlobalPool::SkImageRef_GlobalPool(SkFlattenableReadBuffer& buffer)
43 : INHERITED(buffer) {
49 SkPixelRef* SkImageRef_GlobalPool::Create(SkFlattenableReadBuffer& buffer) {
50 return SkNEW_ARGS(SkImageRef_GlobalPool, (buffer));
  /external/skia/src/ports/
SkDebug_android.cpp 33 char buffer[kBufferSize + 1]; local
34 vsnprintf(buffer, kBufferSize, format, args);
35 if (buffer[0] != 0)
36 __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, "%s", buffer);
  /frameworks/base/cmds/bugreport/
bugreport.c 25 char buffer[65536]; local
48 int length = read(s, buffer, sizeof(buffer));
51 fwrite(buffer, 1, length, stdout);
  /frameworks/base/libs/surfaceflinger_client/
ISurface.cpp 81 sp<GraphicBuffer> buffer = new GraphicBuffer(); local
82 reply.read(*buffer);
83 return buffer;
144 sp<GraphicBuffer> buffer(requestBuffer(bufferIdx, usage));
145 if (buffer == NULL)
147 return reply->write(*buffer);
151 BufferHeap buffer; local
152 buffer.w = data.readInt32();
153 buffer.h = data.readInt32();
154 buffer.hor_stride = data.readInt32()
    [all...]
  /frameworks/base/opengl/tools/glgen/stubs/gles11/
GLES10cHeader.cpp 62 jclass bufferClassLocal = _env->FindClass("java/nio/Buffer");
66 "getBasePointer", "(Ljava/nio/Buffer;)J");
68 "getBaseArray", "(Ljava/nio/Buffer;)Ljava/lang/Object;");
70 "getBaseArrayOffset", "(Ljava/nio/Buffer;)I");
99 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining)
108 position = _env->GetIntField(buffer, positionID);
109 limit = _env->GetIntField(buffer, limitID);
110 elementSizeShift = _env->GetIntField(buffer, elementSizeShiftID);
113 getBasePointerID, buffer);
120 getBaseArrayID, buffer);
    [all...]
  /ndk/samples/hello-neon/jni/
helloneon.c 85 char buffer[512]; local
110 strlcpy(buffer, str, sizeof buffer);
113 strlcat(buffer, "Neon version : ", sizeof buffer);
116 strlcat(buffer, "Not an ARM CPU !\n", sizeof buffer);
122 strlcat(buffer, "Not an ARMv7 CPU !\n", sizeof buffer);
129 strlcat(buffer, "CPU doesn't support NEON !\n", sizeof buffer)
    [all...]
  /sdk/emulator/qtools/
read_elf.h 16 int ReadSection(Elf32_Shdr *shdr, void *buffer, FILE *f);
  /system/core/logwrapper/
logwrapper.c 49 char buffer[4096]; local
54 while ((sz = read(parent_read, &buffer[b], sizeof(buffer) - 1 - b)) > 0) {
59 if (buffer[b] == '\r') {
60 buffer[b] = '\0';
61 } else if (buffer[b] == '\n') {
62 buffer[b] = '\0';
63 LOG(LOG_INFO, tag, &buffer[a]);
68 if (a == 0 && b == sizeof(buffer) - 1) {
69 // buffer is full, flus
    [all...]
  /system/core/nexus/
WifiController.h 50 virtual int get(int idx, int *buffer) = 0;
62 virtual int get(int idx, char *buffer, size_t max) = 0;
71 int get(int idx, int *buffer);
79 int get(int idx, int *buffer);
87 int get(int idx, int *buffer);
95 int get(int idx, int *buffer);
103 int get(int idx, int *buffer);
111 int get(int idx, int *buffer);
119 int get(int idx, int *buffer);
127 int get(int idx, int *buffer);
    [all...]
  /system/netd/
logwrapper.c 31 char buffer[4096]; local
36 while ((sz = read(parent_read, &buffer[b], sizeof(buffer) - 1 - b)) > 0) {
41 if (buffer[b] == '\r') {
42 buffer[b] = '\0';
43 } else if (buffer[b] == '\n') {
44 buffer[b] = '\0';
46 LOG(LOG_INFO, tag, "%s", &buffer[a]);
51 if (a == 0 && b == sizeof(buffer) - 1) {
52 // buffer is full, flus
    [all...]
  /system/vold/
logwrapper.c 31 char buffer[4096]; local
36 while ((sz = read(parent_read, &buffer[b], sizeof(buffer) - 1 - b)) > 0) {
41 if (buffer[b] == '\r') {
42 buffer[b] = '\0';
43 } else if (buffer[b] == '\n') {
44 buffer[b] = '\0';
46 LOG(LOG_INFO, tag, "%s", &buffer[a]);
51 if (a == 0 && b == sizeof(buffer) - 1) {
52 // buffer is full, flus
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
RandomAccessFile.java 312 * byte array {@code buffer}. The maximum number of bytes read corresponds
313 * to the size of {@code buffer}. Blocks until at least one byte has been
316 * @param buffer
323 public int read(byte[] buffer) throws IOException {
324 return read(buffer, 0, buffer.length);
329 * and stores them in the byte array {@code buffer} starting at {@code
333 * @param buffer
336 * the initial position in {@code buffer} to store the bytes read
339 * the maximum number of bytes to store in {@code buffer}
    [all...]
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/
AddressUtil.java 26 import java.nio.Buffer;
40 * Gets the start address of a direct buffer.
49 * the direct buffer whose address shall be returned must not be
51 * @return the address of the buffer given, or zero if the buffer is not a
52 * direct Buffer.
54 public static int getDirectBufferAddress(Buffer buf) {
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16BECharsetDecoderTest.java 55 // no unmap byte buffer
61 // ByteBuffer buffer = ByteBuffer.allocate(100);
62 // buffer.put((byte)0xd8);
63 // buffer.put((byte)0xd8);
64 // buffer.put(unibytes);
65 // buffer.flip();
66 // return buffer;
UTF16LECharsetDecoderTest.java 57 // no unmap byte buffer
63 // ByteBuffer buffer = ByteBuffer.allocate(100);
64 // buffer.put((byte)0xd8);
65 // buffer.put((byte)0xd8);
66 // buffer.put(unibytes);
67 // buffer.flip();
68 // return buffer;
  /external/opencore/oscl/pvlogger/src/
pvlogger_file_appender.h 140 uint8* buffer = va_arg(va, uint8*); local
145 AppendStringA(0, " %x %x %x %x %x %x %x %x %x %x", buffer[0], buffer[1], buffer[2], buffer[3], buffer[4], buffer[5], buffer[6], buffer[7], buffer[8], buffer[9])
314 void* buffer = va_arg(va, void*); local
320 oscl_memcpy(OSCL_STATIC_CAST(uint8*, _cache.ptr) + _cache.len, buffer, length); local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
uncompr.c 1 /* uncompr.c -- decompress a memory buffer
12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
14 size of the destination buffer, which must be large enough to hold the
18 Upon exit, destLen is the actual size of the compressed buffer.
24 buffer, or Z_DATA_ERROR if the input data was corrupted.
  /external/webkit/WebCore/html/canvas/
WebGLContextAttributes.h 46 // Whether or not the drawing buffer has an alpha channel; default=true
50 // Whether or not the drawing buffer has a depth buffer; default=true
54 // Whether or not the drawing buffer has a stencil buffer; default=true
58 // Whether or not the drawing buffer is antialiased; default=true
62 // Whether or not to treat the values in the drawing buffer as
  /external/zlib/
uncompr.c 1 /* uncompr.c -- decompress a memory buffer
12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
14 size of the destination buffer, which must be large enough to hold the
18 Upon exit, destLen is the actual size of the compressed buffer.
24 buffer, or Z_DATA_ERROR if the input data was corrupted.

Completed in 2601 milliseconds

<<11121314151617181920>>