/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/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/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/usr.bin/uniq/ |
uniq.c | 202 skip(const char *str, size_t *linesize) 205 size_t ls = *linesize; 217 *linesize = ls;
|
/src/sys/arch/alpha/include/ |
ecoff_machdep.h | 73 long linesize; member in struct:ecoff_symhdr
|
/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/sbin/fsck_v7fs/ |
main.c | 150 size_t linesize = 0; local in function:reply_subr 172 if ((linelen = getline(&line, &linesize, stdin)) == -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/sys/stand/efiboot/bootarm/ |
cache.S | 73 ubfx ip, r0, #0, #3 @ get linesize from CCSIDR 130 ubfx r0, r0, #0, #3 @ get linesize from CCSIDR 132 lsl r2, r2, r0 @ shift sets by log2(linesize)
|
/src/usr.bin/mail/ |
fio.c | 188 char linebuf[LINESIZE]; 197 (void)snprintf(linebuf, LINESIZE, "%s/mail.XXXXXX", tmpdir); 226 if (fgets(linebuf, LINESIZE, ibuf) == NULL) { 320 readline(FILE *ibuf, char *linebuf, int linesize, int no_restart) 335 if (fgets(linebuf, linesize, ibuf) == NULL)
|
/src/usr.sbin/syslogd/ |
sign.c | 794 * linesize is available memory (= sizeof(sd)) 799 sign_msg_sign(struct buf_msg **bufferptr, char *sd, size_t linesize) 808 assert(endptr < linesize); 842 newlinelen = strlcat(sd, signature, linesize); 843 newlinelen = strlcat(sd, "\"]", linesize); 845 if (newlinelen >= linesize) { 852 assert(newlinelen < linesize);
|
/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/arm/arm/ |
cpufunc_asm_armv7.S | 340 ubfx r0, r0, #0, #3 @ get linesize from CCSIDR 342 lsl r2, r2, r0 @ shift sets by log2(linesize) 375 ubfx ip, r0, #0, #3 @ get linesize from CCSIDR 429 ubfx ip, r0, #0, #3 @ get linesize from CCSIDR 490 ubfx ip, r0, #0, #3 @ get linesize from CCSIDR
|
/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/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);
|