/bionic/libc/arch-arm/cortex-a15/bionic/ |
memset.S | 90 // r2 is the number of bytes to set 111 1: // Main loop sets 64 bytes at a time. 121 // Restore r2 to the count of bytes left to set. 125 // Set 32 bytes. 133 // Set 16 bytes. 140 // Less than 16 bytes to set. 144 // Set 8 bytes. 149 // Set 4 bytes 180 // Set up to 15 bytes.
|
/bootable/diskinstaller/ |
android_img_data_layout.conf | 4 # bytes in a disk "block", must be a power of 2!
|
android_img_system_layout.conf | 4 # bytes in a disk "block", must be a power of 2!
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
StringDataItem.java | 47 * @return {@code >= 2}; the write size, in bytes 72 ByteArray bytes = value.getBytes(); local 78 out.annotate(bytes.size() + 1, value.toQuoted()); 82 out.write(bytes);
|
/dalvik/dx/src/com/android/dx/dex/file/ |
StringDataItem.java | 47 * @return {@code >= 2}; the write size, in bytes 72 ByteArray bytes = value.getBytes(); local 78 out.annotate(bytes.size() + 1, value.toQuoted()); 82 out.write(bytes);
|
/dalvik/libdex/ |
Leb128.cpp | 27 * values are ones that are five bytes long where the final byte has 29 * passed as non-NULL and bytes would need to be read past the limit, 49 * values are ones that are five bytes long where the final byte has 51 * passed as non-NULL and bytes would need to be read past the limit,
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
FileOutputStreamTest.java | 43 byte[] bytes; field in class:FileOutputStreamTest 177 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString 269 fos.write(bytes); 282 fos.write(bytes); 284 fos.write(bytes); 286 fos.write(bytes); 303 fos.write(bytes); 305 fos.write(bytes); 307 fos.write(bytes); 324 fos.write(bytes); [all...] |
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/ |
FinishedTest.java | 36 byte[] bytes = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2 }; 37 Finished message = new Finished(bytes); 40 .getData(), bytes)); 65 fail("Extra bytes: No expected AlertException ");
|
/external/blktrace/btt/ |
trace_im.c | 75 if (s_iop->t.bytes == 0) 84 if (g_iop->t.bytes == 0) 93 if (i_iop->t.bytes == 0) 102 if (m_iop->t.bytes == 0)
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
ContentSigner.java | 24 * @return bytes representing the signature.
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/ |
JcaContentSignerBuilder.java | 115 public void write(byte[] bytes, int off, int len) 120 sig.update(bytes, off, len); 128 public void write(byte[] bytes) 133 sig.update(bytes);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/ |
ECPrivateKey.java | 53 byte[] bytes = BigIntegers.asUnsignedByteArray(key); 58 v.add(new DEROctetString(bytes)); 75 byte[] bytes = BigIntegers.asUnsignedByteArray(key); 80 v.add(new DEROctetString(bytes));
|
ECPrivateKeyStructure.java | 38 byte[] bytes = BigIntegers.asUnsignedByteArray(key); 43 v.add(new DEROctetString(bytes)); 60 byte[] bytes = BigIntegers.asUnsignedByteArray(key); 65 v.add(new DEROctetString(bytes));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
CTSBlockCipher.java | 40 * an input of len bytes. 44 * with len bytes of input. 62 * doFinal with an input of len bytes. 66 * with len bytes of input. 80 * @return the number of output bytes copied to out. 106 * process an array of bytes, producing output if necessary. 110 * @param len the number of bytes to be copied out of the input array. 113 * @return the number of output bytes copied to out. 179 * @return the number of output bytes copied to out.
|
/external/chromium/chrome/browser/chromeos/ |
network_message_observer_unittest.cc | 15 int64 end_sec, int64 bytes, int64 used) { 20 plan.plan_data_bytes = bytes; 30 // (unlimited OR used bytes < max bytes) AND
|
/external/chromium/chrome/browser/parsers/ |
metadata_parser_jpeg_factory.h | 19 virtual bool CanParse(const FilePath& path, char* bytes, int bytes_size);
|
/external/chromium/chrome/browser/sync/protocol/ |
bookmark_specifics.proto | 22 optional bytes favicon = 2;
|
/external/chromium_org/base/android/ |
jni_array.cc | 15 JNIEnv* env, const uint8* bytes, size_t len) { 21 memcpy(elements, bytes, len); 147 jbyte* bytes = env->GetByteArrayElements(byte_array, NULL); local 148 out->insert(out->end(), bytes, bytes + len); 149 env->ReleaseByteArrayElements(byte_array, bytes, JNI_ABORT); 198 jbyte* bytes = env->GetByteArrayElements(bytes_array, NULL); local 199 (*out)[i].assign(reinterpret_cast<const char*>(bytes), bytes_len); 200 env->ReleaseByteArrayElements(bytes_array, bytes, JNI_ABORT);
|
jni_array.h | 19 // Returns a new Java byte array converted from the given bytes array. 21 JNIEnv* env, const uint8* bytes, size_t len); 58 // Appends the Java bytes in |bytes_array| onto the end of |out|. 64 // Replaces the content of |out| with the Java bytes in |bytes_array|.
|
sys_utils.h | 20 // Return the device's RAM size in kilo-bytes. Used for testing.
|
/external/chromium_org/base/ |
sys_byteorder.h | 37 // Returns a value with all bytes in |x| swapped, i.e. reverses the endianness. 78 // Converts the bytes in |x| from host order (endianness) to little endian, and 102 // Converts the bytes in |x| from network to host order (endianness), and 126 // Converts the bytes in |x| from host to network order (endianness), and
|
/external/chromium_org/chrome/browser/chromeos/policy/proto/ |
install_attributes.proto | 17 required bytes value = 2;
|
/external/chromium_org/chrome/browser/parsers/ |
metadata_parser_jpeg_factory.h | 22 char* bytes,
|
/external/chromium_org/chrome/browser/policy/proto/chromeos/ |
install_attributes.proto | 17 required bytes value = 2;
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
timeline_view.css | 62 #timeline-view-bytes-received { 66 #timeline-view-bytes-sent { 70 #timeline-view-disk-cache-bytes-read { 74 #timeline-view-disk-cache-bytes-written {
|