/frameworks/compile/slang/BitWriter_2_9_func/ |
ReaderWriter_2_9_func.h | 63 /// isBitcodeWrapper - Return true if the given bytes are the magic bytes 68 // See if you can find the hidden message in the magic bytes :-). 77 /// isRawBitcode - Return true if the given bytes are the magic bytes for 82 // These bytes sort of have a hidden message, but it's not in 91 /// isBitcode - Return true if the given bytes are the magic bytes for 118 OffsetField = 2*4, // Offset in bytes to Offset field. 119 SizeField = 3*4 // Offset in bytes to Size field [all...] |
/libcore/luni/src/main/java/java/io/ |
SequenceInputStream.java | 45 * the first stream to get bytes from. 47 * the second stream to get bytes from. 67 * the enumeration of {@code InputStreams} to get bytes from. 149 * Reads at most {@code count} bytes from this sequence of input streams and 155 * To do this it will read only as many bytes as a call to read on the 156 * current substream returns. If that call does not return as many bytes as 166 * the array in which to store the bytes read. 168 * the initial position in {@code buffer} to store the bytes read 171 * the maximum number of bytes to store in {@code buffer}. 172 * @return the number of bytes actually read; -1 if this sequence of stream [all...] |
/libcore/luni/src/main/java/libcore/io/ |
Streams.java | 57 * Fills 'dst' with bytes from 'in', throwing EOFException if insufficient bytes are available. 64 * Reads exactly 'byteCount' bytes from 'in' (into 'dst' at offset 'offset'), and throws 65 * EOFException if insufficient bytes are available. 105 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); local 109 bytes.write(buffer, 0, count); 111 return bytes.toByteArray(); 139 * {@code byteCount} bytes have been read. 175 * Copies all of the bytes from {@code in} to {@code out}. Neither stream is closed. 176 * Returns the total number of bytes transferred [all...] |
/libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/ |
CipherSuiteTest.java | 65 byte[] bytes = cs.toBytes(); 66 assertNotNull(name, bytes); 67 assertEquals(name, 2, bytes.length); 68 assertTrue(name + bytes[0], bytes[0] == (byte) 0x00 || bytes[0] == (byte) 0xc0); 69 assertSame(name, cs, CipherSuite.getByCode(bytes[0], bytes[1])); 70 assertSame(name, cs, CipherSuite.getByCode((byte) 0, bytes[0], bytes[1])) [all...] |
/packages/apps/Email/src/org/apache/commons/io/input/ |
AutoCloseInputStream.java | 71 * @return next byte in the stream, or -1 if no more bytes are available
83 * Reads and returns bytes from the underlying input stream to the given
87 * @param b buffer to which bytes from the stream are written
88 * @return number of bytes read, or -1 if no more bytes are available
100 * Reads and returns bytes from the underlying input stream to the given
104 * @param b buffer to which bytes from the stream are written
106 * @param len maximum number of bytes to read
107 * @return number of bytes read, or -1 if no more bytes are available [all...] |
/bionic/libc/arch-arm/bionic/ |
memcmp.S | 37 * (1) The main loop compares 16 bytes at a time 64 /* make sure we have at least 8+4 bytes, this simplify things below 87 0: /* here the first pointer is aligned, and we have at least 4 bytes 96 /* congruent case, 32 bytes per iteration 97 * We need to make sure there are at least 32+4 bytes left 136 /* do we have at least 4 bytes left? */ 140 /* finish off 4 bytes at a time */ 153 /* finish off the remaining bytes */ 156 2: /* the last 4 bytes are different, restart them */ 161 /* process the last few bytes */ [all...] |
/external/guava/guava/src/com/google/common/hash/ |
AbstractStreamingHashFunction.java | 73 /** Number of bytes to be filled before process() invocation(s). */ 76 /** Number of bytes processed per process() invocation. */ 83 * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation; 95 * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation; 112 * Processes the available bytes of the buffer (at most {@code chunk} bytes). 117 * This is invoked for the last bytes of the input, which are not enough to 136 public final Hasher putBytes(byte[] bytes) { 137 return putBytes(bytes, 0, bytes.length) [all...] |
/external/iproute2/doc/actions/ |
ifb-README | 72 PING 10.22 (10.0.0.22): 56 data bytes 73 64 bytes from 10.0.0.22: icmp_seq=0 ttl=64 time=2.8 ms 74 64 bytes from 10.0.0.22: icmp_seq=1 ttl=64 time=0.6 ms 75 64 bytes from 10.0.0.22: icmp_seq=2 ttl=64 time=0.6 ms 93 Sent 252 bytes 3 pkts (dropped 0, overlimits 0) 97 Sent 252 bytes 3 pkts (dropped 0, overlimits 0) 101 Sent 0 bytes 0 pkts (dropped 0, overlimits 0) 103 Sent 210 bytes 3 pkts (dropped 0, overlimits 0) 105 Sent 294 bytes 3 pkts (dropped 0, overlimits 0) 107 Sent 504 bytes 6 pkts (dropped 0, overlimits 0) [all...] |
/external/llvm/lib/MC/MCDisassembler/ |
Disassembler.cpp | 113 uint8_t *Bytes; 117 DisasmMemoryObject(uint8_t *bytes, uint64_t size, uint64_t basePC) : 118 Bytes(bytes), Size(size), BasePC(basePC) {} 126 *Byte = Bytes[Addr - BasePC]; 134 // disassembler context specified in the parameter DC. The bytes of the 135 // instruction are specified in the parameter Bytes, and contains at least 136 // BytesSize number of bytes. The instruction is at the address specified by 139 // parameter OutStringSize. This function returns the number of bytes in the 141 // returns zero the caller will have to pick how many bytes they want to ste [all...] |
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 144 ScopedByteArrayRO bytes(env, arr); 145 if (bytes.get() == NULL) { 148 jboolean success = (BN_bin2bn(reinterpret_cast<const unsigned char*>(bytes.get()), len, ret) != NULL); 193 #define BYTES2INT(bytes, k) \ 194 ( (bytes[k + 3] & 0xFF) \ 195 | (bytes[k + 2] & 0xFF) << 8 \ 196 | (bytes[k + 1] & 0xFF) << 16 \ 197 | (bytes[k + 0] & 0xFF) << 24 ) 199 static jboolean negBigEndianBytes2bn(JNIEnv*, jclass, const unsigned char* bytes, int bytesLen, BIGNUM* ret) { 200 // We rely on: (BN_BITS2 == 32), i.e. BN_ULONG is unsigned int and has 4 bytes [all...] |
/libcore/luni/src/main/java/java/nio/ |
ByteBuffer.java | 24 * A buffer for bytes. 155 * of remaining bytes divided by two, and its mark is not set. The new 172 * of remaining bytes divided by eight, and its mark is not set. The new 190 * of remaining bytes divided by four, and its mark is not set. The new 207 * of remaining bytes divided by four, and its mark is not set. The new 224 * of remaining bytes divided by eight, and its mark is not set. The new 256 * of remaining bytes divided by two, and its mark is not set. The new 271 * The remaining bytes will be moved to the head of the 283 * Compares the remaining bytes of this buffer to another byte buffer's 284 * remaining bytes [all...] |
/external/elfutils/tests/ |
run-show-ciefde.sh | 37 CIE[0]: bytes = 0c 04 04 88 01 00 00 39 FDE[0]: bytes = 18 00 00 00 18 00 00 00 2c 84 04 08 29 00 00 00 41 0e 08 85 02 42 0d 05 41 83 03 00 52 CIE[0]: bytes = 0c 04 04 88 01 57 CIE[1]: bytes = 0c 04 04 88 01 00 00 62 CIE[2]: bytes = 0c 04 04 88 01 00 00 67 CIE[3]: bytes = 0c 04 04 88 01 72 CIE[4]: bytes = 0c 04 04 88 01 00 00 74 FDE[0]: bytes = 2c 00 00 00 1c 00 00 00 fc 93 04 08 9a 00 00 00 41 0e 08 85 02 42 0d 05 53 2e 08 50 2e 10 48 2e 00 58 2e 10 62 2e 00 63 2e 10 45 2e 00 00 00 00 78 FDE[1]: bytes = 18 00 00 00 4c 00 00 00 98 94 04 08 31 00 00 00 41 0e 08 85 02 42 0d 05 4c 2e 10 00 82 FDE[2]: bytes = 18 00 00 00 18 00 00 00 d4 94 04 08 17 00 00 00 41 0e 08 85 02 42 0d 05 41 83 03 0 [all...] |
/prebuilt/common/asm/ |
asm-4.0.jar | |
/prebuilts/tools/common/asm-tools/ |
asm-4.0.jar | |
/dalvik/dx/src/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.
|
/device/moto/wingray/libaudio/ |
AudioPostProcessor.h | 58 bool stereo, int bytes, Mutex * fdLockp); 59 int read(int fd, void * buffer, int bytes, int rate); 60 int applyUplinkEcns(void * buffer, int bytes, int rate); 67 void initEcns(int rate, int bytes); 70 void ecnsLogToRam(int bytes); 118 int readData(int fd, void * buffer, int bytes, int rate,
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
BufferedInputStreamTest.java | 75 // Close underlying FileInputStream, all but 1 buffered bytes should 117 assertTrue("Returned incorrect number of available bytes", is 208 byte[] bytes = new byte[256]; 210 bytes[i] = (byte) i; 213 new ByteArrayInputStream(bytes), 12); 218 assertTrue("Wrong bytes", in.read() == 6 && in.read() == 7); 220 in = new BufferedInputStream(new ByteArrayInputStream(bytes), 12); 225 assertTrue("Wrong bytes 2", in.read() == 6 && in.read() == 7); 230 bytes = new byte[3]; 231 int result = buf.read(bytes); [all...] |
/external/chromium/crypto/third_party/nss/ |
blapit.h | 65 #define SHA256_LENGTH 32 /* bytes */ 66 #define SHA384_LENGTH 48 /* bytes */ 67 #define SHA512_LENGTH 64 /* bytes */ 74 #define SHA256_BLOCK_LENGTH 64 /* bytes */ 75 #define SHA384_BLOCK_LENGTH 128 /* bytes */ 76 #define SHA512_BLOCK_LENGTH 128 /* bytes */
|
/external/chromium/net/base/ |
ip_endpoint.cc | 89 const char* bytes = reinterpret_cast<const char*>(&addr->sin_addr); local 90 address_.assign(&bytes[0], &bytes[kIPv4AddressSize]); 97 const char* bytes = reinterpret_cast<const char*>(&addr->sin6_addr); local 98 address_.assign(&bytes[0], &bytes[kIPv6AddressSize]);
|
/external/clang/test/Analysis/ |
system-header-simulator-objc.h | 85 - (id)initWithBytes:(const void *)bytes length:(NSUInteger)len encoding:(NSStringEncoding)encoding; 86 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)len encoding:(NSStringEncoding)encoding freeWhenDone:(BOOL)freeBuffer; 90 + (id)dataWithBytesNoCopy:(void *)bytes length:(NSUInteger)length; 91 + (id)dataWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b; 92 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length; 93 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b;
|
/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/include/llvm/Support/ |
MemoryObject.h | 32 /// getExtent - Returns the size of the region in bytes. (The region is 47 /// readBytes - Tries to read a contiguous range of bytes from the 50 /// way than going back and forth with individual bytes. 54 /// @param size - The maximum number of bytes to copy. 56 /// and large enough to hold size bytes. 58 /// of bytes actually read. May be NULL.
|
/external/llvm/lib/Support/ |
StreamableMemoryObject.cpp | 95 // keep fetching until we run out of bytes 102 *ptr = Bytes[address + BytesSkipped]; 111 memcpy(buf, &Bytes[address + BytesSkipped], size); 125 Bytes.reserve(size); 136 Bytes(kChunkSize), Streamer(streamer), BytesRead(0), BytesSkipped(0), 138 BytesRead = streamer->GetBytes(&Bytes[0], kChunkSize);
|