/external/wpa_supplicant_8/src/crypto/ |
crypto_internal-cipher.c | 21 size_t used_bytes; member in struct:crypto_cipher::__anon31493::__anon31494 113 ctx->u.rc4.used_bytes, crypt, len); 114 ctx->u.rc4.used_bytes += len; 177 ctx->u.rc4.used_bytes, plain, len); 178 ctx->u.rc4.used_bytes += len;
|
crypto_libtomcrypt.c | 289 size_t used_bytes; member in struct:crypto_cipher::__anon31500::__anon31501 359 ctx->u.rc4.used_bytes, crypt, len); 360 ctx->u.rc4.used_bytes += len; 383 ctx->u.rc4.used_bytes, plain, len); 384 ctx->u.rc4.used_bytes += len;
|
/art/runtime/gc/allocator/ |
dlmalloc.cc | 53 extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* arg) { 55 if (used_bytes != 0) {
|
dlmalloc.h | 38 extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* /*arg*/);
|
/external/chromium_org/sandbox/win/src/ |
interception_internal.h | 63 size_t used_bytes; member in struct:sandbox::DllInterceptionData
|
interception_agent.cc | 121 dlls_[i]->used_bytes = offsetof(DllInterceptionData, thunks); 192 thunks->used_bytes += sizeof(ThunkData);
|
interception.cc | 413 dll_data.used_bytes = offsetof(DllInterceptionData, thunks); 526 thunk_bytes - dll_data->used_bytes, 535 dll_data->used_bytes += sizeof(ThunkData);
|
/dalvik/vm/alloc/ |
DdmHeap.cpp | 273 * Called by dlmalloc_inspect_all. If used_bytes != 0 then start is 274 * the start of a malloc-ed piece of memory of size used_bytes. If 280 static void heap_chunk_callback(void* start, void* end, size_t used_bytes, 287 if (used_bytes == 0) { 373 append_chunk(ctx, state, start, used_bytes + HEAP_SOURCE_CHUNK_OVERHEAD); 375 (char*)start + used_bytes + HEAP_SOURCE_CHUNK_OVERHEAD;
|
HeapSource.h | 166 size_t used_bytes, void* arg),
|
HeapSource.cpp | [all...] |
Copying.cpp | 735 size_t used_bytes, void* arg), [all...] |
/external/chromium_org/chrome/renderer/ |
chrome_render_process_observer.cc | 212 size_t used_bytes = 0; local 218 used_bytes = heap_stats.used_heap_size(); 226 used_bytes)); 231 size_t used_bytes) { 235 used_bytes_ += used_bytes;
|
/bionic/libc/upstream-dlmalloc/ |
malloc.h | 277 size_t used_bytes, 285 first used_bytes of the region contain allocated data. If 286 used_bytes is zero, the region is unallocated. The handler is
|
malloc.c | [all...] |
/art/runtime/ |
debugger.cc | [all...] |
/external/chromium_org/content/browser/devtools/ |
renderer_overrides_handler.cc | 663 int64 used_bytes, [all...] |
/art/runtime/gc/ |
heap.cc | 548 static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) { 550 if (used_bytes < chunk_size) { 551 size_t chunk_free_bytes = chunk_size - used_bytes; [all...] |