/external/dexmaker/src/dx/java/com/android/dx/util/ |
Leb128Utils.java | 32 * Gets the number of bytes in the unsigned LEB128 encoding of the 36 * @return its write size, in bytes 53 * Gets the number of bytes in the signed LEB128 encoding of the 57 * @return its write size, in bytes 130 * {@code offset}. Returns the number of bytes written. 146 * {@code offset}. Returns the number of bytes written.
|
Mutf8.java | 30 * Decodes bytes from {@code in} into {@code out} until a delimiter 0x00 is 63 * Returns the number of bytes the modified UTF8 representation of 's' would take. 70 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes. 78 throw new UTFDataFormatException("String more than 65535 UTF bytes long"); 85 * Encodes the modified UTF-8 bytes corresponding to {@code s} into {@code 92 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes.
|
/external/llvm/lib/Support/ |
StreamableMemoryObject.cpp | 98 // keep fetching until we run out of bytes 105 *ptr = Bytes[address + BytesSkipped]; 113 memcpy(buf, &Bytes[address + BytesSkipped], size); 126 Bytes.reserve(size); 137 Bytes(kChunkSize), Streamer(streamer), BytesRead(0), BytesSkipped(0), 139 BytesRead = streamer->GetBytes(&Bytes[0], kChunkSize);
|
/external/llvm/tools/llvm-objdump/ |
MachODump.cpp | 102 static void DumpDataInCode(const char *bytes, uint64_t Size, 110 Value = bytes[3] << 24 | 111 bytes[2] << 16 | 112 bytes[1] << 8 | 113 bytes[0]; 117 Value = bytes[1] << 8 | 118 bytes[0]; 122 Value = bytes[0]; 129 Value = bytes[0]; 133 Value = bytes[1] << 8 [all...] |
/external/lzma/C/ |
Lzma86.h | 18 .lzma86 header (14 bytes):
31 dictSize - The dictionary size in bytes. The maximum value is
32 128 MB = (1 << 27) bytes for 32-bit version
33 1 GB = (1 << 30) bytes for 64-bit version
34 The default value is 16 MB = (1 << 24) bytes, for level = 5.
104 SZ_ERROR_INPUT_EOF - it needs more bytes in input buffer
|
/external/lzma/ |
Methods.txt | 5 The length of ID in bytes is arbitrary but it can not exceed 63 bits (8 bytes).
9 2) Generate 8-bytes ID:
14 ZZ ZZ ZZ ZZ ZZ - Developer ID (5 bytes). Use real random bytes.
16 MM MM - Method ID (2 bytes)
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
ExtensionDescriptor.java | 36 byte[] bytes;
field in class:ExtensionDescriptor 60 bytes = new byte[sizeOfInstance];
61 bb.get(bytes);
69 sb.append("{bytes=").append(bytes == null ? "null" : Hex.encodeHex(bytes));
|
/external/skia/include/pipe/ |
SkGPipe.h | 83 * If bytes == 0, then the writer has finished. 85 * bytes will always be a multiple of 4. 87 virtual void notifyWritten(size_t bytes) = 0; 142 * Return the amount of bytes being used for recording. Note that this 153 * @param bytesToFree minimum number of bytes that should be attempted to 155 * @return number of bytes actually freed.
|
/external/valgrind/main/gdbserver_tests/ |
mchelp.stdoutB.exp | 15 returns validity bits for <len> (or 1) bytes at <addr> 20 mark <len> (or 1) bytes at <addr> with the given accessibility 22 check that <len> (or 1) bytes at <addr> have the given accessibility 52 returns validity bits for <len> (or 1) bytes at <addr> 57 mark <len> (or 1) bytes at <addr> with the given accessibility 59 check that <len> (or 1) bytes at <addr> have the given accessibility
|
/external/valgrind/main/memcheck/tests/ |
badrw.stderr.exp | 3 Address 0x........ is 4 bytes before a block of size 10 alloc'd 9 Address 0x........ is 4 bytes before a block of size 10 alloc'd 15 Address 0x........ is 4 bytes before a block of size 10 alloc'd 21 Address 0x........ is 4 bytes before a block of size 10 alloc'd 27 Address 0x........ is 1 bytes before a block of size 10 alloc'd 33 Address 0x........ is 1 bytes before a block of size 10 alloc'd
|
badrw.stderr.exp-s390x-mvc | 3 Address 0x........ is 4 bytes before a block of size 10 alloc'd 9 Address 0x........ is 4 bytes before a block of size 10 alloc'd 15 Address 0x........ is 4 bytes before a block of size 10 alloc'd 21 Address 0x........ is 4 bytes before a block of size 10 alloc'd 27 Address 0x........ is 1 bytes before a block of size 10 alloc'd 33 Address 0x........ is 1 bytes before a block of size 10 alloc'd
|
varinfo1.stderr.exp | 4 Address 0x........ is 1 bytes inside a block of size 3 alloc'd 11 Location 0x........ is 0 bytes inside global var "global_u1" 17 Location 0x........ is 0 bytes inside global var "global_i1" 23 Location 0x........ is 0 bytes inside global_u2[3], 29 Location 0x........ is 0 bytes inside global_i2[7], 35 Location 0x........ is 0 bytes inside local var "local"
|
varinfo1.stderr.exp-ppc64 | 4 Address 0x........ is 1 bytes inside a block of size 3 alloc'd 11 Location 0x........ is 0 bytes inside global var "global_u1" 17 Location 0x........ is 0 bytes inside global var "global_i1" 23 Location 0x........ is 0 bytes inside global_u2[3], 29 Location 0x........ is 0 bytes inside global_i2[7], 35 Location 0x........ is 0 bytes inside local var "local"
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothInputStream.java | 37 * Return number of bytes available before this stream will block. 69 * Reads at most {@code length} bytes from this stream and stores them in 73 * the byte array in which to store the bytes read. 75 * the initial position in {@code buffer} to store the bytes 78 * the maximum number of bytes to store in {@code b}. 79 * @return the number of bytes actually read or -1 if the end of the stream
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
BinaryHprof.java | 44 byte[] bytes = new byte[512]; 45 for (int i = 0; i < bytes.length; i++) { 48 String string = new String(bytes, 0, i, "UTF-8"); 54 bytes[i] = b; 82 * Minimum size in bytes. 87 * Maximum size in bytes. 0 mean no specific limit.
|
/libcore/dex/src/main/java/com/android/dex/ |
Leb128.java | 31 * Gets the number of bytes in the unsigned LEB128 encoding of the 35 * @return its write size, in bytes 52 * Gets the number of bytes in the signed LEB128 encoding of the 56 * @return its write size, in bytes 129 * {@code offset}. Returns the number of bytes written. 145 * {@code offset}. Returns the number of bytes written.
|
Mutf8.java | 31 * Decodes bytes from {@code in} into {@code out} until a delimiter 0x00 is 64 * Returns the number of bytes the modified UTF8 representation of 's' would take. 71 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes. 79 throw new UTFDataFormatException("String more than 65535 UTF bytes long"); 86 * Encodes the modified UTF-8 bytes corresponding to {@code s} into {@code 93 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes.
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1StringType.java | 47 byte[] bytes = ((String) out.content).getBytes(StandardCharsets.UTF_8); 48 out.content = bytes; 49 out.length = bytes.length; 112 byte[] bytes = ((String) out.content).getBytes(StandardCharsets.UTF_8); 113 out.content = bytes; 114 out.length = bytes.length;
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
xmalloc.c | 40 /* Allocate N bytes of memory dynamically, with error checking. */ 51 /* Change the size of an allocated block of memory P to N bytes, 63 /* If P is null, allocate a block of at least *PN bytes; otherwise, 64 reallocate P so that it contains more than *PN bytes. *PN must be 75 /* Allocate S bytes of zeroed memory dynamically, with error checking. 85 /* Allocate zeroed memory for N elements of S bytes, with error
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
BitmapUtil.java | 32 public static int getSmallerExtentFromBytes(byte[] bytes) { 37 BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); 73 public static Bitmap decodeBitmapFromBytes(byte[] bytes, int sampleSize) { 81 return BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options);
|
/system/core/include/memtrack/ |
memtrack.h | 86 * Returns non-negative size in bytes on success, -errno on error. 99 * Returns non-negative size in bytes on success, -errno on error. 109 * Returns non-negative size in bytes on success, -errno on error. 119 * Returns non-negative size in bytes on success, -errno on error. 129 * Returns non-negative size in bytes on success, -errno on error. 139 * Returns non-negative size in bytes on success, -errno on error.
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
FsFile.java | 26 * A FsFile is a representation of a single block of bytes on a filesystem. It 38 * Gets the length (in bytes) of this file. 55 * {@link ByteBuffer#position() position}, and the number of bytes read 56 * will equal the buffer's {@link ByteBuffer#remaining() remaining} bytes. 59 * @param dest the destination buffer where to put the bytes that were read 67 * {@link ByteBuffer#remaining() remaining} bytes starting at it's
|
/bionic/libc/arch-x86/string/ |
ssse3-memcmp-atom.S | 1834 je L(8bytes) 1837 je L(9bytes) 1839 je L(10bytes) 1841 je L(11bytes) 1843 je L(12bytes) 1845 je L(13bytes) 1847 je L(14bytes) 1848 jmp L(15bytes) 1850 jmp L(12bytes) 1853 je L(10bytes) [all...] |
/prebuilts/tools/common/asm-tools/ |
asm-3.3.1.jar | |
/prebuilts/tools/common/m2/internal/asm/asm/3.3/ |
asm-3.3.jar | |