Searched defs:NumberlikeArray (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/third_party/bigint/
H A DNumberlikeArray.hh16 /* A NumberlikeArray<Blk> object holds a heap-allocated array of Blk with a
20 * NumberlikeArray provides no information hiding. Subclasses should use
25 * NumberlikeArray< the-type-argument >::getLength;
28 class NumberlikeArray { class
36 // The current allocated capacity of this NumberlikeArray (in blocks)
38 // The actual length of the value stored in this NumberlikeArray (in blocks)
43 // Constructs a ``zero'' NumberlikeArray with the given capacity.
44 NumberlikeArray(Index c) : cap(c), len(0) { function in class:NumberlikeArray
48 /* Constructs a zero NumberlikeArray without allocating a backing array.
52 NumberlikeArray() function in class:NumberlikeArray
130 NumberlikeArray<Blk>::NumberlikeArray(const NumberlikeArray<Blk> &x) function in class:NumberlikeArray
158 NumberlikeArray<Blk>::NumberlikeArray(const Blk *b, Index blen) function in class:NumberlikeArray
[all...]

Completed in 77 milliseconds