Home
last modified time | relevance | path

Searched refs:lenBytes (Results 1 – 12 of 12) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DBERApplicationSpecific.java61 int lenBytes = getLengthOfHeader(data); in getEncoding() local
62 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
63 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
DDLApplicationSpecific.java75 int lenBytes = getLengthOfHeader(data); in getEncoding() local
76 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
77 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
DDERApplicationSpecific.java75 int lenBytes = getLengthOfHeader(data); in getEncoding() local
76 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
77 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/
DBERApplicationSpecific.java63 int lenBytes = getLengthOfHeader(data); in getEncoding() local
64 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
65 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
DDERApplicationSpecific.java77 int lenBytes = getLengthOfHeader(data); in getEncoding() local
78 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
79 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
DDLApplicationSpecific.java77 int lenBytes = getLengthOfHeader(data); in getEncoding() local
78 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
79 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
DBERApplicationSpecific.java63 int lenBytes = getLengthOfHeader(data); in getEncoding() local
64 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
65 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
DDERApplicationSpecific.java77 int lenBytes = getLengthOfHeader(data); in getEncoding() local
78 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
79 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
DDLApplicationSpecific.java77 int lenBytes = getLengthOfHeader(data); in getEncoding() local
78 byte[] tmp = new byte[data.length - lenBytes]; in getEncoding()
79 System.arraycopy(data, lenBytes, tmp, 0, tmp.length); in getEncoding()
/external/webrtc/modules/audio_coding/codecs/g711/
Dg711_interface.c56 int16_t WebRtcG711_Version(char* version, int16_t lenBytes) { in WebRtcG711_Version() argument
57 strncpy(version, "2.0.0", lenBytes); in WebRtcG711_Version()
Dg711_interface.h130 int16_t WebRtcG711_Version(char* version, int16_t lenBytes);
/external/skia/src/core/
DSkWriter32.cpp56 const size_t lenBytes = 4; // we use 4 bytes to record the length in WriteStringSize() local
58 return SkAlign4(lenBytes + len + 1); in WriteStringSize()