HomeSort by relevance Sort by last modified time
    Searched refs:total_mem (Results 1 - 6 of 6) sorted by null

  /external/fio/
memory.c 64 static int alloc_mem_shm(struct thread_data *td, unsigned int total_mem)
72 total_mem = (total_mem + mask) & ~mask;
75 td->shm_id = shmget(IPC_PRIVATE, total_mem, flags);
76 dprint(FD_MEM, "shmget %u, %d\n", total_mem, td->shm_id);
118 static int alloc_mem_mmap(struct thread_data *td, size_t total_mem)
130 total_mem = (total_mem + mask) & ~mask;
142 ftruncate(td->mmapfd, total_mem) < 0) {
154 td->orig_buffer = mmap(NULL, total_mem, PROT_READ | PROT_WRITE, flags
205 size_t total_mem; local
241 unsigned int total_mem; local
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
utils.c 65 static size_t total_mem = 0; variable
77 fprintf(stderr, "total_mem: %u\n", (uint32_t)total_mem);
78 fprintf(stderr, "total_mem allocated: %u\n", (uint32_t)total_mem_allocated);
121 total_mem += size;
126 num_malloc_calls + num_calloc_calls, (uint32_t)total_mem);
128 fprintf(stderr, "Mem: %u (+%u)\n", (uint32_t)total_mem, (uint32_t)size);
131 if (total_mem > high_water_mark) high_water_mark = total_mem;
147 total_mem -= block->size_
    [all...]
  /external/webp/src/utils/
utils.c 65 static size_t total_mem = 0; variable
77 fprintf(stderr, "total_mem: %u\n", (uint32_t)total_mem);
78 fprintf(stderr, "total_mem allocated: %u\n", (uint32_t)total_mem_allocated);
121 total_mem += size;
126 num_malloc_calls + num_calloc_calls, (uint32_t)total_mem);
128 fprintf(stderr, "Mem: %u (+%u)\n", (uint32_t)total_mem, (uint32_t)size);
131 if (total_mem > high_water_mark) high_water_mark = total_mem;
147 total_mem -= block->size_
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
header.h 77 unsigned long long total_mem; member in struct:perf_session_env
header.c 1391 fprintf(fp, "# total memory : %Lu kB\n", ph->env.total_mem);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5video.c 898 DWORD total_mem; local
901 &ddsCaps, &total_mem, NULL);
903 total_mem = DDCaps.dwVidMemTotal;
905 this->info.video_mem = total_mem/1024;
    [all...]

Completed in 520 milliseconds