OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:outLength
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/text/
Base64.cpp
76
// Note: Keep this in sync with the "
outLength
" computation below.
85
unsigned
outLength
= ((len + 2) / 3) * 4;
88
bool insertLFs = (policy == Base64InsertLFs &&
outLength
> 76);
90
outLength
+= ((
outLength
- 1) / 76);
93
out.grow(
outLength
);
151
unsigned
outLength
= 0;
162
out[
outLength
++] = base64DecMap[ch];
168
if (!
outLength
)
172
// We use (
outLength
+ equalsSignCount) instead of length because we don't want to account for ignored characters
[
all
...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp
230
size_t
outLength
= mbuf->range_length();
233
outLength
+= sizeof(int32_t);
236
sp<ABuffer> buffer = new ABuffer(
outLength
);
/external/icu4c/layout/
HangulLayoutEngine.cpp
293
le_int32
outLength
= outCharCount - outStart;
306
if ((inLength >= 1 && inLength <= 3) && (
outLength
== 2 ||
outLength
== 3)) {
310
LEUnicode trail =
outLength
== 3? outChars[outStart + 2] : TJMO_FIRST;
316
if (compose(lead, vowel, trail, syllable) ==
outLength
) {
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TriangleCollector.java
122
int
outLength
= entry.getValue().length;
128
int outElementCount =
outLength
* 3;
153
for (int i = outOffset; i < outOffset +
outLength
; i++){
/system/security/keystore/
keystore.cpp
282
size_t
outLength
= 0;
290
outLength
++;
292
return
outLength
;
[
all
...]
/external/chromium_org/net/third_party/nss/ssl/
ssl3con.c
[
all
...]
Completed in 879 milliseconds