Searched defs:byteCount (Results 1 - 25 of 73) sorted by path

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DGeneralDigest.java17 private long byteCount; field in class:GeneralDigest
45 byteCount = t.byteCount;
59 byteCount++;
87 byteCount += xBuf.length;
104 long bitLength = (byteCount << 3);
123 byteCount = 0;
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DvalidationES.cpp1647 GLint64 byteCount = static_cast<GLint64>(typeInfo.bytes) * static_cast<GLint64>(count)+offset; local
1651 byteCount > static_cast<GLint64>(std::numeric_limits<GLuint>::max()))
1658 if (byteCount > elementArrayBuffer->getSize())
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2hints.h79 size_t byteCount; member in struct:CF2_HintMaskRec_
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Ducsdetst.c73 int32_t byteCount = preflight(src, length, cnv); local
75 char *bytes = NEW_ARRAY(char, byteCount + 1);
76 char *dest = bytes, *destLimit = bytes + byteCount + 1;
81 *byteLength = byteCount;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtscoll.cpp385 int32_t i, byteCount; local
386 const uint8_t *bytes = source.getByteArray(byteCount);
391 for (i = 0; i < byteCount; i += 1)
/external/chromium_org/third_party/skia/include/views/
H A DSkEvent.h141 const void* findData(const char name[], size_t* byteCount = NULL) const {
142 return fMeta.findData(name, byteCount);
154 bool hasData(const char name[], const void* data, size_t byteCount) const {
155 return fMeta.hasData(name, data, byteCount);
171 void setData(const char name[], const void* data, size_t byteCount) { argument
172 fMeta.setData(name, data, byteCount);
/external/chromium_org/third_party/skia/src/core/
H A DSkMetaData.cpp107 void SkMetaData::setData(const char name[], const void* data, size_t byteCount) { argument
108 (void)this->set(name, data, sizeof(char), kData_Type, SkToInt(byteCount));
H A DSkPath.cpp1973 const int byteCount = sizeof(int32_t) + fPathRef->writeSize(); local
1974 return SkAlign4(byteCount);
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_win.cpp1193 int byteCount = width >> 3; local
1196 // adjust srcRB to skip the values in our byteCount loop,
1198 srcRB -= byteCount * 8 * sizeof(SkGdiRGB);
1201 if (byteCount > 0) {
1202 for (int i = 0; i < byteCount; ++i) {
1223 dst[byteCount] = byte;
H A DSkOSFile_stdio.cpp71 size_t sk_fread(void* buffer, size_t byteCount, SkFILE* f) { argument
79 int err = ::fseek((FILE*)f, (long)byteCount, SEEK_CUR);
82 byteCount, curr, feof((FILE*)f), ferror((FILE*)f), err));
85 return byteCount;
88 return ::fread(buffer, 1, byteCount, (FILE*)f);
91 size_t sk_fwrite(const void* buffer, size_t byteCount, SkFILE* f) { argument
93 return ::fwrite(buffer, 1, byteCount, (FILE*)f);
101 bool sk_fseek(SkFILE* f, size_t byteCount) { argument
102 int err = ::fseek((FILE*)f, (long)byteCount, SEEK_SET);
106 bool sk_fmove(SkFILE* f, long byteCount) { argument
[all...]
H A DSkScalerContext_win_dw.cpp572 int byteCount = width >> 3; local
576 if (byteCount > 0) {
577 for (int i = 0; i < byteCount; ++i) {
598 dst[byteCount] = byte;
/external/chromium_org/third_party/skia/src/utils/
H A DSkMD5.h32 virtual size_t bytesWritten() const SK_OVERRIDE { return SkToSizeT(this->byteCount); }
46 uint64_t byteCount; member in class:SkMD5
H A DSkSHA1.h32 virtual size_t bytesWritten() const SK_OVERRIDE { return SkToSizeT(this->byteCount); }
46 uint64_t byteCount; member in class:SkSHA1
/external/chromium_org/third_party/skia/tools/
H A Dsk_tool_utils_font.cpp161 size_t byteCount = SkUTF16_ToUTF8(&uni, 1, NULL); local
162 SkAutoSTMalloc<10, char> utf8(byteCount);
164 for (unsigned byteIndex = 0; byteIndex < byteCount; ++byteIndex) {
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOSink.java45 public long skip(long byteCount) { argument
46 int maxLength = Math.min(available(), (int) byteCount);
H A DOpenSSLBIOSource.java83 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
84 int toRead = Math.min(source.remaining(), byteCount);
96 public long skip(long byteCount) throws IOException { argument
98 source.position((int) (originalPosition + byteCount));
H A DOpenSSLSocketImpl.java681 public int read(byte[] buf, int offset, int byteCount) throws IOException { argument
685 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
686 if (byteCount == 0) {
700 OpenSSLSocketImpl.this, buf, offset, byteCount, getSoTimeout());
748 public void write(byte[] buf, int offset, int byteCount) throws IOException { argument
751 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
752 if (byteCount == 0) {
766 OpenSSLSocketImpl.this, buf, offset, byteCount, writeTimeoutMilliseconds);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/freetype/src/cff/
H A Dcf2hints.h79 size_t byteCount; member in struct:CF2_HintMaskRec_
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DRecyclableBufferedInputStream.java243 * Reads at most {@code byteCount} bytes from this stream and stores them in
255 * if {@code offset &lt; 0} or {@code byteCount &lt; 0}, or if
256 * {@code offset + byteCount} is greater than the size of
263 public synchronized int read(byte[] buffer, int offset, int byteCount) throws IOException { argument
270 //Arrays.checkOffsetAndCount(buffer.length, offset, byteCount);
271 if (byteCount == 0) {
282 int copylength = count - pos >= byteCount ? byteCount : count - pos;
285 if (copylength == byteCount || localIn.available() == 0) {
289 required = byteCount
365 skip(long byteCount) argument
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 623 milliseconds

123