/external/valgrind/main/gdbserver_tests/ |
mcleak.stderrB.exp | 3 10 bytes in 1 blocks are still reachable in loss record ... of ... 8 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ... 13 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 18 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ... 23 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 28 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ... 33 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ... 38 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ... 43 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 48 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of .. [all...] |
/frameworks/base/core/java/android/nfc/tech/ |
NfcB.java | 71 * Return the Application Data bytes from ATQB/SENSB_RES at tag discovery. 75 * @return Application Data bytes from ATQB/SENSB_RES bytes 82 * Return the Protocol Info bytes from ATQB/SENSB_RES at tag discovery. 86 * @return Protocol Info bytes from ATQB/SENSB_RES bytes 100 * <p>Use {@link #getMaxTransceiveLength} to retrieve the maximum number of bytes 109 * @param data bytes to send 110 * @return bytes received in response 119 * Return the maximum number of bytes that can be sent with {@link #transceive} [all...] |
/libcore/luni/src/main/java/java/io/ |
BufferedOutputStream.java | 40 * The buffer containing the bytes to be written to the target stream. 45 * The total number of bytes inside the byte array {@code buf}. 51 * of 8192 bytes. 60 * Constructs a new {@code BufferedOutputStream}, providing {@code out} with {@code size} bytes 64 * @param size the size of buffer in bytes. 96 * Writes {@code count} bytes from the byte array {@code buffer} starting at 98 * bytes, they are copied in. If not, the buffered bytes plus the bytes in 105 * the start position in {@code buffer} from where to get bytes [all...] |
BufferedInputStream.java | 40 * The buffer containing the current bytes read from the target InputStream. 45 * The total number of bytes inside the byte array {@code buf}. 67 * of 8192 bytes. 80 * Constructs a new {@code BufferedInputStream}, providing {@code in} with {@code size} bytes 88 * @param size the size of buffer in bytes. 100 * Returns an estimated number of bytes that can be read or skipped without blocking for more 101 * input. This method returns the number of bytes available in the buffer 105 * @return the estimated number of bytes available 175 * indicates how many bytes can be read before a mark is invalidated. 179 * bytes to be supported [all...] |
/packages/apps/Nfc/src/com/android/nfc/snep/ |
SnepMessage.java | 97 byte[] bytes = new byte[ndefLength]; 98 System.arraycopy(data, ndefOffset, bytes, 0, ndefLength); 99 mNdefMessage = new NdefMessage(bytes); 115 byte[] bytes; 117 bytes = mNdefMessage.toByteArray(); 119 bytes = new byte[0]; 125 buffer = new ByteArrayOutputStream(bytes.length + HEADER_LENGTH + 4); 127 buffer = new ByteArrayOutputStream(bytes.length + HEADER_LENGTH); 134 output.writeInt(bytes.length + 4); 137 output.writeInt(bytes.length) [all...] |
/system/netd/ |
BandwidthController.h | 55 int setInterfaceSharedQuota(const char *iface, int64_t bytes); 56 int getInterfaceSharedQuota(int64_t *bytes); 59 int setInterfaceQuota(const char *iface, int64_t bytes); 60 int getInterfaceQuota(const char *iface, int64_t *bytes); 66 int setGlobalAlert(int64_t bytes); 71 int setSharedAlert(int64_t bytes); 74 int setInterfaceAlert(const char *iface, int64_t bytes); 112 int runIptablesAlertCmd(IptOp op, const char *alertName, int64_t bytes); 113 int runIptablesAlertFwdCmd(IptOp op, const char *alertName, int64_t bytes); 127 int updateQuota(const char *alertName, int64_t bytes); [all...] |
/bionic/libc/bionic/ |
malloc_debug_leak.c | 209 void* fill_malloc(size_t bytes) 211 void* buffer = dlmalloc(bytes); 213 memset(buffer, CHK_SENTINEL_VALUE, bytes); 220 size_t bytes = dlmalloc_usable_size(mem); local 221 memset(mem, CHK_FILL_FREE, bytes); 225 void* fill_realloc(void* mem, size_t bytes) 227 void* buffer = fill_malloc(bytes); 233 size_t size = (bytes < old_size)?(bytes):(old_size); 240 void* fill_memalign(size_t alignment, size_t bytes) [all...] |
/bionic/libc/kernel/common/linux/netfilter/ |
xt_sctp.h | 51 #define bytes(type) (sizeof(type) * 8) macro 52 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 54 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 55 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; })
|
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ipt_sctp.h | 50 #define bytes(type) (sizeof(type) * 8) macro 51 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (type % bytes(u_int32_t)); } while (0) 52 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << (type % bytes(u_int32_t))); } while (0) 54 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (type % bytes (u_int32_t)))) ? 1: 0; })
|
/external/apache-http/src/org/apache/commons/codec/net/ |
QuotedPrintableCodec.java | 123 * Encodes an array of bytes into an array of quoted-printable 7-bit characters. Unsafe characters are escaped. 132 * @param bytes 133 * array of bytes to be encoded 134 * @return array of bytes containing quoted-printable data 136 public static final byte[] encodeQuotedPrintable(BitSet printable, byte[] bytes) { 137 if (bytes == null) { 144 for (int i = 0; i < bytes.length; i++) { 145 int b = bytes[i]; 159 * Decodes an array quoted-printable characters into an array of original bytes. Escaped characters are converted 167 * @param bytes [all...] |
/external/chromium/base/win/ |
scoped_bstr.h | 48 // Allocates a new BSTR with the specified number of bytes. 50 BSTR AllocateBytes(size_t bytes); 53 // |bytes|. This is useful when the BSTR was preallocated with e.g. 55 // not all the bytes are being used. 61 // NOTE: The actual allocated size of the BSTR MUST be >= bytes. That 63 void SetByteLen(size_t bytes); 77 // Returns the number of bytes allocated for the BSTR.
|
/external/elfutils/lib/ |
md5.c | 47 /* This array contains the bytes used to pad the buffer to the next 67 /* Put result from CTX in first 16 bytes following RESBUF. The result 85 /* Process the remaining bytes in the internal buffer and the usual 95 /* Take yet unprocessed bytes into account. */ 96 md5_uint32 bytes = ctx->buflen; local 99 /* Now count remaining bytes. */ 100 ctx->total[0] += bytes; 101 if (ctx->total[0] < bytes) 104 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes [all...] |
/external/kernel-headers/original/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ 74 uint8_t payload[0]; /* 507 bytes */ 87 uint8_t payload[0]; /* 493 bytes */ 98 uint8_t raw[0]; /* 507 bytes */ 105 * Now, in the real arcnet hardware, the third and fourth bytes are the 114 offset[2]; /* offset bytes (some weird semantics) */ 133 uint8_t raw[0]; /* 508 bytes */
|
/external/libmtp/src/ |
util.c | 40 * This dumps out a number of bytes to a textual, hexadecimal 44 * @param buf a pointer to the buffer containing the bytes to 46 * @param n the number of bytes to dump from this buffer 61 * This dumps out a number of bytes to a textual, hexadecimal 63 * for each line of bytes. It will also print the memory address 67 * @param buf a pointer to the buffer containing the bytes to 69 * @param n the number of bytes to dump from this buffer
|
/external/skia/include/core/ |
SkData.h | 18 * but the actual ptr that is returned (by data() or bytes()) is guaranteed 24 * Returns the number of bytes stored. 37 const uint8_t* bytes() const { function in class:SkData 43 * Returns the actual number of bytes copied, after clamping offset and 45 * only the computed number of bytes is returned. 98 * SkData. If the SkData is null, data(), bytes() and size() will return 0. 116 const uint8_t* bytes() const { function in class:SkAutoDataUnref
|
/external/skia/src/opts/ |
memset.arm.S | 12 * code which was specified as a count of bytes. More verbose comments 40 * to the number of bytes desired. */ 64 * the number of bytes desired. */ 81 /* (Optionally) write any unaligned leading bytes. 82 * (0-28 bytes, length in r3) */ 99 /* (Optionally) store any remaining trailing bytes. 100 * (0-30 bytes, length in r2) */
|
/external/webkit/Source/WebCore/platform/cf/ |
KURLCFNet.cpp | 45 char* bytes = &buffer[5]; local 46 CFURLGetBytes(url, reinterpret_cast<UInt8*>(bytes), bytesLength); 47 bytes[bytesLength] = '\0'; 48 if (bytes[0] != '/') { 49 parse(bytes, 0); 65 // Currently it throws away the high bytes of the characters in the string in that case, 73 // could either be a malformed string or bytes in a different encoding, like Shift-JIS, so we fall back
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebPDFDocumentExtras.mm | 107 const UInt8* bytes = 0; 117 bytes = CFDataGetBytePtr(data.get()); 120 bytes = CGPDFStringGetBytePtr(string); 123 if (!bytes) 126 NSStringEncoding encoding = (length > 1 && bytes[0] == 0xFE && bytes[1] == 0xFF) ? NSUnicodeStringEncoding : NSUTF8StringEncoding; 127 NSString *script = [[NSString alloc] initWithBytes:bytes length:length encoding:encoding];
|
/frameworks/base/core/java/android/util/ |
Base64InputStream.java | 103 long bytes = Math.min(n, outputEnd-outputStart); local 104 outputStart += bytes; 105 return bytes; 126 int bytes = Math.min(len, outputEnd-outputStart); local 127 System.arraycopy(coder.output, outputStart, b, off, bytes); 128 outputStart += bytes; 129 return bytes;
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLEngineResult.java | 66 * There were not enough bytes available in the source buffer to 102 * the number of bytes retrieved from the source buffer(s). 104 * the number of bytes transferred to the destination buffer(s). 149 * Returns the number of bytes retrieved from the source buffer(s). 151 * @return the number of bytes retrieved from the source buffer(s). 158 * Returns the number of bytes transferred to the destination buffer(s). 160 * @return the number of bytes transferred to the destination buffer(s).
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldCollationKeyTest.java | 32 byte[] bytes = key1.toByteArray(); 33 assertTrue("Not enough bytes", bytes.length >= 3); 46 * System.out.println(Integer.toHexString(order)); } for (int i=0; i<bytes.length; 47 * i+=2) { System.out.print(Integer.toHexString(bytes[i]) + 48 * Integer.toHexString(bytes[i+1]) + " "); } System.out.println(); 52 // bytes = collator.getCollationKey("1234567").toByteArray();
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ 74 uint8_t payload[0]; /* 507 bytes */ 87 uint8_t payload[0]; /* 493 bytes */ 98 uint8_t raw[0]; /* 507 bytes */ 105 * Now, in the real arcnet hardware, the third and fourth bytes are the 114 offset[2]; /* offset bytes (some weird semantics) */ 133 uint8_t raw[0]; /* 508 bytes */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ 74 uint8_t payload[0]; /* 507 bytes */ 87 uint8_t payload[0]; /* 493 bytes */ 98 uint8_t raw[0]; /* 507 bytes */ 105 * Now, in the real arcnet hardware, the third and fourth bytes are the 114 offset[2]; /* offset bytes (some weird semantics) */ 133 uint8_t raw[0]; /* 508 bytes */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ 74 uint8_t payload[0]; /* 507 bytes */ 87 uint8_t payload[0]; /* 493 bytes */ 98 uint8_t raw[0]; /* 507 bytes */ 105 * Now, in the real arcnet hardware, the third and fourth bytes are the 114 offset[2]; /* offset bytes (some weird semantics) */ 133 uint8_t raw[0]; /* 508 bytes */
|
/system/security/keystore/ |
keystore_client.cpp | 50 uint8_t bytes[2] = { argLen >> 8, argLen }; local 51 if (TEMP_FAILURE_RETRY(send(sock, bytes, 2, MSG_NOSIGNAL)) != 2 73 uint8_t bytes[2]; local 75 if (TEMP_FAILURE_RETRY(recv(sock, &bytes[0], 1, 0)) == 1 76 && TEMP_FAILURE_RETRY(recv(sock, &bytes[1], 1, 0)) == 1) { 78 int length = bytes[0] << 8 | bytes[1];
|