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

/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DSixCharacterHash.cpp66 unsigned accumulator = hash; local
68 buffer[i] = TABLE[accumulator % 62];
69 accumulator /= 62;
/macosx-10.10.1/WTF-7600.1.24/wtf/dtoa/
H A Dfixed-dtoa.cc47 uint64_t accumulator; local
49 accumulator = (low_bits_ & kMask32) * multiplicand;
50 uint32_t part = static_cast<uint32_t>(accumulator & kMask32);
51 accumulator >>= 32;
52 accumulator = accumulator + (low_bits_ >> 32) * multiplicand;
53 low_bits_ = (accumulator << 32) + part;
54 accumulator >>= 32;
55 accumulator = accumulator
[all...]
H A Dbignum.cc364 DoubleChunk accumulator = 0;
380 accumulator += static_cast<DoubleChunk>(chunk1) * chunk2;
384 bigits_[i] = static_cast<Chunk>(accumulator) & kBigitMask;
385 accumulator >>= kBigitSize;
391 // Inner loop runs 0 times on last iteration, emptying accumulator.
395 accumulator += static_cast<DoubleChunk>(chunk1) * chunk2;
402 bigits_[i] = static_cast<Chunk>(accumulator) & kBigitMask;
403 accumulator >>= kBigitSize;
406 // accumulator must be 0 now.
407 ASSERT(accumulator
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DUint16WithFraction.h104 uint64_t accumulator = 0; local
107 accumulator += static_cast<uint64_t>(m_values[i]) * static_cast<uint64_t>(multiplier);
108 m_values[i] = static_cast<uint32_t>(accumulator);
109 accumulator >>= 32;
115 ASSERT(!accumulator);
123 } else if (accumulator) {
125 m_values[--m_leadingZeros] = static_cast<uint32_t>(accumulator);
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSInternal.h99 static inline bool accumulate_size(size_t *accumulator, size_t size) { argument
100 *accumulator += size;
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter2/
H A Dparser.ml27 let rec parse_args accumulator = parser
30 | [< 'Token.Kwd ','; e=parse_args (e :: accumulator) >] -> e
31 | [< >] -> e :: accumulator
33 | [< >] -> accumulator
93 let rec parse_args accumulator = parser
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
95 | [< >] -> accumulator
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter3/
H A Dparser.ml27 let rec parse_args accumulator = parser
30 | [< 'Token.Kwd ','; e=parse_args (e :: accumulator) >] -> e
31 | [< >] -> e :: accumulator
33 | [< >] -> accumulator
93 let rec parse_args accumulator = parser
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
95 | [< >] -> accumulator
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter4/
H A Dparser.ml27 let rec parse_args accumulator = parser
30 | [< 'Token.Kwd ','; e=parse_args (e :: accumulator) >] -> e
31 | [< >] -> e :: accumulator
33 | [< >] -> accumulator
93 let rec parse_args accumulator = parser
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
95 | [< >] -> accumulator
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DSecMaskGenerationFunctionTransform.c40 __block CFMutableDataRef accumulator = CFDataCreateMutable(NULL, 0); local
45 CFRelease(accumulator);
64 CFDataAppendBytes(accumulator, CFDataGetBytePtr(d), CFDataGetLength(d));
101 CFMutableDataRef accumulatorPlusCounter = CFDataCreateMutableCopy(NULL, CFDataGetLength(accumulator) + sizeof(uint32_t), accumulator);
H A DEncodeDecodeTransforms.c250 __block struct { uint64_t a[2]; } accumulator = { .a = {0, 0}};
303 accumulator.a[1] = accumulator.a[1] << 5 | (0x1f & (accumulator.a[0] >> (64 -5)));
304 accumulator.a[0] = accumulator.a[0] << 5 | b;
310 accumulator.a[1] = accumulator.a[1] << 5 | (0x1f & accumulator.a[0] >> (64 -5));
311 accumulator
[all...]
H A DSecSignVerifyTransform.c106 CFArrayRef accumulator = *a; local
107 CFRelease(accumulator);
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml29 let rec parse_args accumulator = parser
32 | [< 'Token.Kwd ','; e=parse_args (e :: accumulator) >] -> e
33 | [< >] -> e :: accumulator
35 | [< >] -> accumulator
129 let rec parse_args accumulator = parser
130 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
131 | [< >] -> accumulator
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter6/
H A Dparser.ml29 let rec parse_args accumulator = parser
32 | [< 'Token.Kwd ','; e=parse_args (e :: accumulator) >] -> e
33 | [< >] -> e :: accumulator
35 | [< >] -> accumulator
142 let rec parse_args accumulator = parser
143 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
144 | [< >] -> accumulator
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter7/
H A Dparser.ml30 let rec parse_args accumulator = parser
33 | [< 'Token.Kwd ','; e=parse_args (e :: accumulator) >] -> e
34 | [< >] -> e :: accumulator
36 | [< >] -> accumulator
151 and parse_var_names accumulator = parser
155 e=parse_var_names ((id, init) :: accumulator) >] -> e
156 | [< >] -> accumulator
168 let rec parse_args accumulator = parser
169 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
170 | [< >] -> accumulator
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLAbstractHeap.cpp166 size_t accumulator = index; local
168 characters[stringLength - i - 1] = lowerNibbleToASCIIHexDigit(accumulator);
169 accumulator >>= 4;
/macosx-10.10.1/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DToNestedArray.pm44 my ($self, $tree, $accumulator, $filter) = @_;
46 push @{$accumulator} => (defined($filter) ? $filter->($child) : $child->getNodeValue());
47 push @{$accumulator} => $self->_buildArray($child, [], $filter) unless $child->isLeaf();
49 return $accumulator;
H A DToNestedHash.pm43 my ($self, $tree, $accumulator, $filter) = @_;
48 $accumulator->{$node_key} = $node_value;
50 return $accumulator;
/macosx-10.10.1/libauto-186/
H A DZoneCollectors.cpp58 Subzone::PendingCountAccumulator *accumulator = (Subzone::PendingCountAccumulator *)subzone->region()->zone()->registered_thread().pending_count_accumulator(); local
59 if (accumulator)
60 accumulator->pended_in_subzone(subzone);
H A DReferenceIterator.h445 Subzone::PendingCountAccumulator accumulator(z->registered_thread());
455 Subzone::PendingCountAccumulator accumulator(z->registered_thread());
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSObjectRef.h189 @param accumulator A JavaScript property name accumulator in which to accumulate the names of object's properties.
196 Use JSPropertyNameAccumulatorAddName to add property names to accumulator. A class's getPropertyNames callback only needs to provide the names of properties that the class vends through a custom getProperty or setProperty callback. Other properties, including statically declared properties, properties vended by other classes, and properties belonging to object's prototype, are added independently.
684 @abstract Adds a property name to a JavaScript property name accumulator.
685 @param accumulator The accumulator object to which to add the property name.
688 JS_EXPORT void JSPropertyNameAccumulatorAddName(JSPropertyNameAccumulatorRef accumulator, JSStringRef propertyName);
/macosx-10.10.1/top-100.1.2/
H A Dlibtop.h50 uint64_t accumulator; member in struct:libtop_i64
428 * These i64 functions are special functions that operate on an accumulator
H A Dlibtop.c2513 r.accumulator = acc;
2518 r.accumulator += last_value;
2521 r.accumulator += INT_MAX;
2522 r.accumulator += abs(INT_MIN - last_value) + 1;
2548 i->accumulator += delta;
2556 fprintf(stderr, "%s: accumulator > INT_MAX %s\n", __func__,
2557 (i->accumulator > INT_MAX) ? "YES" : "NO");
2560 value, value, (i->accumulator > UINT_MAX) ? "YES" : "NO");
2568 return i->accumulator;
/macosx-10.10.1/CPANInternal-159.1/Tree-Simple-1.18/lib/Tree/Simple/
H A DVisitor.pm172 my @accumulator;
181 print join ", ", @accumulator; # prints "1.0, 2.0, 2.1.0, 3.0"
/macosx-10.10.1/emacs-93/emacs/lisp/term/
H A Dmac-win.el2431 (accumulator last)
2450 (cdr accumulator))))
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dtommath.tex242 processor has an 8 bit accumulator.}. However, as efficient as such an approach may be, the resulting source code is not
2705 three single precision multiplications. If the precision of the accumulator for the output digits is less then $3 \cdot (\beta - 1)^2$ then
2779 loop we want to produce one column per pass. This allows the accumulator $\_ \hat W$ to be placed in CPU registers and
2792 After every inner pass we store the lower half of the accumulator into $W_{ix}$ and then propagate the carry of the accumulator
2820 After the inner loop we store the current accumulator in $W$ and shift $\_ \hat W$ (lines 77, 80) to forward it as
3318 extracted from the mp\_word accumulator using a right shift. Aliases for $a_{ix}$ and $t_{ix+iy}$ are initialized
3388 First, we have an accumulator and carry variables $\_ \hat W$ and $\hat W1$ respectively. This is because the inner loop

Completed in 150 milliseconds