Searched refs:_size (Results 1 – 11 of 11) sorted by relevance
/external/zlib/contrib/dotzlib/DotZLib/ |
D | CircularBuffer.cs | 23 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/ |
D | HeapProfilerPanel.js | 668 if (!this._size) { 669 this._size = 0; 671 this._size += this.children[i].size; 673 return this._size;
|
/external/icu4c/tools/genpname/ |
D | genpname.cpp | 703 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/ |
D | genpname.cpp | 702 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/ |
D | poster.tex | 25 $\vert \vert a \vert \vert$ & {\tt mp\_unsigned\_bin\_size(\&a)} & $res$ = 1 if $a$ prime to $t$ ro…
|
D | bn.tex | 514 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/ |
D | HTMLInputElement.cpp | 2414 void HTMLInputElement::setSize(unsigned _size) in setSize() argument 2416 setAttribute(sizeAttr, String::number(_size)); in setSize()
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 2671 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/ |
D | crypt.tex | 4004 … 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/ |
D | HTMLparser.c | 1721 buffer##_size *= 2; \ 1722 tmp = (xmlChar *) xmlRealloc(buffer, buffer##_size * sizeof(xmlChar)); \
|
D | parser.c | 2447 buffer##_size *= 2; \ 2448 buffer##_size += n; \ 2450 xmlRealloc(buffer, buffer##_size * sizeof(xmlChar)); \
|