/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/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/ |
D | Base64.java | 42 int outCount = 0; in decode() local 81 out[outCount++] = (byte) (word >> 16); in decode() 82 out[outCount++] = (byte) (word >> 8); in decode() 83 out[outCount++] = (byte) word; in decode() 94 out[outCount++] = (byte) (word >> 16); in decode() 98 out[outCount++] = (byte) (word >> 16); in decode() 99 out[outCount++] = (byte) (word >> 8); in decode() 103 if (outCount == out.length) return out; in decode() 106 byte[] prefix = new byte[outCount]; in decode() 107 System.arraycopy(out, 0, prefix, 0, outCount); in decode()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | UnicodeSetStringSpan.java | 560 OutputInt outCount) { in spanAndCount() argument 562 return spanNot(s, start, outCount); in spanAndCount() 567 return spanContainedAndCount(s, start, outCount); in spanAndCount() 590 outCount.value = count; in spanAndCount() 598 outCount.value = count; in spanAndCount() 602 private synchronized int spanContainedAndCount(CharSequence s, int start, OutputInt outCount) { in spanContainedAndCount() argument 629 outCount.value = count; in spanContainedAndCount() 633 int minOffset = offsets.popMinimum(outCount); in spanContainedAndCount() 634 count = outCount.value; in spanContainedAndCount() 638 outCount.value = count; in spanContainedAndCount() [all …]
|
D | BMPSet.java | 141 OutputInt outCount) { in span() argument 225 if (outCount != null) { in span() 227 outCount.value = spanLength - numSupplementary; // number of code points in span()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UnicodeSetStringSpan.java | 556 OutputInt outCount) { in spanAndCount() argument 558 return spanNot(s, start, outCount); in spanAndCount() 563 return spanContainedAndCount(s, start, outCount); in spanAndCount() 586 outCount.value = count; in spanAndCount() 594 outCount.value = count; in spanAndCount() 598 private synchronized int spanContainedAndCount(CharSequence s, int start, OutputInt outCount) { in spanContainedAndCount() argument 625 outCount.value = count; in spanContainedAndCount() 629 int minOffset = offsets.popMinimum(outCount); in spanContainedAndCount() 630 count = outCount.value; in spanContainedAndCount() 634 outCount.value = count; in spanContainedAndCount() [all …]
|
D | BMPSet.java | 139 OutputInt outCount) { in span() argument 223 if (outCount != null) { in span() 225 outCount.value = spanLength - numSupplementary; // number of code points in span()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ProfileVerifierPass.cpp | 43 int outCount; member 114 int outCount = 0; in printDebugInfo() local 125 outCount++; in printDebugInfo() 134 << "outCount" << outCount << "\n"; in printDebugInfo() 152 << "outCount=" << DI->outCount << "\n"; in debugEntry() 242 DI.outCount = DI.inCount = 0; in recurseBasicBlock() 269 DI.outCount++; in recurseBasicBlock() 274 DI.outCount++; in recurseBasicBlock() 317 if (DI.inCount > 0 && DI.outCount == 0) { in recurseBasicBlock() 323 } else if (DI.inCount == 0 && DI.outCount > 0) { in recurseBasicBlock()
|
/external/mesa3d/src/glx/ |
D | dri2.h | 74 int *outCount); 84 int count, int *outCount);
|
D | dri2.c | 404 unsigned int *attachments, int count, int *outCount) in DRI2GetBuffers() argument 434 *outCount = rep.count; in DRI2GetBuffers() 463 unsigned int *attachments, int count, int *outCount) in DRI2GetBuffersWithFormat() argument 493 *outCount = rep.count; in DRI2GetBuffersWithFormat()
|
/external/mesa3d/src/gallium/drivers/nouveau/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/python/cpython2/Mac/Modules/cg/ |
D | CFMLateImport.c | 244 static UInt32 DecodeVCountValue(const UInt8 *start, UInt32 *outCount) in DecodeVCountValue() argument 262 *outCount = count; in DecodeVCountValue() 266 static UInt32 DecodeInstrCountValue(const UInt8 *inOpStart, UInt32 *outCount) in DecodeInstrCountValue() argument 272 MoreAssertQ(outCount != nil); in DecodeInstrCountValue() 277 *outCount = PEFPkDataCount5(*inOpStart); in DecodeInstrCountValue() 283 return 1 + DecodeVCountValue(inOpStart + 1, outCount); in DecodeInstrCountValue()
|
/external/wayland-protocols/flinger_headers/ |
D | hwcomposer2_arc_private.h | 218 typedef void (*HWC2_ARC_PRIVATE_PFN_GET_CAPABILITIES)(hwc2_device_t* device, uint32_t* outCount,
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | UnicodeSet.java | 4054 …blic int spanAndCount(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) { in spanAndCount() argument 4055 if (outCount == null) { in spanAndCount() 4067 return stringSpan.spanAndCount(s, start, spanCondition, outCount); in spanAndCount() 4069 return bmpSet.span(s, start, spanCondition, outCount); in spanAndCount() 4075 return strSpan.spanAndCount(s, start, spanCondition, outCount); in spanAndCount() 4078 return spanCodePointsAndCount(s, start, spanCondition, outCount); in spanAndCount() 4082 SpanCondition spanCondition, OutputInt outCount) { in spanCodePointsAndCount() argument 4098 if (outCount != null) { outCount.value = count; } in spanCodePointsAndCount()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeSet.java | 4145 …blic int spanAndCount(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) { in spanAndCount() argument 4146 if (outCount == null) { in spanAndCount() 4158 return stringSpan.spanAndCount(s, start, spanCondition, outCount); in spanAndCount() 4160 return bmpSet.span(s, start, spanCondition, outCount); in spanAndCount() 4166 return strSpan.spanAndCount(s, start, spanCondition, outCount); in spanAndCount() 4169 return spanCodePointsAndCount(s, start, spanCondition, outCount); in spanAndCount() 4173 SpanCondition spanCondition, OutputInt outCount) { in spanCodePointsAndCount() argument 4189 if (outCount != null) { outCount.value = count; } in spanCodePointsAndCount()
|
/external/skqp/tests/ |
D | TextBlobTest.cpp | 228 const RunDef out[], unsigned outCount) { in RunBuilderTest() argument 247 for (unsigned i = 0; i < outCount; ++i) { in RunBuilderTest()
|
/external/skia/tests/ |
D | TextBlobTest.cpp | 228 const RunDef out[], unsigned outCount) { in RunBuilderTest() argument 247 for (unsigned i = 0; i < outCount; ++i) { in RunBuilderTest()
|
/external/deqp/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 4630 const int outCount = numOutputs<Out>(); in testStatement() local 4705 spec.outputs.resize(outCount); in testStatement() 4707 switch (outCount) in testStatement() 4779 switch (outCount) in testStatement() 4852 if (outCount > 0) in testStatement() 4860 if (outCount > 1) in testStatement()
|
/external/python/cpython2/Mac/Modules/win/ |
D | _Winmodule.c | 112 UInt32 outCount; in WinObj_GetWindowOwnerCount() local 119 &outCount); in WinObj_GetWindowOwnerCount() 122 outCount); in WinObj_GetWindowOwnerCount()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderBuiltinPrecisionTests.cpp | 5899 const int outCount = numOutputs<Out>(); in iterate() local 5991 switch (outCount) in iterate() 6045 if (outCount > 0) in iterate() 6063 if (outCount > 1) in iterate() 6136 const int outCount = numOutputs<Out>(); in testStatement() local 6177 m_spec.outputs.resize(outCount); in testStatement() 6179 switch (outCount) in testStatement()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
D | UnicodeSetTest.java | 2676 OutputInt outCount = new OutputInt(); in TestCharSequenceArgs() local 2678 …UnicodeSet("[a-cA]"). spanAndCount(new StringBuilder("abc"), 1, SpanCondition.SIMPLE, outCount ) ); in TestCharSequenceArgs()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
D | UnicodeSetTest.java | 2679 OutputInt outCount = new OutputInt(); in TestCharSequenceArgs() local 2681 …UnicodeSet("[a-cA]"). spanAndCount(new StringBuilder("abc"), 1, SpanCondition.SIMPLE, outCount ) ); in TestCharSequenceArgs()
|
/external/sqlite/dist/orig/ |
D | shell.c | 7927 int outCount; /* Revert to stdout when reaching zero */ member 13258 p->outCount = 2; in do_meta_command() 13260 p->outCount = 0; in do_meta_command() 14533 if( p->outCount ){ in do_meta_command() 14534 p->outCount--; in do_meta_command() 14535 if( p->outCount==0 ) output_reset(p); in do_meta_command() 14718 if( p->outCount ){ in process_input() 14720 p->outCount = 0; in process_input()
|
/external/sqlite/dist/ |
D | shell.c | 7933 int outCount; /* Revert to stdout when reaching zero */ member 13281 p->outCount = 2; in do_meta_command() 13283 p->outCount = 0; in do_meta_command() 14556 if( p->outCount ){ in do_meta_command() 14557 p->outCount--; in do_meta_command() 14558 if( p->outCount==0 ) output_reset(p); in do_meta_command() 14741 if( p->outCount ){ in process_input() 14743 p->outCount = 0; in process_input()
|