/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/okio/okio/src/commonMain/kotlin/okio/ |
D | -Base64.kt | 44 var outCount = 0 in decodeBase64ToArray() variable 83 out[outCount++] = (word shr 16).toByte() in decodeBase64ToArray() 84 out[outCount++] = (word shr 8).toByte() in decodeBase64ToArray() 85 out[outCount++] = word.toByte() in decodeBase64ToArray() 98 out[outCount++] = (word shr 16).toByte() in decodeBase64ToArray() 103 out[outCount++] = (word shr 16).toByte() in decodeBase64ToArray() 104 out[outCount++] = (word shr 8).toByte() in decodeBase64ToArray() 109 if (outCount == out.size) return out in decodeBase64ToArray() 112 return out.copyOf(outCount) in decodeBase64ToArray()
|
/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/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 | 126 inline int outgoingCount() const { return outCount; } in outgoingCount() 140 int16_t outCount; variable
|
D | nv50_ir_graph.cpp | 61 --origin->outCount; in unlink() 89 inCount(0), outCount(0) in Node() 115 ++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/icu/icu4c/source/i18n/ |
D | measunit_extra.cpp | 911 LocalArray<MeasureUnit> MeasureUnit::splitToSingleUnitsImpl(int32_t& outCount, UErrorCode& status) … in splitToSingleUnitsImpl() argument 914 outCount = impl.units.length(); in splitToSingleUnitsImpl() 915 MeasureUnit* arr = new MeasureUnit[outCount]; in splitToSingleUnitsImpl() 920 for (int32_t i = 0; i < outCount; i++) { in splitToSingleUnitsImpl()
|
/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/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/mesa3d/include/android_stub/hardware/ |
D | gralloc1.h | 290 void (*getCapabilities)(struct gralloc1_device* device, uint32_t* outCount,
|
/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/icu/icu4c/source/i18n/unicode/ |
D | measunit.h | 3570 LocalArray<MeasureUnit> splitToSingleUnitsImpl(int32_t& outCount, UErrorCode& status) const;
|
/external/icu/libicu/cts_headers/unicode/ |
D | measunit.h | 3570 LocalArray<MeasureUnit> splitToSingleUnitsImpl(int32_t& outCount, UErrorCode& status) const;
|
/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 | 6177 const int outCount = numOutputs<Out>(); in iterate() local 6191 DE_ASSERT(outCount == 1); in iterate() 6280 switch (outCount) in iterate() 6339 if (outCount > 0) in iterate() 6357 if (outCount > 1) in iterate() 6430 const int outCount = numOutputs<Out>(); in testStatement() local 6471 m_spec.outputs.resize(outCount); in testStatement() 6473 switch (outCount) in testStatement()
|
/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/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()
|