HomeSort by relevance Sort by last modified time
    Searched refs:byte_count (Results 1 - 25 of 71) sorted by null

1 2 3

  /bionic/libc/include/
malloc.h 30 extern void* malloc(size_t byte_count) __mallocfunc __wur;
32 extern void* realloc(void* p, size_t byte_count) __wur;
35 extern void* memalign(size_t alignment, size_t byte_count) __mallocfunc __wur;
38 extern void* valloc(size_t byte_count) __mallocfunc __wur;
39 extern void* pvalloc(size_t byte_count) __mallocfunc __wur;
  /external/chromium/net/socket/
client_socket.cc 20 NetLogBytesTransferredParameter(int byte_count, const char* bytes);
31 int byte_count, const char* transferred_bytes)
32 : byte_count_(byte_count),
35 hex_encoded_bytes_ = base::HexEncode(transferred_bytes, byte_count);
42 dict->SetInteger("byte_count", byte_count_);
149 int byte_count,
153 params = new NetLogBytesTransferredParameter(byte_count, bytes);
155 params = new NetLogBytesTransferredParameter(byte_count, NULL);
client_socket.h 134 int byte_count, char* bytes) const;
  /bionic/libc/private/
ThreadLocalBuffer.h 52 #define LOCAL_INIT_THREAD_LOCAL_BUFFER(type, name, byte_count) \
56 name ## _tls_buffer = reinterpret_cast<type>(calloc(1, byte_count)); \
59 const size_t name ## _tls_buffer_size __attribute__((unused)) = byte_count
  /external/jpeg/
jmemansi.c 99 long file_offset, long byte_count)
103 if (JFREAD(info->temp_file, buffer_address, byte_count)
104 != (size_t) byte_count)
112 long file_offset, long byte_count)
116 if (JFWRITE(info->temp_file, buffer_address, byte_count)
117 != (size_t) byte_count)
jmem-android.c 101 long file_offset, long byte_count)
105 if (JFREAD(info->temp_file, buffer_address, byte_count)
106 != (size_t) byte_count)
114 long file_offset, long byte_count)
118 if (JFWRITE(info->temp_file, buffer_address, byte_count)
119 != (size_t) byte_count)
jmemmac.c 156 long file_offset, long byte_count)
158 long bytes = byte_count;
166 if ( retVal != noErr || bytes != byte_count )
174 long file_offset, long byte_count)
176 long bytes = byte_count;
184 if ( retVal != noErr || bytes != byte_count )
jmemname.c 206 long file_offset, long byte_count)
210 if (JFREAD(info->temp_file, buffer_address, byte_count)
211 != (size_t) byte_count)
219 long file_offset, long byte_count)
223 if (JFWRITE(info->temp_file, buffer_address, byte_count)
224 != (size_t) byte_count)
jmem-ashmem.c 98 long file_offset, long byte_count)
100 memmove(buffer_address, info->addr + file_offset, byte_count);
107 long file_offset, long byte_count)
109 memmove(info->addr + file_offset, buffer_address, byte_count);
jmemdos.c 245 long file_offset, long byte_count)
249 /* Since MAX_ALLOC_CHUNK is less than 64K, byte_count will be too. */
250 if (byte_count > 65535L) /* safety check */
253 (unsigned short) byte_count))
261 long file_offset, long byte_count)
265 /* Since MAX_ALLOC_CHUNK is less than 64K, byte_count will be too. */
266 if (byte_count > 65535L) /* safety check */
269 (unsigned short) byte_count))
335 long file_offset, long byte_count)
342 * specially if byte_count is odd. We don't expect this to be common
    [all...]
jmemsys.h 144 long file_offset, long byte_count));
148 long file_offset, long byte_count));
  /external/qemu/distrib/jpeg-6b/
jmemansi.c 99 long file_offset, long byte_count)
103 if (JFREAD(info->temp_file, buffer_address, byte_count)
104 != (size_t) byte_count)
112 long file_offset, long byte_count)
116 if (JFWRITE(info->temp_file, buffer_address, byte_count)
117 != (size_t) byte_count)
jmem-android.c 101 long file_offset, long byte_count)
105 if (JFREAD(info->temp_file, buffer_address, byte_count)
106 != (size_t) byte_count)
114 long file_offset, long byte_count)
118 if (JFWRITE(info->temp_file, buffer_address, byte_count)
119 != (size_t) byte_count)
jmemmac.c 156 long file_offset, long byte_count)
158 long bytes = byte_count;
166 if ( retVal != noErr || bytes != byte_count )
174 long file_offset, long byte_count)
176 long bytes = byte_count;
184 if ( retVal != noErr || bytes != byte_count )
jmemname.c 206 long file_offset, long byte_count)
210 if (JFREAD(info->temp_file, buffer_address, byte_count)
211 != (size_t) byte_count)
219 long file_offset, long byte_count)
223 if (JFWRITE(info->temp_file, buffer_address, byte_count)
224 != (size_t) byte_count)
jmem-ashmem.c 97 long file_offset, long byte_count)
99 memmove(buffer_address, info->addr + file_offset, byte_count);
106 long file_offset, long byte_count)
108 memmove(info->addr + file_offset, buffer_address, byte_count);
jmemdos.c 245 long file_offset, long byte_count)
249 /* Since MAX_ALLOC_CHUNK is less than 64K, byte_count will be too. */
250 if (byte_count > 65535L) /* safety check */
253 (unsigned short) byte_count))
261 long file_offset, long byte_count)
265 /* Since MAX_ALLOC_CHUNK is less than 64K, byte_count will be too. */
266 if (byte_count > 65535L) /* safety check */
269 (unsigned short) byte_count))
335 long file_offset, long byte_count)
342 * specially if byte_count is odd. We don't expect this to be common
    [all...]
jmemsys.h 144 long file_offset, long byte_count));
148 long file_offset, long byte_count));
  /external/chromium/net/url_request/
url_request_job_tracker.cc 57 int byte_count) {
59 OnBytesRead(job, buf, byte_count));
url_request_job_tracker.h 53 // the given job. |byte_count| is the number of bytes for that
58 int byte_count) = 0;
85 void OnBytesRead(URLRequestJob* job, const char* buf, int byte_count);
  /external/openssl/ssl/
bio_ssl.c 81 unsigned long byte_count; member in struct:bio_ssl_st
176 sb->byte_count+=ret;
177 if (sb->byte_count > sb->renegotiate_count)
179 sb->byte_count=0;
251 bs->byte_count+=ret;
252 if (bs->byte_count > bs->renegotiate_count)
254 bs->byte_count=0;
451 ((BIO_SSL *)dbio->ptr)->byte_count=
452 ((BIO_SSL *)b->ptr)->byte_count;
  /external/chromium/chrome/browser/task_manager/
task_manager.h 305 int byte_count);
345 int byte_count)
349 byte_count(byte_count) {}
359 int byte_count; member in struct:TaskManagerModel::BytesReadParam
  /packages/apps/Nfc/nci/jni/
NativeLlcpConnectionlessSocket.cpp 72 size_t byte_count = bytes.size(); local
74 ALOGD("NFA_P2pSendUI: len = %d", byte_count);
76 tNFA_STATUS status = NFA_P2pSendUI((tNFA_HANDLE) handle, nsap, byte_count, raw_ptr);
  /development/ndk/platforms/android-3/include/linux/
msm_audio.h 47 uint32_t byte_count; member in struct:msm_audio_stats
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
msm_audio.h 47 uint32_t byte_count; member in struct:msm_audio_stats

Completed in 587 milliseconds

1 2 3