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

  /src/sys/external/bsd/drm2/linux/
linux_list_sort.c 56 * Array of sorted sublists, counting in binary: accumulator[i]
59 struct list_head *accumulator[64]; local in function:list_sort
61 /* Indices into accumulator. */
73 for (logn = 0; logn < __arraycount(accumulator); logn++)
74 accumulator[logn] = NULL;
81 for (logn = 0; accumulator[logn] != NULL; logn++) {
86 sorted = list_sort_merge(accumulator[logn], sorted,
88 accumulator[logn] = NULL;
89 KASSERT((logn + 1) < __arraycount(accumulator));
97 * logn = log_2(length(sorted)), and accumulator[logn
    [all...]
  /src/sys/dev/microcode/aic7xxx/
aicasm_gram.y 76 static symbol_ref_t accumulator;
353 | accumulator
521 accumulator: label
524 if (accumulator.symbol != NULL) {
525 stop("Only one accumulator definition allowed",
529 accumulator.symbol = cur_symbol;
890 if (accumulator.symbol == NULL) {
891 stop("No accumulator has been defined", EX_DATAERR);
894 $$.symbol = accumulator.symbol;
918 "references the accumulator.\n
    [all...]

Completed in 12 milliseconds