/src/sbin/fsck_v7fs/ |
main.c | 150 size_t linesize = 0; local in function:reply_subr 172 if ((linelen = getline(&line, &linesize, stdin)) == -1) {
|
/src/sys/arch/x86/x86/ |
identcpu_subr.c | 219 int type, level, ways, partitions, linesize, sets, totalsize; local in function:cpu_dcp_cacheinfo 260 linesize = __SHIFTOUT(descs[1], CPUID_DCP_LINESIZE) 263 totalsize = ways * partitions * linesize * sets; 266 ci->ci_cinfo[caitype].cai_linesize = linesize;
|
/src/sys/external/bsd/drm2/dist/drm/qxl/ |
qxl_image.c | 118 int linesize = width * depth / 8; local in function:qxl_image_init_helper 128 chunk_stride = stride; /* TODO: should use linesize, but it renders 145 if (stride == linesize && chunk_stride == stride) { 146 remain = linesize * height; 175 remain = linesize;
|
/src/sys/arch/alpha/include/ |
ecoff_machdep.h | 73 long linesize; member in struct:ecoff_symhdr
|
/src/usr.sbin/veriexecgen/ |
veriexecgen.c | 321 size_t linesize = 0; local in function:read_from_file 324 while ((linelen = getline(&line, &linesize, file)) != -1) {
|
/src/sys/arch/sparc64/sparc64/ |
cpu.c | 490 int linesize, dcachesize, icachesize; local in function:cpu_attach 580 linesize = l = cpu_icache_line_size(node); 581 if (linesize > icache_line_size) 582 icache_line_size = linesize; 600 (long)linesize); 604 ci->ci_cacheinfo.c_ilinesize = linesize; 609 linesize = l = cpu_dcache_line_size(node); 610 if (linesize > dcache_line_size) 611 dcache_line_size = linesize; 629 (long)linesize); [all...] |
/src/usr.bin/last/ |
last.c | 133 " [-H hostsize] [-h host] [-L linesize]\n" 151 int linesize = UT_LINESIZE; local in function:main 192 linesize = atoi(optarg); 193 if (linesize < 1) 253 wtmpx(file, namesize, linesize, hostsize, numeric); 255 wtmp(file, namesize, linesize, hostsize, numeric); 257 wtmpx(file, namesize, linesize, hostsize, numeric); 259 wtmp(file, namesize, linesize, hostsize, numeric); 378 #define LINESIZE UT_LINESIZE 385 #undef LINESIZE [all...] |
/src/usr.sbin/makemandb/ |
makemandb.c | 304 size_t linesize; local in function:main 413 linesize = 0; 414 while ((len = getline(&line, &linesize, file)) != -1) {
|
/src/usr.sbin/cpuctl/arch/ |
i386.c | 973 int type, level, ways, linesize, sets; local in function:intel_cpu_cacheinfo 1105 linesize = 1024 * 1024 * 1024; 1110 linesize = 4 * 1024 * 1024; 1115 linesize = 2 * 1024 * 1024; 1121 linesize = 4 * 1024; 1142 linesize = 4 * 1024; 1145 linesize = 2 * 1024 * 1024; 1148 linesize = 4 * 1024 * 1024; 1151 linesize = 1024 * 1024 * 1024; 1155 linesize = 1024 * 1024 * 1024; /* MAX 1G * [all...] |
/src/sbin/newfs_udf/ |
udf_core.c | 3783 int linesize, offset, ret; local in function:udf_writeout_writequeue 3795 linesize = blockingnr * context.sector_size; 3796 linebuf = calloc(1, linesize); 3807 ret = pread(dev_fd, linebuf, linesize, rpos); 3835 //printf("write %lu + %d\n", packet->start_sectornr, linesize / context.sector_size);
|