Searched refs:totsize (Results 1 – 6 of 6) sorted by relevance
| /dragonfly/contrib/gcc-4.7/gcc/ |
| HD | vmsdbgout.c | 579 int totsize = 0; in write_modbeg() local 608 totsize += write_debug_header (&modbeg.dst_a_modbeg_header, in write_modbeg() 610 totsize += write_debug_data1 (*((char *) &modbeg.dst_b_modbeg_flags), in write_modbeg() 612 totsize += write_debug_data1 (modbeg.dst_b_modbeg_unused, in write_modbeg() 614 totsize += write_debug_data4 (modbeg.dst_l_modbeg_language, in write_modbeg() 616 totsize += write_debug_data2 (modbeg.dst_w_version_major, in write_modbeg() 618 totsize += write_debug_data2 (modbeg.dst_w_version_minor, in write_modbeg() 620 totsize += write_debug_data1 (modbeg.dst_b_modbeg_name, in write_modbeg() 622 totsize += write_debug_string (module_name, "module name", dosizeonly); in write_modbeg() 623 totsize += write_debug_data1 (mb_trlr.dst_b_compiler, in write_modbeg() [all …]
|
| /dragonfly/contrib/gdb-7/gdb/gnulib/import/ |
| HD | fnmatch.c | 280 size_t totsize; in fnmatch() local 296 totsize = patsize + strsize; in fnmatch() 297 if (__builtin_expect (! (patsize <= totsize in fnmatch() 298 && totsize <= SIZE_MAX / sizeof (wchar_t)), in fnmatch() 306 if (__builtin_expect (totsize < ALLOCA_LIMIT, 1)) in fnmatch() 307 wpattern = (wchar_t *) alloca (totsize * sizeof (wchar_t)); in fnmatch() 310 wpattern = malloc (totsize * sizeof (wchar_t)); in fnmatch() 327 if (__builtin_expect (! (totsize < ALLOCA_LIMIT), 0)) in fnmatch()
|
| /dragonfly/sys/dev/smbus/atmel_mxt/ |
| HD | test_atmel.c | 170 size_t totsize; in main() local 187 totsize = blksize + sizeof(struct mxt_raw_crc); in main() 188 assert(totsize < sizeof(rbuf)); in main() 190 n = mxt_read_reg(fd, 0, rbuf, totsize); in main() 191 if (n != totsize) { in main() 192 printf("mxt_read_reg: config failed: %d/%d\n", n, totsize); in main()
|
| HD | atmel_mxt.c | 364 int totsize; in init_device() local 385 totsize = blksize + sizeof(struct mxt_raw_crc); in init_device() 387 sc->core.buf = kmalloc(totsize, M_DEVBUF, M_WAITOK | M_ZERO); in init_device() 388 if (mxt_read_reg(sc, 0, sc->core.buf, totsize)) { in init_device()
|
| /dragonfly/usr.sbin/lpr/common_source/ |
| HD | displayq.c | 74 static long totsize; /* total print job size in bytes */ variable 97 totsize = 0; in displayq() 369 printf("%ld bytes\n", totsize); in inform() 370 totsize = 0; in inform() 476 totsize += copies * lbuf.st_size; in dump()
|
| /dragonfly/sys/vm/ |
| HD | vm_zone.c | 286 size_t totsize; in zinitna() local 328 totsize = round_page((size_t)z->zsize * nentries); in zinitna() 329 atomic_add_long(&zone_kmem_kvaspace, totsize); in zinitna() 331 z->zkva = kmem_alloc_pageable(kernel_map, totsize, in zinitna() 338 z->zpagemax = totsize / PAGE_SIZE; in zinitna()
|