HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 651 - 675 of 4833) sorted by null

<<21222324252627282930>>

  /external/sonivox/arm-fm-22k/host_src/
eas_hostmm.c 86 EAS_U8 *buffer; member in struct:eas_hw_file_tag
220 if (file->buffer == NULL)
234 /* allocate a buffer */
235 file->buffer = EAS_HWMalloc(hwInstData, file->fileSize);
236 if (file->buffer == NULL)
243 temp = (int) fread(file->buffer, (size_t) file->fileSize, 1, ioFile);
280 if (file->buffer == NULL)
290 EAS_HWMemCpy(pBuffer, &file->buffer[file->filePos], count);
313 if (file->buffer == NULL)
323 /* get a character from the buffer */
    [all...]
  /external/sonivox/arm-hybrid-22k/host_src/
eas_hostmm.c 86 EAS_U8 *buffer; member in struct:eas_hw_file_tag
220 if (file->buffer == NULL)
234 /* allocate a buffer */
235 file->buffer = EAS_HWMalloc(hwInstData, file->fileSize);
236 if (file->buffer == NULL)
243 temp = (int) fread(file->buffer, (size_t) file->fileSize, 1, ioFile);
280 if (file->buffer == NULL)
290 EAS_HWMemCpy(pBuffer, &file->buffer[file->filePos], count);
313 if (file->buffer == NULL)
323 /* get a character from the buffer */
    [all...]
  /hardware/invensense/mlsdk/mllite/
mldl.h 138 unsigned char *buffer);
141 const unsigned char *buffer);
142 inv_error_t inv_load_dmp(const unsigned char *buffer,
153 unsigned char *buffer);
168 const unsigned char *buffer);
172 unsigned char *buffer);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java 48 byte buffer[] = new byte[4096];
49 int rc = is.read(buffer, 0, buffer.length);
58 os.write(buffer, 0, rc);
59 rc = is.read(buffer, 0, buffer.length);
  /system/extras/tests/bionic/libc/common/
bench_stdio.c 42 static char buffer[1024*1024]; variable
55 int totalSize = sizeof(buffer);
57 fread(buffer, 1, chunkSize, fp);
63 int totalSize = sizeof(buffer);
65 fwrite(buffer, 1, chunkSize, fp);
74 double bandwidth = sizeof(buffer)*1000./1024./time_ms; \
  /external/freetype/include/freetype/internal/
