Searched refs:accumulator (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y72 static symbol_ref_t accumulator;
351 | accumulator
519 accumulator: label
522 if (accumulator.symbol != NULL) {
523 stop("Only one accumulator definition allowed",
527 accumulator.symbol = cur_symbol;
888 if (accumulator.symbol == NULL) {
889 stop("No accumulator has been defined", EX_DATAERR);
892 $$.symbol = accumulator.symbol;
916 "references the accumulator
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4.c653 size_t accumulator = lastRun - RUN_MASK; local
655 for(; accumulator >= 255 ; accumulator-=255) *op++ = 255;
656 *op++ = (BYTE) accumulator;
870 size_t accumulator = lastRunSize - RUN_MASK; local
872 for(; accumulator >= 255 ; accumulator-=255) *op++ = 255;
873 *op++ = (BYTE) accumulator;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp41 unsigned accumulator = 0; local
48 accumulator = (accumulator * 10) + (c - '0');
53 return OptionalAmount(OptionalAmount::Constant, accumulator, Beg, I - Beg,

Completed in 181 milliseconds