Home
last modified time | relevance | path

Searched refs:line_size (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dclear_cache.c163 const size_t line_size = 32; in __clear_cache()
166 const uintptr_t mask = ~(line_size - 1); in __clear_cache()
168 const uintptr_t end_line = ((uintptr_t)start + len + line_size - 1) & mask; in __clear_cache()
170 for (uintptr_t line = start_line; line < end_line; line += line_size) in __clear_cache()
174 for (uintptr_t line = start_line; line < end_line; line += line_size) in __clear_cache()
/freebsd/sys/arm64/vmm/
H A Dvmm_nvhe.c51 size_t line_size, end; in vmm_dc_civac() local
55 line_size = sizeof(int) << CTR_DLINE_SIZE(ctr); in vmm_dc_civac()
59 for (; start < end; start += line_size) in vmm_dc_civac()
/freebsd/sys/riscv/riscv/
H A Dcache.c44 riscv_cache_install_hooks(struct riscv_cache_ops *newops, u_int line_size) in riscv_cache_install_hooks() argument
50 dcache_line_size = line_size; in riscv_cache_install_hooks()
/freebsd/lib/libutil/
H A Dgr_util.c432 size_t line_size; in gr_make() local
436 line_size = snprintf(NULL, 0, group_line_format, gr->gr_name, in gr_make()
440 line_size += strlen(gr->gr_mem[ndx]) + 1; in gr_make()
442 line_size--; in gr_make()
446 if ((line = p = malloc(line_size)) == NULL) in gr_make()
/freebsd/contrib/byacc/
H A Dreader.c72 size_t line_size; /* length of saved input-line */ member
317 linesize = save_area.line_size; in restore_line()
338 save_area.line_size = linesize; in get_line()
/freebsd/sys/arm64/arm64/
H A Didentcpu.c3079 size_t line_size; in print_cpu_cache() local
3082 line_size = 1 << ((ccs & CCSIDR_LineSize_MASK) + 4); in print_cpu_cache()
3094 cache_size *= line_size; in print_cpu_cache()
/freebsd/sys/dev/cxgbe/
H A Dt4_main.c11842 int line_size = 0; in field_desc_show() local
11849 if (line_size + len >= 79) { in field_desc_show()
11850 line_size = 8; in field_desc_show()
11854 line_size += len + 1; in field_desc_show()