HomeSort by relevance Sort by last modified time
    Searched refs:byteCount (Results 151 - 175 of 204) sorted by null

1 2 3 4 5 67 8 9

  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipFileTest.java 228 int byteCount = Math.min(writeBuffer.length, entrySize - i);
229 out.write(writeBuffer, 0, byteCount);
  /external/chromium_org/third_party/icu/source/test/cintltst/
ucsdetst.c 73 int32_t byteCount = preflight(src, length, cnv);
75 char *bytes = NEW_ARRAY(char, byteCount + 1);
76 char *dest = bytes, *destLimit = bytes + byteCount + 1;
81 *byteLength = byteCount;
  /external/icu4c/test/cintltst/
ucsdetst.c 73 int32_t byteCount = preflight(src, length, cnv);
75 char *bytes = NEW_ARRAY(char, byteCount + 1);
76 char *dest = bytes, *destLimit = bytes + byteCount + 1;
81 *byteLength = byteCount;
  /frameworks/base/core/java/android/net/dhcp/
DhcpPacket.java 540 private static String readAsciiString(ByteBuffer buf, int byteCount) {
541 byte[] bytes = new byte[byteCount];
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 393 int byteCount = ((septetCount * 7) + 7) / 8;
394 byte[] ret = new byte[byteCount + 1]; // Include space for one byte length prefix.
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 329 public long skip(long byteCount) throws IOException {
330 long count = mStream.skip(byteCount);
  /external/yaffs2/yaffs2/
yaffs_checkptrw.c 194 tags.byteCount = dev->nDataBytesPerChunk;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4lib_int.h 32 Int byteCount; /*how many bytes already encoded*/
mp4enc_api.cpp     [all...]
rate_control.cpp 309 pMP->actual_bits = currVol->stream->byteCount << 3;
334 rc->Rc = currVol->stream->byteCount << 3; /* Total Bits for current frame */
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_pcm.c 362 pState->bytesLeftLoop = pState->byteCount = pParams->size;
390 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "EAS_PEOpenStream: StartPos=%d, byteCount = %d, loopSamples=%d\n",
391 pState->startPos, pState->byteCount, pState->loopSamples); */ }
926 pState->bytesLeft = pState->byteCount;
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_pcm.c 362 pState->bytesLeftLoop = pState->byteCount = pParams->size;
390 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "EAS_PEOpenStream: StartPos=%d, byteCount = %d, loopSamples=%d\n",
391 pState->startPos, pState->byteCount, pState->loopSamples); */ }
926 pState->bytesLeft = pState->byteCount;
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_pcm.c 362 pState->bytesLeftLoop = pState->byteCount = pParams->size;
390 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "EAS_PEOpenStream: StartPos=%d, byteCount = %d, loopSamples=%d\n",
391 pState->startPos, pState->byteCount, pState->loopSamples); */ }
926 pState->bytesLeft = pState->byteCount;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa_old.cpp 652 const TInt byteCount = aRect.Width() * aRect.Height() * iSourceBpp; //this could be stored
653 Mem::Copy(target, aBits, byteCount);
dsa.cpp 1090 const TInt byteCount = aRect.Width() * aRect.Height() * iSourceBpp; //this could be stored
1091 Mem::Copy(target, aBits, byteCount);
  /libcore/dex/src/main/java/com/android/dex/
Dex.java 87 public Dex(int byteCount) throws IOException {
88 this.data = ByteBuffer.wrap(new byte[byteCount]);
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_win.cpp     [all...]
SkFontHost_win_dw.cpp 889 int byteCount = width >> 3;
893 if (byteCount > 0) {
894 for (int i = 0; i < byteCount; ++i) {
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp     [all...]
SkFontHost_win_dw.cpp 889 int byteCount = width >> 3;
893 if (byteCount > 0) {
894 for (int i = 0; i < byteCount; ++i) {
    [all...]
  /art/runtime/
check_jni.cc     [all...]
  /dalvik/vm/
CheckJni.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
R600MCCodeEmitter.cpp 72 void EmitNullBytes(unsigned int byteCount, raw_ostream &OS) const;
545 void R600MCCodeEmitter::EmitNullBytes(unsigned int ByteCount,
548 for (unsigned int i = 0; i < ByteCount; i++) {
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
R600MCCodeEmitter.cpp 72 void EmitNullBytes(unsigned int byteCount, raw_ostream &OS) const;
545 void R600MCCodeEmitter::EmitNullBytes(unsigned int ByteCount,
548 for (unsigned int i = 0; i < ByteCount; i++) {
  /external/yaffs2/yaffs2/utils/
mkyaffsimage.c 247 t.byteCount = nBytes;

Completed in 1356 milliseconds

1 2 3 4 5 67 8 9