Home | History | Annotate | Download | only in hexdump

Lines Matching defs:nbytes

60 	int nbytes;
224 int nbytes = 0;
232 nbytes = 1;
238 nbytes = sizeof(float);
241 nbytes = sizeof(double);
244 nbytes = sizeof(long double);
253 nbytes = strtol(type_string, &tmp, 10);
256 nbytes = 8;
265 nbytes = sizeof(char);
268 nbytes = sizeof(short);
271 nbytes = sizeof(int);
274 nbytes = sizeof(long);
283 nbytes = strtol(type_string, &tmp, 10);
286 nbytes = 4;
292 if (odf->type == type && odf->nbytes == nbytes)
295 errx(1, "%c%d: format not supported", type, nbytes);
297 16 / nbytes, nbytes,
298 4 * nbytes - odf->minwidth, "", odf->format);