• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/

Lines Matching refs:uzoff_t

72 local extent simple OF((uzoff_t *, extent, uzoff_t, uzoff_t));
74 local extent greedy OF((uzoff_t *, extent, uzoff_t, uzoff_t));
357 uzoff_t *a; /* items to put in bins, return value: destination bins */
359 uzoff_t c; /* capacity of each bin */
360 uzoff_t d; /* amount to deduct from first bin */
367 uzoff_t t; /* space used in current bin */
388 return **(uzoff_t **)a < **(uzoff_t **)b ? 1 :
389 (**(uzoff_t **)a > **(uzoff_t **)b ? -1 : 0);
394 uzoff_t *a; /* items to put in bins, return value: destination bins */
396 uzoff_t c; /* capacity of each bin */
397 uzoff_t d; /* amount to deduct from first bin */
403 uzoff_t *b; /* space left in each bin (malloc'ed for each m) */
404 uzoff_t *e; /* copy of argument a[] (malloc'ed) */
409 uzoff_t **s; /* pointers to e[], sorted descending (malloc'ed) */
410 uzoff_t t; /* space left in best bin (index k) */
426 if ((e = (uzoff_t *)malloc(n * sizeof(uzoff_t))) == NULL ||
427 (s = (uzoff_t **)malloc(n * sizeof(uzoff_t *))) == NULL)
434 memcpy((char *)e, (char *)a, n * sizeof(uzoff_t));
443 if ((b = (uzoff_t *)malloc(++m * sizeof(uzoff_t))) == NULL)
468 a[(int)((uzoff_t huge *)(s[i]) - (uzoff_t huge *)e)] = k;
512 uzoff_t *a; /* malloc'ed list of sizes, dest bins */
514 uzoff_t c; /* bin capacity, start of central directory */
524 uzoff_t *p; /* malloc'ed list of sizes, dest bins for greedy() */
706 if ((a = (uzoff_t *)talloc(zcount * sizeof(uzoff_t))) == NULL ||
736 if ((p = (uzoff_t *)talloc(zcount * sizeof(uzoff_t))) == NULL)
738 memcpy((char *)p, (char *)a, zcount * sizeof(uzoff_t));
942 if ((c = zftello(f)) == (uzoff_t)-1)