Searched refs:StreamUtil (Results 1 – 25 of 69) sorted by relevance
123
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
D | DLTaggedObject.java | 58 … return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length; in encodedLength() 65 return StreamUtil.calculateTagLength(tagNo) + length; in encodedLength() 70 return StreamUtil.calculateTagLength(tagNo) + 1; in encodedLength()
|
D | DERTaggedObject.java | 64 … return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length; in encodedLength() 71 return StreamUtil.calculateTagLength(tagNo) + length; in encodedLength() 76 return StreamUtil.calculateTagLength(tagNo) + 1; in encodedLength()
|
D | BERTaggedObject.java | 79 … return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length; in encodedLength() 86 return StreamUtil.calculateTagLength(tagNo) + length; in encodedLength() 91 return StreamUtil.calculateTagLength(tagNo) + 1; in encodedLength()
|
D | ASN1ApplicationSpecific.java | 151 …return StreamUtil.calculateTagLength(tag) + StreamUtil.calculateBodyLength(octets.length) + octets… in encodedLength()
|
D | DEROctetString.java | 41 return 1 + StreamUtil.calculateBodyLength(string.length) + string.length; in encodedLength()
|
D | ASN1InputStream.java | 29 this(is, StreamUtil.findLimit(is)); in ASN1InputStream() 82 this(input, StreamUtil.findLimit(input), lazyEvaluate); in ASN1InputStream()
|
D | DERSequence.java | 79 return 1 + StreamUtil.calculateBodyLength(length) + length; in encodedLength()
|
D | DLSequence.java | 76 return 1 + StreamUtil.calculateBodyLength(length) + length; in encodedLength()
|
D | DLSet.java | 118 return 1 + StreamUtil.calculateBodyLength(length) + length; in encodedLength()
|
D | DERSet.java | 90 return 1 + StreamUtil.calculateBodyLength(length) + length; in encodedLength()
|
D | LazyEncodedSequence.java | 88 return 1 + StreamUtil.calculateBodyLength(encoded.length) + encoded.length; in encodedLength()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/ |
D | DLTaggedObject.java | 60 … return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length; in encodedLength() 67 return StreamUtil.calculateTagLength(tagNo) + length; in encodedLength() 72 return StreamUtil.calculateTagLength(tagNo) + 1; in encodedLength()
|
D | DERTaggedObject.java | 68 … return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length; in encodedLength() 75 return StreamUtil.calculateTagLength(tagNo) + length; in encodedLength() 80 return StreamUtil.calculateTagLength(tagNo) + 1; in encodedLength()
|
D | BERTaggedObject.java | 81 … return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length; in encodedLength() 88 return StreamUtil.calculateTagLength(tagNo) + length; in encodedLength() 93 return StreamUtil.calculateTagLength(tagNo) + 1; in encodedLength()
|
D | ASN1ApplicationSpecific.java | 153 …return StreamUtil.calculateTagLength(tag) + StreamUtil.calculateBodyLength(octets.length) + octets… in encodedLength()
|
D | DEROctetString.java | 46 return 1 + StreamUtil.calculateBodyLength(string.length) + string.length; in encodedLength()
|
D | LazyEncodedSequence.java | 89 return 1 + StreamUtil.calculateBodyLength(encoded.length) + encoded.length; in encodedLength()
|
D | DLSequence.java | 78 return 1 + StreamUtil.calculateBodyLength(length) + length; in encodedLength()
|
D | DLSet.java | 120 return 1 + StreamUtil.calculateBodyLength(length) + length; in encodedLength()
|
D | ASN1InputStream.java | 34 this(is, StreamUtil.findLimit(is)); in ASN1InputStream() 89 this(input, StreamUtil.findLimit(input), lazyEvaluate); in ASN1InputStream()
|
D | DERSet.java | 93 return 1 + StreamUtil.calculateBodyLength(length) + length; in encodedLength()
|
/external/gemmlowp/meta/ |
D | multi_thread_gemm.h | 39 StreamUtil<typename Params::InType, typename Params::LeftStream>::Offset( in PrepareGemmTask() 44 StreamUtil<typename Params::InType, typename Params::RightStream>::Offset( in PrepareGemmTask() 48 StreamUtil<typename Params::OutType, typename Params::OutputStream>:: in PrepareGemmTask()
|
D | single_thread_gemm.h | 34 StreamUtil<typename P::InType, typename P::LeftStream>::Scratch( in EstimateScratchSize() 39 StreamUtil<typename P::InType, typename P::RightStream>::Scratch( in EstimateScratchSize() 225 StreamUtil<typename P::InType, typename P::LeftStream>::Scratch( in EstimateScratchSize() 228 StreamUtil<typename P::InType, typename P::RightStream>::Scratch( in EstimateScratchSize() 421 StreamUtil<typename Params::InType, typename Params::LeftStream>::Offset( in UpdateCacheFriendlyTask() 426 StreamUtil<typename Params::InType, typename Params::RightStream>::Offset( in UpdateCacheFriendlyTask() 430 StreamUtil<typename Params::OutType, typename Params::OutputStream>:: in UpdateCacheFriendlyTask()
|
D | streams.h | 48 class StreamUtil<InType, RowMajor> { 70 class StreamUtil<InType, RowMajorWithSum> { 95 class StreamUtil<InType, ColumnMajorWithSum> {
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | CMakeLists.txt | 33 StreamUtil.cpp
|
123