Home
last modified time | relevance | path

Searched refs:_size (Results 1 – 11 of 11) sorted by relevance

/external/zlib/contrib/dotzlib/DotZLib/
DCircularBuffer.cs23 private int _size; field in DotZLib.CircularBuffer
34 _size = 0; in CircularBuffer()
37 public int Size { get { return _size; } }
47 _size += trueCount; in Put()
57 ++_size; in Put()
68 _size -= trueCount; in Get()
78 --_size; in Get()
/external/webkit/WebKit/chromium/src/js/
DHeapProfilerPanel.js668 if (!this._size) {
669 this._size = 0;
671 this._size += this.children[i].size;
673 return this._size;
/external/icu4c/tools/genpname/
Dgenpname.cpp703 printf(#foo "\t offset=%4d size=%5d\n", off, (int)foo##_size);\ in computeOffsets()
705 U_ASSERT(IS_VALID_OFFSET(off + foo##_size));\ in computeOffsets()
707 off = (Offset) (off + foo##_size); in computeOffsets()
870 #define APPEND(x) APPEND2(x, x##_size) in createData()
/external/chromium/third_party/icu/source/tools/genpname/
Dgenpname.cpp702 printf(#foo "\t offset=%4d size=%5d\n", off, (int)foo##_size);\ in computeOffsets()
704 U_ASSERT(IS_VALID_OFFSET(off + foo##_size));\ in computeOffsets()
706 off = (Offset) (off + foo##_size); in computeOffsets()
869 #define APPEND(x) APPEND2(x, x##_size) in createData()
/external/dropbear/libtommath/
Dposter.tex25 $\vert \vert a \vert \vert$ & {\tt mp\_unsigned\_bin\_size(\&a)} & $res$ = 1 if $a$ prime to $t$ ro…
Dbn.tex514 Another less common initializer is mp\_init\_size() which allows the user to initialize an mp\_int …
518 \index{mp\_init\_size}
1716 \index{mp\_radix\_size}
1736 \index{mp\_unsigned\_bin\_size}
/external/webkit/WebCore/html/
DHTMLInputElement.cpp2414 void HTMLInputElement::setSize(unsigned _size) in setSize() argument
2416 setAttribute(sizeAttr, String::number(_size)); in setSize()
/external/protobuf/src/google/protobuf/
Ddescriptor.cc2671 OUTPUT->NAME##_count_ = INPUT.NAME##_size(); \
2672 AllocateArray(INPUT.NAME##_size(), &OUTPUT->NAME##s_); \
2673 for (int i = 0; i < INPUT.NAME##_size(); i++) { \
/external/dropbear/libtomcrypt/
Dcrypt.tex4004 … is an active PRNG state and \textit{wprng} the index to the descriptor. \textit{group\_size} and
4005 \textit{modulus\_size} control the difficulty of forging a signature. Both parameters are in bytes…
4006 \textit{group\_size} the more difficult a forgery becomes upto a limit. The value of $group\_size$…
4007 $15 < group\_size < 1024$ and $modulus\_size - group\_size < 512$. Suggested values for the pairs …
4012 \hline \textbf{Bits of Security} & \textbf{group\_size} & \textbf{modulus\_size} \\
4033 \item $q$ a small prime of magnitude $256^{group\_size}$.
4034 …\item $p = qr + 1$ a large prime of magnitude $256^{modulus\_size}$ where $r$ is a random even int…
/external/libxml2/
DHTMLparser.c1721 buffer##_size *= 2; \
1722 tmp = (xmlChar *) xmlRealloc(buffer, buffer##_size * sizeof(xmlChar)); \
Dparser.c2447 buffer##_size *= 2; \
2448 buffer##_size += n; \
2450 xmlRealloc(buffer, buffer##_size * sizeof(xmlChar)); \