/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
SDL_ataric2p_s.h | 39 Uint32 srcpitch, /* Length of one source line in bytes */ 40 Uint32 dstpitch /* Length of one destination line in bytes */ 53 Uint32 srcpitch, /* Length of one source line in bytes */ 54 Uint32 dstpitch /* Length of one destination line in bytes */ 67 Uint32 srcpitch, /* Length of one source line in bytes */ 68 Uint32 dstpitch /* Length of one destination line in bytes */
|
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
SDL_macmouse.c | 56 int row, bytes; local 72 bytes = (w+7)/8; 75 SDL_memcpy(&cursor->curs.data[row], data, bytes); 76 data += bytes; 79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes); 80 mask += bytes;
|
/external/valgrind/main/memcheck/tests/ |
partial_load_dflt.stderr.exp | 4 Address 0x........ is 0 bytes inside a block of size 3 alloc'd 10 Address 0x........ is 1 bytes inside a block of size 4 alloc'd 16 Address 0x........ is 0 bytes inside a block of size 1 alloc'd 22 Address 0x........ is 0 bytes inside a block of size 4 free'd 28 in use at exit: ... bytes in ... blocks 29 total heap usage: ... allocs, ... frees, ... bytes allocated
|
partial_load_dflt.stderr.exp64 | 4 Address 0x........ is 0 bytes inside a block of size 7 alloc'd 10 Address 0x........ is 1 bytes inside a block of size 8 alloc'd 16 Address 0x........ is 0 bytes inside a block of size 1 alloc'd 22 Address 0x........ is 0 bytes inside a block of size 8 free'd 28 in use at exit: ... bytes in ... blocks 29 total heap usage: ... allocs, ... frees, ... bytes allocated
|
partial_load_dflt.stderr.expr-s390x-mvc | 4 Address 0x........ is 0 bytes after a block of size 7 alloc'd 10 Address 0x........ is 1 bytes inside a block of size 8 alloc'd 16 Address 0x........ is 0 bytes inside a block of size 1 alloc'd 22 Address 0x........ is 0 bytes inside a block of size 8 free'd 28 in use at exit: ... bytes in ... blocks 29 total heap usage: ... allocs, ... frees, ... bytes allocated
|
leak-cases-full.stderr.exp | 1 leaked: 80 bytes in 5 blocks 2 dubious: 96 bytes in 6 blocks 3 reachable: 64 bytes in 4 blocks 4 suppressed: 0 bytes in 0 blocks 5 16 bytes in 1 blocks are possibly lost in loss record ... of ... 11 16 bytes in 1 blocks are possibly lost in loss record ... of ... 17 16 bytes in 1 blocks are possibly lost in loss record ... of ... 23 16 bytes in 1 blocks are possibly lost in loss record ... of ... 29 16 bytes in 1 blocks are possibly lost in loss record ... of ... 35 16 bytes in 1 blocks are possibly lost in loss record ... of .. [all...] |
/external/webrtc/src/system_wrappers/interface/ |
file_wrapper.h | 43 // Limits the file size to |bytes|. Writing will fail after the cap 45 virtual int SetMaxFileSize(size_t bytes) = 0; 51 // the buffer in bytes in |size|. The name will be truncated if |size| is 62 // Reads |length| bytes from file to |buf|. Returns the number of bytes read 67 // Writes |length| bytes from |buf| to file. The actual writing may happen
|
/libcore/luni/src/main/java/java/io/ |
OutputStreamWriter.java | 30 * the target input stream is converted into bytes by either a default or a 33 * of bytes to be written to target stream and converts these into characters as 44 private ByteBuffer bytes = ByteBuffer.allocate(8192); field in class:OutputStreamWriter 52 * the non-null target stream to write converted bytes to. 65 * the target stream to write converted bytes to. 95 * the target stream to write converted bytes to. 113 * the target stream to write converted bytes to. 143 bytes = null; 149 * Flushes this writer. This implementation ensures that all buffered bytes 150 * are written to the target stream. After writing the bytes, the targe [all...] |
/external/chromium_org/media/base/ |
seekable_buffer.cc | 78 // Update the |forward_bytes_| counter since we have more bytes. 81 // Advise the user to stop append if the amount of forward bytes exceeds 108 // Perform seeking forward only if we have enough bytes in the queue. 112 // Do a read of |size| bytes. 121 // Record the number of bytes taken. 123 // Loop until we taken enough bytes and rewind by the desired |size|. 130 // We try to consume at most |size| bytes in the backward direction. We also 132 // minimum between the two to determine the amount of bytes to take from the 139 // Increase the amount of bytes taken in the backward direction. This 143 // Forward bytes increases and backward bytes decreases by the amoun [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
Attribute_info.java | 41 * item indicates the length of the subsequent information in bytes. The length 42 * does not include the initial six bytes that contain the attribute_name_index 96 * 'bytes'. 99 * @param bytes input .class data stream [may not be null; not validated] 106 final UDataInputStream bytes) 109 final int attribute_name_index = bytes.readU2 (); 110 final long attribute_length = bytes.readU4 (); 117 return new CodeAttribute_info (constants, attribute_name_index, attribute_length, bytes); 121 return new ConstantValueAttribute_info (attribute_name_index, attribute_length, bytes); 125 return new ExceptionsAttribute_info (attribute_name_index, attribute_length, bytes); [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
Utf8Utils.java | 42 * @return non-null; the UTF-8 bytes for it 46 byte[] bytes = new byte[len * 3]; // Avoid having to reallocate. 52 bytes[outAt] = (byte) c; 55 bytes[outAt] = (byte) (((c >> 6) & 0x1f) | 0xc0); 56 bytes[outAt + 1] = (byte) ((c & 0x3f) | 0x80); 59 bytes[outAt] = (byte) (((c >> 12) & 0x0f) | 0xe0); 60 bytes[outAt + 1] = (byte) (((c >> 6) & 0x3f) | 0x80); 61 bytes[outAt + 2] = (byte) ((c & 0x3f) | 0x80); 67 System.arraycopy(bytes, 0, result, 0, outAt); 74 * Converts an array of UTF-8 bytes into a string [all...] |
/external/speex/include/speex/ |
speex_bits.h | 80 void speex_bits_read_from(SpeexBits *bits, char *bytes, int len); 82 /** Append bytes to the bit-stream 85 * @param bytes pointer to the bytes what will be appended 86 * @param len Number of bytes of append 88 void speex_bits_read_whole_bytes(SpeexBits *bits, char *bytes, int len); 93 * @param bytes Memory location where to write the bits 94 * @param max_len Maximum number of bytes to write (i.e. size of the "bytes" buffer) 95 * @return Number of bytes written to the "bytes" buffe [all...] |
/libcore/luni/src/main/java/java/sql/ |
Blob.java | 26 * An SQL {@code BLOB} type stores a large array of binary data (bytes) as the 46 * Retrieves {@code length} bytes from this {@code Blob}, starting at 1-based 57 * Gets a portion of the value of this {@code Blob} as an array of bytes. 63 * the number of bytes to get. 65 * at {@code pos} and is up to {@code length} bytes long. 72 * Gets the number of bytes in this {@code Blob} object. 75 * bytes. 132 * Writes a specified array of bytes to this {@code Blob} object, starting 133 * at a specified position. Returns the number of bytes written. 140 * an array of bytes to write into the {@code Blob} [all...] |
/external/chromium/net/base/ |
upload_data.h | 40 // A block of bytes to be sent in chunked encoding immediately, without 57 const std::vector<char>& bytes() const { return bytes_; } function in class:net::UploadData::Element 67 void SetToBytes(const char* bytes, int bytes_len) { 69 bytes_.assign(bytes, bytes + bytes_len); 96 // Though similar to bytes, a chunk indicates that the element is sent via 99 void SetToChunk(const char* bytes, int bytes_len, bool is_last_chunk); 145 void AppendBytes(const char* bytes, int bytes_len); 155 // Adds the given chunk of bytes to be sent immediately with chunked transfer 157 void AppendChunk(const char* bytes, int bytes_len, bool is_last_chunk) [all...] |
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
LazyField.java | 55 private ByteString bytes; field in class:LazyField 60 ExtensionRegistryLite extensionRegistry, ByteString bytes) { 63 this.bytes = bytes; 78 bytes = null; 85 * bytes, which will make the serialized size changed after LazyField 92 return bytes.size(); 97 return bytes; 101 return bytes; 103 bytes = value.toByteString() [all...] |
CodedOutputStream.java | 65 * Returns the buffer size to efficiently write dataLength bytes to this 68 * @return the buffer size to efficiently write dataLength bytes to this 110 * byte array. If more bytes are written than fit in the array, 121 * byte array slice. If more bytes are written than fit in the slice, 225 /** Write a {@code bytes} field, including tag, to the stream. */ 355 final byte[] bytes = value.getBytes("UTF-8"); 356 writeRawVarint32(bytes.length); 357 writeRawBytes(bytes); 383 /** Write a {@code bytes} field to the stream. */ 425 * Compute the number of bytes that would be needed to encode [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/constant/ |
CONSTANT_info.java | 60 public static CONSTANT_info new_CONSTANT_info (final UDataInputStream bytes) 63 byte tag = bytes.readByte (); 68 return new CONSTANT_Utf8_info (bytes); 71 return new CONSTANT_Integer_info (bytes); 74 return new CONSTANT_Float_info (bytes); 77 return new CONSTANT_Long_info (bytes); 80 return new CONSTANT_Double_info (bytes); 84 return new CONSTANT_Class_info (bytes); 87 return new CONSTANT_String_info (bytes); 91 return new CONSTANT_Fieldref_info (bytes); [all...] |
/bionic/libc/arch-arm/cortex-a15/bionic/ |
memcpy_base.S | 84 // Assumes that the first few bytes have already been prefetched. 92 // Copy up to 15 bytes (count in r3). 107 // Copies 4 bytes, dst 32 bits aligned before, at least 64 bits after. 111 // Copies 8 bytes, dst 64 bits aligned before, at least 128 bits after. 115 2: // Make sure we have at least 64 bytes to copy. 119 1: // The main loop copies 64 bytes at a time. 128 2: // Fix-up the remaining count and make sure we have >= 32 bytes left. 132 // 32 bytes. These cache lines were already preloaded. 140 // Copies 16 bytes, destination 128 bits aligned. 145 // Copy up to 15 bytes (count in r2) [all...] |
/packages/apps/Browser/tests/src/com/android/browser/ |
WebStorageSizeManagerUnitTests.java | 77 private long bytes(double megabytes) { method in class:WebStorageSizeManagerUnitTests 88 mDiskInfo.setTotalSizeBytes(bytes(75)); 89 mDiskInfo.setFreeSpaceSizeBytes(bytes(24)); 97 long origin1EstimatedSize = bytes(3.5); 105 long origin2EstimatedSize = bytes(2.5); 128 long origin3EstimatedSize = bytes(5); 146 manager.onExceededDatabaseQuota("4", "4", 0, bytes(1), totalUsedQuota, mQuotaUpdater); 150 mAppCacheInfo.setAppCacheSizeBytes(bytes(2)); 152 manager.onReachedMaxAppCacheSize(bytes(2), totalUsedQuota, mQuotaUpdater); 160 manager.onReachedMaxAppCacheSize(bytes(1.5), totalUsedQuota, mQuotaUpdater) [all...] |
/prebuilts/sdk/12/ |
android.jar | |
/prebuilts/sdk/16/ |
android.jar | |
/external/guava/guava/src/com/google/common/io/ |
ByteStreams.java | 71 * @param len the maximum number of bytes to read from the buffer 87 * @param from the bytes to write 106 * bytes from the input to the output, and closes the streams. 110 * @return the number of bytes copied 133 * Opens an input stream from the supplier, copies all bytes from the 139 * @return the number of bytes copied 156 * Opens an output stream from the supplier, copies all bytes from the input 162 * @return the number of bytes copied 180 * Copies all bytes from the input stream to the output stream. 185 * @return the number of bytes copie [all...] |
/prebuilts/sdk/4/ |
android.jar | |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
CodedOutputStream.java | 64 * Returns the buffer size to efficiently write dataLength bytes to this 67 * @return the buffer size to efficiently write dataLength bytes to this 109 * byte array. If more bytes are written than fit in the array, 120 * byte array slice. If more bytes are written than fit in the slice, 224 /** Write a {@code bytes} field, including tag, to the stream. */ 354 final byte[] bytes = value.getBytes("UTF-8"); 355 writeRawVarint32(bytes.length); 356 writeRawBytes(bytes); 382 /** Write a {@code bytes} field to the stream. */ 384 final byte[] bytes = value.toByteArray() [all...] |
/external/bison/lib/ |
bitsetv.c | 33 size_t bytes; local 37 /* Determine number of bytes for each set. */ 38 bytes = bitset_bytes (type, n_bits); 41 if (BITSET_SIZE_MAX / (sizeof (bitset) + bytes) <= n_vecs) 45 vector_bytes = (n_vecs + 1) * sizeof (bitset) + bytes - 1; 46 vector_bytes -= vector_bytes % bytes; 47 bsetv = xcalloc (1, vector_bytes + bytes * n_vecs); 51 bsetv[i] = (bitset) (void *) ((char *) bsetv + vector_bytes + i * bytes);
|