/external/okhttp/okio/okio/src/main/java/okio/ |
D | Base64.java | 41 int outCount = 0; in decode() local 80 out[outCount++] = (byte) (word >> 16); in decode() 81 out[outCount++] = (byte) (word >> 8); in decode() 82 out[outCount++] = (byte) word; in decode() 93 out[outCount++] = (byte) (word >> 16); in decode() 97 out[outCount++] = (byte) (word >> 16); in decode() 98 out[outCount++] = (byte) (word >> 8); in decode() 102 if (outCount == out.length) return out; in decode() 105 byte[] prefix = new byte[outCount]; in decode() 106 System.arraycopy(out, 0, prefix, 0, outCount); in decode()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UnicodeSetStringSpan.java | 552 OutputInt outCount) { in spanAndCount() argument 554 return spanNot(s, start, outCount); in spanAndCount() 559 return spanContainedAndCount(s, start, outCount); in spanAndCount() 582 outCount.value = count; in spanAndCount() 590 outCount.value = count; in spanAndCount() 594 private synchronized int spanContainedAndCount(CharSequence s, int start, OutputInt outCount) { in spanContainedAndCount() argument 621 outCount.value = count; in spanContainedAndCount() 625 int minOffset = offsets.popMinimum(outCount); in spanContainedAndCount() 626 count = outCount.value; in spanContainedAndCount() 630 outCount.value = count; in spanContainedAndCount() [all …]
|
D | BMPSet.java | 138 OutputInt outCount) { in span() argument 222 if (outCount != null) { in span() 224 outCount.value = spanLength - numSupplementary; // number of code points in span()
|
/external/mesa3d/src/glx/ |
D | dri2.h | 71 int *outCount); 81 int count, int *outCount);
|
D | dri2.c | 402 unsigned int *attachments, int count, int *outCount) in DRI2GetBuffers() argument 432 *outCount = rep.count; in DRI2GetBuffers() 461 unsigned int *attachments, int count, int *outCount) in DRI2GetBuffersWithFormat() argument 491 *outCount = rep.count; in DRI2GetBuffersWithFormat()
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_graph.h | 127 inline int outgoingCount() const { return outCount; } in outgoingCount() 141 int16_t outCount; variable
|
D | nv50_ir_graph.cpp | 61 --origin->outCount; in unlink() 90 inCount(0), outCount(0) in Node() 116 ++this->outCount; in attach()
|
/external/skia/tests/ |
D | TextBlobTest.cpp | 164 const RunDef out[], unsigned outCount) { in RunBuilderTest() argument 180 for (unsigned i = 0; i < outCount; ++i) { in RunBuilderTest()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeSet.java | 4030 …blic int spanAndCount(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) { in spanAndCount() argument 4031 if (outCount == null) { in spanAndCount() 4043 return stringSpan.spanAndCount(s, start, spanCondition, outCount); in spanAndCount() 4045 return bmpSet.span(s, start, spanCondition, outCount); in spanAndCount() 4051 return strSpan.spanAndCount(s, start, spanCondition, outCount); in spanAndCount() 4054 return spanCodePointsAndCount(s, start, spanCondition, outCount); in spanAndCount() 4058 SpanCondition spanCondition, OutputInt outCount) { in spanCodePointsAndCount() argument 4074 if (outCount != null) { outCount.value = count; } in spanCodePointsAndCount()
|
/external/sqlite/dist/orig/ |
D | shell.c | 531 int outCount; /* Revert to stdout when reaching zero */ member 3382 p->outCount = 2; in do_meta_command() 3384 p->outCount = 0; in do_meta_command() 4065 if( p->outCount ){ in do_meta_command() 4066 p->outCount--; in do_meta_command() 4067 if( p->outCount==0 ) output_reset(p); in do_meta_command() 4237 if( p->outCount ){ in process_input() 4239 p->outCount = 0; in process_input()
|
/external/sqlite/dist/ |
D | shell.c | 537 int outCount; /* Revert to stdout when reaching zero */ member 3404 p->outCount = 2; in do_meta_command() 3406 p->outCount = 0; in do_meta_command() 4087 if( p->outCount ){ in do_meta_command() 4088 p->outCount--; in do_meta_command() 4089 if( p->outCount==0 ) output_reset(p); in do_meta_command() 4259 if( p->outCount ){ in process_input() 4261 p->outCount = 0; in process_input()
|
/external/deqp/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 4441 const int outCount = numOutputs<Out>(); in testStatement() local 4498 spec.outputs.resize(outCount); in testStatement() 4500 switch (outCount) in testStatement() 4566 switch (outCount) in testStatement() 4614 if (outCount > 0) in testStatement() 4622 if (outCount > 1) in testStatement()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
D | UnicodeSetTest.java | 2632 OutputInt outCount = new OutputInt(); in TestCharSequenceArgs() local 2634 …UnicodeSet("[a-cA]"). spanAndCount(new StringBuilder("abc"), 1, SpanCondition.SIMPLE, outCount ) ); in TestCharSequenceArgs()
|