| /src/tests/bin/df/ | 
| getmntinfo.c | 67     const int *consumed, int consumedcnt) 78 			used =  total * consumed[j] / 100;
 110 	static const int consumed[] = { 0, 20, 60, 95, 100 };  local in function:setup_filer
 114 	    consumed, sizeof(consumed) / sizeof(consumed[0]));
 143 	static const int consumed[] = { 0, 20, 60, 95, 100 };  local in function:setup_ld0g
 147 	    consumed, sizeof(consumed) / sizeof(consumed[0]))
 [all...]
 | 
| /src/lib/libc/stdio/ | 
| open_wmemstream.c | 130 	ssize_t consumed, wlen;  local in function:wmemstream_write 147 	consumed = 0;
 152 			if (consumed == 0) {
 163 			consumed += len;
 166 			consumed += charlen;
 174 	fprintf(stderr, "WMS: write(%p, %zu) = %zd\n", ms, len, consumed);
 176 	return (consumed);
 
 | 
| /src/sys/arch/amd64/stand/prekern/ | 
| prng.c | 208 	size_t consumed;  local in function:prng_get_rand 213 		consumed = RNGDATA_SIZE - rng.nused;
 214 		memcpy(ptr, &rng.data[rng.nused], consumed);
 220 		memcpy(ptr + consumed, &rng.data[rng.nused],
 221 		    sz - consumed);
 223 		rng.nused += (sz - consumed);
 
 | 
| /src/tests/kernel/ | 
| h_segv.c | 238 				goto consumed; 244 				goto consumed;
 250 	consumed:
 
 | 
| /src/usr.bin/nl/ | 
| nl.c | 279 	int consumed;		/* intbuffer measurement */  local in function:filter 333 			consumed = snprintf(intbuffer, intbuffersize, format,
 336 			    intbuffer + max(0, consumed - width), sep);
 
 | 
| /src/usr.bin/make/unit-tests/ | 
| job-output.mk | 11 # by byte, to be consumed in small pieces by make.  No matter what the chunk 
 | 
| /src/usr.sbin/acpitools/acpidump/ | 
| acpi.c | 3653 	int remaining, consumed;  local in function:acpi_handle_dmar_drhd 3675 		consumed = acpi_handle_dmar_devscope(cp, remaining);
 3676 		if (consumed <= 0)
 3679 			remaining -= consumed;
 3687 	int remaining, consumed;  local in function:acpi_handle_dmar_rmrr
 3701 		consumed = acpi_handle_dmar_devscope(cp, remaining);
 3702 		if (consumed <= 0)
 3705 			remaining -= consumed;
 3713 	int remaining, consumed;  local in function:acpi_handle_dmar_atsr
 3734 		consumed = acpi_handle_dmar_devscope(cp, remaining)
 3808  int remaining, consumed;  local in function:acpi_handle_dmar
 [all...]
 |