ftstream.h 152 /* Integer extraction macros -- the `buffer' parameter must ALWAYS be of */
224 #define FT_NEXT_CHAR( buffer ) \
225 ( (signed char)*buffer++ )
227 #define FT_NEXT_BYTE( buffer ) \
228 ( (unsigned char)*buffer++ )
230 #define FT_NEXT_SHORT( buffer ) \
231 ( (short)( buffer += 2, FT_PEEK_SHORT( buffer - 2 ) ) )
233 #define FT_NEXT_USHORT( buffer ) \
234 ( (unsigned short)( buffer += 2, FT_PEEK_USHORT( buffer - 2 ) )
    [all...]
  /hardware/ril/mock-ril/src/cpp/
requests.cpp 51 * Request has no data so create an empty Buffer
53 int ReqWithNoData(Buffer **pBuffer,
56 static Buffer *emptyBuffer = Buffer::New(0L);
69 int ReqEnterSimPin(Buffer **pBuffer,
72 Buffer *buffer; local
82 buffer = Buffer::New(req->ByteSize());
83 req->SerializeToArray(buffer->data(), buffer->length())
98 Buffer *buffer; local
157 Buffer *buffer; local
183 Buffer *buffer; local
211 Buffer *buffer; local
239 Buffer *buffer; local
347 Buffer *buffer = NULL; local
445 Buffer *buffer = NULL; local
470 char *buffer; local
475 Buffer *buffer = NULL; local
    [all...]
responses.cpp 48 * The Buffer is assumed to be empty so nothing to convert
52 int cmd, RIL_Token token, RIL_Errno rilErrno, Buffer *buffer) {
69 int cmd, RIL_Token token, RIL_Errno rilErrno, Buffer *buffer) {
73 rsp->ParseFromArray(buffer->data(), buffer->length());
95 int cmd, RIL_Token token, RIL_Errno rilErrno, Buffer *buffer) {
99 rsp->ParseFromArray(buffer->data(), buffer->length())
389 Buffer* buffer; local
458 Buffer* buffer; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_dpb.c 287 if (index < 0 || !IS_EXISTING(dpb->buffer[index]))
294 dpb->list[refIdx++] = &dpb->buffer[index];
297 if(dpb->list[j] != &dpb->buffer[index])
317 HANTRO_NOK failure, picture does not exist in the buffer
338 SET_UNUSED(dpb->buffer[index]);
340 if (!dpb->buffer[index].toBeDisplayed)
357 HANTRO_NOK failure, picture does not exist in the buffer
374 SET_UNUSED(dpb->buffer[index]);
376 if (!dpb->buffer[index].toBeDisplayed)
395 buffer or is a non-existing picture, or invali
    [all...]
  /bionic/libc/kernel/common/linux/
xattr.h 41 int (*get)(struct inode *inode, const char *name, void *buffer,
44 int (*set)(struct inode *inode, const char *name, const void *buffer,
  /development/host/windows/usb/api/
adb_legacy_endpoint_object.h 60 @param[in,out] buffer Pointer to the buffer for read / write.
73 void* buffer,
82 @param[in,out] buffer Pointer to the buffer for read / write.
92 void* buffer,
  /development/host/windows/usb/winusb/
adb_winusb_endpoint_object.h 83 @param[in,out] buffer Pointer to the buffer for read / write.
96 void* buffer,
105 @param[in,out] buffer Pointer to the buffer for read / write.
115 void* buffer,
  /development/ndk/platforms/android-3/include/linux/
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,
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMScheme.java 91 final CharArrayBuffer buffer, int pos, int len) throws MalformedChallengeException {
92 String challenge = buffer.substringTrimmed(pos, len);
134 CharArrayBuffer buffer = new CharArrayBuffer(32); local
136 buffer.append(AUTH.PROXY_AUTH_RESP);
138 buffer.append(AUTH.WWW_AUTH_RESP);
140 buffer.append(": NTLM ");
141 buffer.append(response);
142 return new BufferedHeader(buffer);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AVT.java 182 FastStringBuffer buffer = null; local
185 buffer = StringBufferPool.get();
188 buffer = new FastStringBuffer(6);
218 buffer.append(t);
234 buffer.append(lookahead);
251 if (buffer.length() > 0)
253 m_parts.addElement(new AVTPartSimple(buffer.toString()));
254 buffer.setLength(0);
306 buffer.setLength(0);
359 buffer.append(lookahead)
    [all...]
  /external/chromium/base/
sync_socket.h 46 // buffer is a pointer to the data to send.
49 size_t Send(const void* buffer, size_t length);
52 // buffer is a pointer to the buffer to receive data.
55 size_t Receive(void* buffer, size_t length);
  /external/chromium/chrome/browser/autofill/crypto/
rc4_decryptor.h 34 scoped_array<wchar_t> buffer(new wchar_t[data.length() + 1]);
35 memset(buffer.get(), 0, (data.length() + 1) * sizeof(wchar_t));
36 memcpy(buffer.get(), data.c_str(), data_size);
38 RunInternal(reinterpret_cast<uint8 *>(buffer.get()), data_size);
40 std::wstring result(buffer.get());
43 memset(buffer.get(), 0, data_size);
80 void RunInternal(uint8 *buffer, int buffer_len) {
94 buffer[counter] ^= state[xor_index];
  /external/chromium/crypto/
encryptor_nss.cc 61 std::vector<unsigned char> buffer(ciphertext_len);
65 &buffer[0],
76 &buffer[op_len],
82 ciphertext->assign(reinterpret_cast<char *>(&buffer[0]),
99 std::vector<unsigned char> buffer(plaintext_len);
103 &buffer[0],
114 &buffer[op_len],
120 plaintext->assign(reinterpret_cast<char *>(&buffer[0]),
  /external/chromium/net/spdy/
spdy_io_buffer.h 23 // |buffer| is the actual data buffer.
24 // |size| is the size of the data buffer.
25 // |priority| is the priority of this buffer. Lower numbers are higher
27 // |stream| is a pointer to the stream which is managing this buffer.
28 SpdyIOBuffer(IOBuffer* buffer, int size, int priority, SpdyStream* stream);
33 DrainableIOBuffer* buffer() const { return buffer_; } function in class:net::SpdyIOBuffer
  /external/dbus/dbus/
dbus-pipe-win.c 37 * @param buffer the buffer to write data from
38 * @param start the first byte in the buffer to write
45 const DBusString *buffer,
53 const char *buffer_c = _dbus_string_get_const_data (buffer);
  /external/easymock/src/org/easymock/internal/matchers/
CompareTo.java 42 public void appendTo(StringBuffer buffer) {
43 buffer.append(getName() + "(" + expected + ")");
EqualsWithDelta.java 43 public void appendTo(StringBuffer buffer) {
44 buffer.append("eq(" + expected + ", " + delta + ")");
Find.java 38 public void appendTo(StringBuffer buffer) {
39 buffer.append("find(\"" + regex.replaceAll("\\\\", "\\\\\\\\") + "\")");
  /external/freetype/src/base/
ftbitmap.c 54 if ( source->buffer == NULL )
65 if ( target->buffer )
76 (void)FT_QREALLOC( target->buffer, target_size, size );
79 (void)FT_QALLOC( target->buffer, size );
86 p = target->buffer;
88 target->buffer = p;
90 FT_MEM_COPY( target->buffer, source->buffer, size );
108 unsigned char* buffer = NULL; local
151 FT_Byte* line = bitmap->buffer + ( bit_last >> 3 )
    [all...]
  /external/icu4c/tools/genrb/
rle.h 40 byteArrayToRLEString(const uint8_t* src,int32_t srcLen, uint16_t* buffer,int32_t bufLen, UErrorCode* status);
57 usArrayToRLEString(const uint16_t* src,int32_t srcLen,uint16_t* buffer, int32_t bufLen,UErrorCode* status);

Completed in 467 milliseconds

<<21222324252627282930>>