HomeSort by relevance Sort by last modified time
    Searched refs:byteCount (Results 126 - 150 of 167) sorted by null

1 2 3 4 56 7

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java 731 * @param byteCount the number of bytes in the user data payload
734 String getUserDataUCS2(int byteCount) {
738 ret = new String(pdu, cur, byteCount, "utf-16");
744 cur += byteCount;
752 * @param byteCount the number of bytes in the user data payload
755 String getUserDataKSC5601(int byteCount) {
759 ret = new String(pdu, cur, byteCount, "KSC5601");
765 cur += byteCount;
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLLogWrapper.java 930 private ByteBuffer toByteBuffer(int byteCount, Buffer input) {
932 boolean convertWholeBuffer = (byteCount < 0);
937 byteCount = input2.limit() - position;
939 result = ByteBuffer.allocate(byteCount).order(input2.order());
940 for (int i = 0; i < byteCount; i++) {
948 byteCount = (input2.limit() - position) * 2;
950 result = ByteBuffer.allocate(byteCount).order(input2.order());
952 for (int i = 0; i < byteCount / 2; i++) {
960 byteCount = (input2.limit() - position)* 2;
962 result = ByteBuffer.allocate(byteCount).order(input2.order())
    [all...]
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 219 pt->t.byteCount = SWAP32(pt->t.byteCount);
238 t.byteCount = nBytes;
mkyaffsimage.c 247 t.byteCount = nBytes;
  /external/yaffs2/yaffs2/
yaffs_guts.h 137 unsigned byteCount:10;
175 unsigned byteCount; /* Only valid for data chunks */
yaffs_checkptrw.c 194 tags.byteCount = dev->nDataBytesPerChunk;
  /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;
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginStream.mm 581 int byteCount = write(m_fileDescriptor, [data bytes], dataLength);
582 if (byteCount != dataLength) {
  /external/skia/src/ports/
SkFontHost_win.cpp 777 int byteCount = width >> 3;
780 // adjust srcRB to skip the values in our byteCount loop,
782 srcRB -= byteCount * 8 * sizeof(SkGdiRGB);
785 if (byteCount > 0) {
786 for (int i = 0; i < byteCount; ++i) {
807 dst[byteCount] = byte;
    [all...]
  /external/webkit/Source/WebCore/platform/cf/
BinaryPropertyList.cpp 124 ObjectReference byteCount() const { return m_byteCount; }
489 , m_offsetTableStart(headerSize + m_plan.byteCount() + m_plan.objectReferenceCount() * m_objectReferenceSize)
  /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...]
  /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);
dsa_new.cpp 975 const TInt byteCount = aRect.Width() * aRect.Height() * iSourceBpp; //this could be stored
976 Mem::Copy(target, aBits, byteCount);
1023 const TInt byteCount = aRect.Width() * aRect.Height() * iSourceBpp; //this could be stored
1024 Mem::Copy(target, aBits, byteCount);
  /dalvik/vm/
CheckJni.cpp     [all...]
  /libcore/luni/src/main/java/java/io/
ObjectInputStream.java     [all...]
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 1805 milliseconds

1 2 3 4 56 7