/external/dexmaker/src/dx/java/com/android/dx/util/ |
ByteArray.java | 31 private final byte[] bytes; field in class:ByteArray 36 /** {@code >= 0, <= bytes.length}; size computed as 43 * @param bytes {@code non-null;} the underlying array 45 * @param end {@code >= start, <= bytes.length;} end index of 48 public ByteArray(byte[] bytes, int start, int end) { 49 if (bytes == null) { 50 throw new NullPointerException("bytes == null"); 61 if (end > bytes.length) { 62 throw new IllegalArgumentException("end > bytes.length"); 65 this.bytes = bytes [all...] |
/external/iproute2/man/man8/ |
tc-bfifo.8 | 15 bytes 24 does so as measured in bytes. 38 Maximum queue size. Specified in bytes for bfifo, in packets for pfifo. For pfifo, defaults 49 contains the limit, either in packets or in bytes, and the number of bytes 53 In this example, the queue length is 100 packets, 45894 bytes were sent over 681 packets. 60 Sent 45894 bytes 681 pkts (dropped 0, overlimits 0)
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
Util.java | 45 static <T> T fromBytes(byte[] bytes) { 46 if (bytes == null) return null; 49 new ObjectInputStream(new ByteArrayInputStream(bytes)); 57 static String toMd5(byte[] bytes) { 61 algorithm.update(bytes); 70 private static String toHexString(byte[] bytes, String separator) { 72 for (byte b : bytes) {
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecUserDefined.cpp | 52 String TextCodecUserDefined::decode(const char* bytes, size_t length, bool, bool, bool&) 58 signed char c = bytes[i]; 69 char* bytes = result.data(); local 77 bytes[resultLength++] = signedByte; 83 bytes = result.data(); 84 memcpy(bytes + resultLength, replacement, replacementLength); 89 return CString(bytes, resultLength); 95 char* bytes; local 96 CString result = CString::newUninitialized(length, bytes); 102 bytes[i] = c [all...] |
/external/chromium_org/third_party/skia/src/images/ |
SkJpegUtility.cpp | 53 size_t bytes = src->fStream->read(src->fBuffer, skjpeg_source_mgr::kBufferSize); local 56 if (bytes == 0) { 61 src->current_offset += bytes; 64 src->bytes_in_buffer = bytes; 74 size_t bytes = src->fStream->skip(bytesToSkip); local 75 if (bytes <= 0 || bytes > bytesToSkip) { 76 // SkDebugf("xxxxxxxxxxxxxx failure to skip request %d returned %d\n", bytesToSkip, bytes); 81 src->current_offset += bytes; 83 bytesToSkip -= bytes; [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
IsoTypeReader.java | 110 byte[] bytes = new byte[4]; 111 bb.get(bytes); 114 result |= ((bytes[0] << 24) & 0xFF000000); 115 result |= ((bytes[1] << 16) & 0xFF0000); 116 result |= ((bytes[2] << 8) & 0xFF00); 117 result |= ((bytes[3]) & 0xFF); 123 byte[] bytes = new byte[2]; 124 bb.get(bytes); 126 result |= ((bytes[0] << 8) & 0xFF00); 127 result |= ((bytes[1]) & 0xFF) [all...] |
/external/skia/src/images/ |
SkJpegUtility.cpp | 53 size_t bytes = src->fStream->read(src->fBuffer, skjpeg_source_mgr::kBufferSize); local 56 if (bytes == 0) { 61 src->current_offset += bytes; 64 src->bytes_in_buffer = bytes; 74 size_t bytes = src->fStream->skip(bytesToSkip); local 75 if (bytes <= 0 || bytes > bytesToSkip) { 76 // SkDebugf("xxxxxxxxxxxxxx failure to skip request %d returned %d\n", bytesToSkip, bytes); 81 src->current_offset += bytes; 83 bytesToSkip -= bytes; [all...] |
/external/svox/pico/lib/ |
picoklex.h | 70 /* nr of bytes used for pos and index, needs to fit in uint32, ie. max 4 */ 72 /* nr of bytes used for index, needs to fit in uint32, ie. max 4 */ 74 /* max len (in bytes) of ind, (PICOKLEX_MAX_NRRES * PICOKLEX_POSIND_SIZE) */ 80 POS1-byte, IND1-bytes, POS2-byte, IND2-bytes, etc. 82 the IND-bytes are the byte position(s) in the lexblocks part of the 91 picoos_uint8 posindlen; /* number of posind bytes */ 106 PICOKLEX_IND_SIZE bytes are used for the index, these ind bytes are 114 /** lookup lex entry by index ind; ind is a sequence of bytes wit [all...] |
/frameworks/base/core/java/android/nfc/tech/ |
NfcV.java | 72 * Return the Response Flag bytes from tag discovery. 76 * @return Response Flag bytes 83 * Return the DSF ID bytes from tag discovery. 87 * @return DSF ID bytes 98 * provide FLAGS, CMD and PARAMETER bytes. 100 * <p>Use {@link #getMaxTransceiveLength} to retrieve the maximum amount of bytes 109 * @param data bytes to send 110 * @return bytes received in response 120 * Return the maximum number of bytes that can be sent with {@link #transceive}. 121 * @return the maximum number of bytes that can be sent with {@link #transceive} [all...] |
/hardware/samsung_slsi/exynos5/mobicore/daemon/Common/ |
Connection.h | 79 * Read bytes from the connection. 82 * @param len Number of bytes to read. 84 * @return Number of bytes read. 91 * Read bytes from the connection. 94 * @param len Number of bytes to read. 95 * @return Number of bytes read. 100 * Write bytes to the connection. 103 * @param len Number of bytes to read. 104 * @return Number of bytes written. 105 * @return -1 if written bytes not equal to len [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
BaseDumper.java | 36 private final byte[] bytes; field in class:BaseDumper 38 /** whether or not to include the raw bytes (in a column on the left) */ 56 /** number of bytes per line in hex dumps */ 74 * @param bytes {@code non-null;} bytes of the (alleged) class file 80 public BaseDumper(byte[] bytes, PrintStream out, 82 this.bytes = bytes; 124 public void parsed(ByteArray bytes, int offset, int len, String human) { 125 offset = bytes.underlyingOffset(offset, getBytes()) [all...] |
/external/chromium/net/base/ |
mime_sniffer.h | 15 // The maximum number of bytes used by any internal mime sniffing routine. May 18 // This must be updated if any internal sniffing routine needs more bytes. 29 // Guess a mime type from the first few bytes of content an its URL. Always 32 // @param content A buffer containing the bytes to sniff. 33 // @param content_size The number of bytes in the |content| buffer.
|
/external/chromium_org/android_webview/browser/ |
input_stream.h | 24 // Sets |bytes_available| to the number of bytes that can be read (or skipped 31 // Skips over and discards |n| bytes of data from this input stream. Sets 32 // |bytes_skipped| to the number of of bytes skipped. 37 // Reads at most |length| bytes into |dest|. Sets |bytes_read| to the total 38 // number of bytes read into |dest| or 0 if there is no more data because the
|
/external/chromium_org/gpu/command_buffer/service/ |
memory_tracking.h | 60 void TrackMemAlloc(size_t bytes) { 61 mem_represented_ += bytes; 65 void TrackMemFree(size_t bytes) { 66 DCHECK(bytes <= mem_represented_); 67 mem_represented_ -= bytes;
|
/external/chromium_org/net/quic/ |
quic_bandwidth.h | 29 // Create a new QuicBandwidth holding the bytes per second. 32 // Create a new QuicBandwidth holding the kilo bytes per second. 35 // Create a new QuicBandwidth based on the bytes per the elapsed delta. 36 static QuicBandwidth FromBytesAndTimeDelta(QuicByteCount bytes, 59 QuicTime::Delta TransferTime(QuicByteCount bytes) const;
|
/external/chromium_org/net/websockets/ |
websocket_deflater.h | 38 // Adds bytes to |stream_|. 50 // If the current output is larger than |size| bytes, 51 // returns the first |size| bytes of the current output. 52 // The returned bytes will be dropped from the current output and never be 67 // true if bytes were added after last Finish().
|
/external/chromium_org/rlz/lib/ |
crc8_unittest.cc | 30 unsigned char* bytes; local 35 bytes = reinterpret_cast<unsigned char*>(data[i].string); 41 rlz_lib::Crc8::Generate(bytes, length, &crc); 43 rlz_lib::Crc8::Verify(bytes, length, crc, &matches); 48 rlz_lib::Crc8::Verify(bytes, length, crc, &matches);
|
/external/llvm/include/llvm/Support/ |
StringRefMemoryObject.h | 26 StringRef Bytes; 29 StringRefMemoryObject(StringRef Bytes, uint64_t Base = 0) 30 : Bytes(Bytes), Base(Base) {} 33 uint64_t getExtent() const LLVM_OVERRIDE { return Bytes.size(); }
|
/external/valgrind/main/memcheck/tests/ |
partial_load_ok.stderr.exp | 4 Address 0x........ is 1 bytes inside a block of size 4 alloc'd 10 Address 0x........ is 0 bytes inside a block of size 1 alloc'd 16 Address 0x........ is 0 bytes inside a block of size 4 free'd 22 in use at exit: ... bytes in ... blocks 23 total heap usage: ... allocs, ... frees, ... bytes allocated
|
partial_load_ok.stderr.exp64 | 4 Address 0x........ is 1 bytes inside a block of size 8 alloc'd 10 Address 0x........ is 0 bytes inside a block of size 1 alloc'd 16 Address 0x........ is 0 bytes inside a block of size 8 free'd 22 in use at exit: ... bytes in ... blocks 23 total heap usage: ... allocs, ... frees, ... bytes allocated
|
/frameworks/base/tests/CoreTests/android/core/ |
Sha1Test.java | 56 private static String encodeHex(byte[] bytes) { 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));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
vlimit.h | 41 /* Largest file which can be created (bytes). */ 44 /* Maximum size of the data segment (bytes). */ 47 /* Maximum size of the stack segment (bytes). */ 50 /* Largest core file that will be created (bytes). */ 53 /* Resident set size (bytes). */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
vlimit.h | 41 /* Largest file which can be created (bytes). */ 44 /* Maximum size of the data segment (bytes). */ 47 /* Maximum size of the stack segment (bytes). */ 50 /* Largest core file that will be created (bytes). */ 53 /* Resident set size (bytes). */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
vlimit.h | 41 /* Largest file which can be created (bytes). */ 44 /* Maximum size of the data segment (bytes). */ 47 /* Maximum size of the stack segment (bytes). */ 50 /* Largest core file that will be created (bytes). */ 53 /* Resident set size (bytes). */
|
/sdk/emulator/opengl/host/tools/emugen/ |
VarType.h | 23 VarConverter(size_t bytes) : m_bytes(bytes) {} 24 size_t bytes() const { return m_bytes; } function in class:VarConverter 67 size_t bytes() const { return m_converter->bytes(); } function in class:VarType
|