Searched defs:bytes (Results 1 - 25 of 93) sorted by relevance

1234

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DAudioSample.java23 public final byte[] bytes; field in class:AudioSample
25 public AudioSample(int sampleRate, int channelCount, byte[] bytes) { argument
28 this.bytes = bytes;
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DQuotedPrintable.java26 * Decodes an array quoted-printable characters into an array of original bytes.
35 * @param bytes array of quoted-printable characters
36 * @return array of original bytes,
39 public static final byte[] decodeQuotedPrintable(byte[] bytes) { argument
40 if (bytes == null) {
44 for (int i = 0; i < bytes.length; i++) {
45 int b = bytes[i];
48 if('\r' == (char)bytes[i + 1] &&
49 '\n' == (char)bytes[i + 2]) {
53 int u = Character.digit((char) bytes[
[all...]
/frameworks/av/drm/common/
H A DReadWriteUtils.cpp46 char* bytes = new char[length]; local
47 if (length == read(fd, (void*) bytes, length)) {
48 string.append(bytes, length);
50 delete[] bytes;
/frameworks/base/core/tests/coretests/src/android/text/format/
H A DFormatterTest.java97 private void checkFormatBytes(long bytes, boolean useShort, argument
99 BytesResult r = Formatter.formatBytes(getContext().getResources(), bytes,
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DByteBufferInputStream.java39 public int read(byte[] bytes, int off, int len) { argument
45 mBuf.get(bytes, off, len);
/frameworks/base/tests/CoreTests/android/core/
H A DSha1Test.java56 private static String encodeHex(byte[] bytes) { argument
57 StringBuffer hex = new StringBuffer(bytes.length * 2);
59 for (int i = 0; i < bytes.length; i++) {
60 if (((int) bytes[i] & 0xff) < 0x10) {
63 hex.append(Integer.toString((int) bytes[i] & 0xff, 16));
/frameworks/av/services/audioflinger/
H A DSpdifStreamOut.cpp117 ssize_t SpdifStreamOut::writeDataBurst(const void* buffer, size_t bytes) argument
119 return AudioStreamOut::write(buffer, bytes);
H A DSpdifStreamOut.h53 * Write audio buffer to driver. Returns number of bytes written, or a
60 * bytes that currently fit in the driver/hardware buffer and then return
65 virtual ssize_t write(const void* buffer, size_t bytes);
103 virtual ssize_t writeOutput(const void* buffer, size_t bytes) argument
105 return mSpdifStreamOut->writeDataBurst(buffer, bytes);
116 ssize_t writeDataBurst(const void* data, size_t bytes);
117 ssize_t writeInternal(const void* buffer, size_t bytes);
/frameworks/base/core/java/com/android/internal/util/
H A DCharSequences.java26 * bytes.
28 * @param bytes ASCII bytes
30 public static CharSequence forAsciiBytes(final byte[] bytes) { argument
33 return (char) bytes[index];
37 return bytes.length;
41 return forAsciiBytes(bytes, start, end);
45 return new String(bytes);
52 * bytes.
54 * @param bytes ASCI
61 forAsciiBytes(final byte[] bytes, final int start, final int end) argument
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_vertex_frame.cpp76 jbyte* bytes = env->GetByteArrayElements(data, NULL); local
77 if (bytes) {
78 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(bytes + offset),
80 env->ReleaseByteArrayElements(data, bytes, JNI_ABORT);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DDataUsageDetailView.java66 final long bytes;
73 bytes = info.usageLevel;
79 bytes = info.limitLevel - info.usageLevel;
87 bytes = info.usageLevel - info.limitLevel;
98 usage.setText(formatBytes(bytes));
114 private String formatBytes(long bytes) { argument
115 final long b = Math.abs(bytes);
128 return FORMAT.format(val * (bytes < 0 ? -1 : 1)) + " " + suffix;
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DCharsets.java49 * Returns a new byte array containing the bytes corresponding to the given characters,
59 * Returns a new byte array containing the bytes corresponding to the given characters,
69 * Returns a new byte array containing the bytes corresponding to the given characters,
79 * Returns a new byte array containing the bytes corresponding to the given characters,
95 * Decodes the given US-ASCII bytes into the given char[]. Equivalent to but faster than:
102 public static void asciiBytesToChars(byte[] bytes, int offset, int length, char[] chars) { argument
103 if (bytes == null || chars == null) {
109 char ch = (char) (bytes[start++] & 0xff);
115 * Decodes the given ISO-8859-1 bytes into the given char[]. Equivalent to but faster than:
121 public static void isoLatin1BytesToChars(byte[] bytes, in argument
[all...]
H A DUnsafeByteSequence.java31 private byte[] bytes; field in class:UnsafeByteSequence
35 this.bytes = new byte[initialCapacity];
51 if (count + length >= bytes.length) {
53 System.arraycopy(bytes, 0, newBytes, 0, count);
54 bytes = newBytes;
56 System.arraycopy(buffer, offset, bytes, count, length);
61 if (count == bytes.length) {
63 System.arraycopy(bytes, 0, newBytes, 0, count);
64 bytes = newBytes;
66 bytes[coun
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DExif.java45 Looking at this algorithm, we never look ahead more than 8 bytes. As long as we call
48 Also, the most we ever read backwards is 4 bytes. pack() reads backwards if the encoding
49 is in little endian format. These following two lines potentially reads 4 bytes backwards:
187 private static int pack(final InputStreamBuffer bytes, int offset, int length, argument
197 value = (value << 8) | (bytes.get(offset) & 0xFF);
/frameworks/opt/net/voip/src/jni/rtp/
H A DGsmCodec.cpp62 unsigned char *bytes = (unsigned char *)payload; local
65 gsm_decode(mDecode, bytes, &samples[n]) == 0) {
68 bytes += 33;
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java40 Looking at this algorithm, we never look ahead more than 8 bytes. As long as we call
43 Also, the most we ever read backwards is 4 bytes. pack() reads backwards if the encoding
44 is in little endian format. These following two lines potentially reads 4 bytes backwards:
182 private static int pack(final InputStreamBuffer bytes, int offset, int length, argument
192 value = (value << 8) | (bytes.get(offset) & 0xFF);
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h41 virtual void setMaxFileSize(int64_t bytes) { mMaxFileSizeLimitBytes = bytes; } argument
/frameworks/base/core/java/android/net/netlink/
H A DNetlinkSocket.java138 public boolean sendMessage(byte[] bytes, int offset, int count) argument
140 return sendMessage(bytes, offset, count, 0);
149 public boolean sendMessage(byte[] bytes, int offset, int count, long timeoutMs) argument
162 return (count == Os.write(mDescriptor, bytes, offset, count));
H A DNetlinkConstants.java57 public static String hexify(byte[] bytes) { argument
58 if (bytes == null) { return "(null)"; }
59 return HexDump.toHexString(bytes);
/frameworks/base/core/jni/
H A Dandroid_ddm_DdmHandleNativeHeap.cpp59 char bytes[1024]; local
61 while ((byteCount = TEMP_FAILURE_RETRY(read(fd, bytes, sizeof(bytes)))) > 0) {
62 s.append(bytes, byteCount);
/frameworks/base/tools/aapt2/
H A DBigBuffer.h72 * Number of occupied bytes in all the allocated blocks.
90 * Pads the block with 'bytes' bytes of zero values.
92 void pad(size_t bytes);
138 inline void BigBuffer::pad(size_t bytes) { argument
139 nextBlock<char>(bytes);
/frameworks/rs/
H A DrsFifoSocket.cpp52 bool FifoSocket::writeAsync(const void *data, size_t bytes, bool waitForSpace) { argument
53 if (bytes == 0) {
56 //ALOGE("writeAsync %p %i", data, bytes);
57 size_t ret = ::send(sv[0], data, bytes, 0);
58 rsAssert(ret == bytes);
59 if (ret != bytes) {
60 ALOGE("writeAsync %p %zu ret %zu", data, bytes, ret);
76 size_t FifoSocket::read(void *data, size_t bytes) { argument
81 //ALOGE("read %p %i", data, bytes);
82 size_t ret = ::recv(sv[1], data, bytes, MSG_WAITAL
101 readReturn(const void *data, size_t bytes) argument
[all...]
H A DrsThreadIO.h73 uint32_t bytes; member in struct:android::renderscript::ThreadIO::CoreCmdHeaderRec
77 uint32_t bytes; member in struct:android::renderscript::ThreadIO::ClientCmdHeaderRec
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisPlaybackQueueItem.java242 ListEntry(byte[] bytes) { argument
243 mBytes = bytes;
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java151 private static String encodeHex(byte[] bytes) { argument
152 StringBuffer hex = new StringBuffer(bytes.length * 2);
154 for (int i = 0; i < bytes.length; i++) {
155 int byteIntValue = bytes[i] & 0xff;

Completed in 2416 milliseconds

1234