Searched refs:mem_type (Results 1 – 10 of 10) sorted by relevance
/external/fio/ |
D | memory.c | 69 if (td->o.mem_type == MEM_SHMHUGE) { in alloc_mem_shm() 82 if (td->o.mem_type == MEM_SHMHUGE) { in alloc_mem_shm() 131 if (td->o.mem_type == MEM_MMAPHUGE) { in alloc_mem_mmap() 148 if (td->o.mem_type != MEM_MMAPHUGE && in alloc_mem_mmap() 154 if (td->o.mem_type == MEM_MMAPHUGE) in alloc_mem_mmap() 230 if (td->o.mem_type == MEM_MALLOC) in allocate_io_mem() 232 else if (td->o.mem_type == MEM_SHM || td->o.mem_type == MEM_SHMHUGE) in allocate_io_mem() 234 else if (td->o.mem_type == MEM_MMAP || td->o.mem_type == MEM_MMAPHUGE) in allocate_io_mem() 237 log_err("fio: bad mem type: %d\n", td->o.mem_type); in allocate_io_mem() 255 if (td->o.mem_type == MEM_MALLOC) in free_io_mem() [all …]
|
D | thread_options.h | 157 enum fio_memtype mem_type; member 384 uint32_t mem_type; member
|
D | cconv.c | 194 o->mem_type = le32_to_cpu(top->mem_type); in convert_thread_options_to_cpu() 355 top->mem_type = cpu_to_le32(o->mem_type); in convert_thread_options_to_net()
|
D | backend.c | 1052 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) { in init_io_u()
|
D | options.c | 362 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP) in str_mem_cb() 2227 .off1 = td_var_offset(mem_type),
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_posix.cc | 114 void *MmapOrDie(uptr size, const char *mem_type) { in MmapOrDie() argument 131 SanitizerToolName, size, size, mem_type, reserrno); in MmapOrDie() 150 void *MmapNoReserveOrDie(uptr size, const char *mem_type) { in MmapNoReserveOrDie() argument 161 SanitizerToolName, size, size, mem_type, reserrno); in MmapNoReserveOrDie()
|
D | sanitizer_win.cc | 84 void *MmapOrDie(uptr size, const char *mem_type) { in MmapOrDie() argument 89 SanitizerToolName, size, size, mem_type, GetLastError()); in MmapOrDie() 123 void *MmapNoReserveOrDie(uptr size, const char *mem_type) { in MmapNoReserveOrDie() argument 125 return MmapOrDie(size, mem_type); in MmapNoReserveOrDie()
|
D | sanitizer_common.cc | 187 void *MmapAlignedOrDie(uptr size, uptr alignment, const char *mem_type) { in MmapAlignedOrDie() argument 192 uptr map_res = (uptr)MmapOrDie(map_size, mem_type); in MmapAlignedOrDie()
|
D | sanitizer_common.h | 70 void *MmapOrDie(uptr size, const char *mem_type); 73 void *MmapNoReserveOrDie(uptr size, const char *mem_type); 77 void *MmapAlignedOrDie(uptr size, uptr alignment, const char *mem_type);
|
/external/pcre/dist/sljit/ |
D | sljitNativeMIPS_common.c | 2024 # define mem_type WORD_DATA in sljit_emit_op_flags() macro 2026 sljit_si mem_type = (op & SLJIT_INT_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags() local 2039 mem_type = INT_DATA | SIGNED_DATA; in sljit_emit_op_flags() 2047 FAIL_IF(emit_op_mem2(compiler, mem_type | LOAD_DATA, DR(TMP_REG1), src, srcw, dst, dstw)); in sljit_emit_op_flags() 2115 …return emit_op(compiler, op | flags, mem_type | CUMULATIVE_OP | LOGICAL_OP | IMM_OP | ALT_KEEP_CAC… in sljit_emit_op_flags() 2119 return emit_op_mem(compiler, mem_type, dst_ar, dst, dstw); in sljit_emit_op_flags() 2126 # undef mem_type in sljit_emit_op_flags()
|