HomeSort by: relevance | last modified time | path
    Searched defs:newcount (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.bin/fpr/
fpr.c 278 int newcount; local in function:savech
310 newcount = cp->count + 1;
311 if (newcount > cp->width) {
312 cp->width = newcount;
313 sp = realloc(cp->str, (unsigned) newcount * sizeof(char));
318 cp->count = newcount;
319 cp->str[newcount - 1] = ch;
  /src/sys/dev/ic/
aic79xx.c 5754 int newcount; local in function:ahd_alloc_scbs
5884 newcount = MIN(scb_data->sense_left, scb_data->scbs_left);
5885 newcount = MIN(newcount, scb_data->sgs_left);
5886 newcount = MIN(newcount, (AHD_SCB_MAX_ALLOC - scb_data->numscbs));
5887 scb_data->sense_left -= newcount;
5888 scb_data->scbs_left -= newcount;
5889 scb_data->sgs_left -= newcount;
5891 for (i = 0; i < newcount; i++)
    [all...]
aic7xxx.c 4309 int newcount; local in function:ahc_alloc_scbs
4340 newcount = (PAGE_SIZE / (AHC_NSEG * sizeof(struct ahc_dma_seg)));
4341 newcount = MIN(newcount, (AHC_SCB_MAX_ALLOC - scb_data->numscbs));
4342 for (i = 0; i < newcount; i++) {
4378 return (newcount);

Completed in 49 milliseconds