HomeSort by: relevance | last modified time | path
    Searched defs:accumulator (Results 1 - 11 of 11) 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
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...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
FormatString.cpp 41 unsigned accumulator = 0; local
48 accumulator = (accumulator * 10) + (c - '0');
53 return OptionalAmount(OptionalAmount::Constant, accumulator, Beg, I - Beg,
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
service-tracker.c 112 service_tracker_flags_accumulator_init(accumulator_t *accumulator)
114 memset(accumulator, 0, sizeof(*accumulator));
115 accumulator->p_change = accumulator->change;
116 accumulator->left = sizeof(accumulator->change);
120 service_tracker_flags_accumulate(accumulator_t *accumulator, bool previous, bool cur, const char *name)
124 snprintf(accumulator->p_change, accumulator->left, "%s%s%s"
281 accumulator_t accumulator; local
    [all...]
  /src/external/apache2/mDNSResponder/dist/mDNSShared/dns_objects/objs/
dns_obj_rr_dnskey.c 357 uint32_t accumulator = 0; local
364 accumulator += (i & 1) ? rdata[i] : (uint32_t)(rdata[i] << 8);
366 accumulator += (accumulator >> 16) & UINT32_C(0xFFFF);
367 return (accumulator & UINT32_C(0xFFFF));
  /src/external/gpl2/texinfo/dist/makeinfo/
defun.c 43 initialize_token_accumulator (struct token_accumulator *accumulator)
45 accumulator->length = 0;
46 accumulator->index = 0;
47 accumulator->tokens = NULL;
51 accumulate_token (struct token_accumulator *accumulator, char *token)
53 if (accumulator->index >= accumulator->length)
55 accumulator->length += 10;
56 accumulator->tokens = xrealloc (accumulator->tokens
109 struct token_accumulator accumulator; local
    [all...]
  /src/external/mpl/dhcp/dist/common/
options.c 2694 int *accumulator = (int *)void_accumulator; local
2696 *accumulator += 1;
  /src/external/gpl3/gcc/dist/gcc/config/frv/
frv.cc 6330 /* Accumulators/Accumulator guard registers need to go through floating
6619 values. Also, make the byte-sized accumulator guards use one guard
6639 /* An N-byte value requires N accumulator guards. */
6952 /* If REGNO refers to an accumulator, return ACC_GROUP_ODD if
8213 denotes an accumulator, and that return void. */
8244 /* Media intrinsics that take two accumulator numbers as argument and
8291 tree accumulator = integer_type_node;
8318 tree void_ftype_acc = UNARY (voidt, accumulator);
8321 tree void_ftype_acc_uw1 = BINARY (voidt, accumulator, uword1);
8322 tree void_ftype_acc_acc = BINARY (voidt, accumulator, accumulator)
8212 tree accumulator = integer_type_node; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
tree-vect-loop.cc 5505 /* When reusing an accumulator from the main loop, we only need
5771 /* See if the main loop has the kind of accumulator we need. */
5772 vect_reusable_accumulator *accumulator local
5774 if (!accumulator
5775 || num_phis != accumulator->reduc_info->reduc_scalar_results.length ()
5777 accumulator->reduc_info->reduc_scalar_results.begin ()))
5782 tree old_vectype = TREE_TYPE (accumulator->reduc_input);
5805 operation, in order to simplify the initialization of the accumulator.
5815 = STMT_VINFO_REDUC_EPILOGUE_ADJUSTMENT (accumulator->reduc_info);
5821 initialize the accumulator with a neutral value instead. *
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/frv/
frv.cc 6328 /* Accumulators/Accumulator guard registers need to go through floating
6617 values. Also, make the byte-sized accumulator guards use one guard
6637 /* An N-byte value requires N accumulator guards. */
6950 /* If REGNO refers to an accumulator, return ACC_GROUP_ODD if
8211 denotes an accumulator, and that return void. */
8242 /* Media intrinsics that take two accumulator numbers as argument and
8289 tree accumulator = integer_type_node;
8316 tree void_ftype_acc = UNARY (voidt, accumulator);
8319 tree void_ftype_acc_uw1 = BINARY (voidt, accumulator, uword1);
8320 tree void_ftype_acc_acc = BINARY (voidt, accumulator, accumulator)
8210 tree accumulator = integer_type_node; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vect-loop.cc 4705 /* When reusing an accumulator from the main loop, we only need
4971 /* See if the main loop has the kind of accumulator we need. */
4972 vect_reusable_accumulator *accumulator local
4974 if (!accumulator
4975 || num_phis != accumulator->reduc_info->reduc_scalar_results.length ()
4977 accumulator->reduc_info->reduc_scalar_results.begin ()))
4982 tree old_vectype = TREE_TYPE (accumulator->reduc_input);
5005 operation, in order to simplify the initialization of the accumulator.
5015 = STMT_VINFO_REDUC_EPILOGUE_ADJUSTMENT (accumulator->reduc_info);
5021 initialize the accumulator with a neutral value instead. *
    [all...]

Completed in 53 milliseconds