Searched refs:bytes (Results 51 - 75 of 2342) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DDecoderSpecificInfo.java34 byte[] bytes; field in class:DecoderSpecificInfo
39 bytes = new byte[sizeOfInstance];
40 bb.get(bytes);
45 return bytes.length;
49 ByteBuffer out = ByteBuffer.wrap(bytes);
58 sb.append("{bytes=").append(bytes == null ? "null" : Hex.encodeHex(bytes));
74 if (!Arrays.equals(bytes, that.bytes)) {
[all...]
/external/qemu/include/qemu/
H A Diov.h20 * count and return data size, in bytes, of an iovec
29 * `bytes' bytes long will be copied to/from an iovec `iov' with
33 * Number of bytes actually copied will be returned, which is
34 * min(bytes, iov_size(iov)-offset)
36 * It is okay to use very large value for `bytes' since we're
40 * so specifying `-1' as `bytes' means 'up to the end of iovec'.
43 size_t offset, const void *buf, size_t bytes);
45 size_t offset, void *buf, size_t bytes);
48 * Set data bytes pointe
[all...]
/external/proguard/src/proguard/classfile/constant/
H A DUtf8Constant.java54 // Initially, we're storing the UTF-8 bytes in a byte array.
59 private byte[] bytes; field in class:Utf8Constant
78 this.bytes = null;
84 * Initializes the UTF-8 data with an array of bytes.
86 public void setBytes(byte[] bytes) argument
88 this.bytes = bytes;
94 * Returns the UTF-8 data as an array of bytes.
107 return bytes;
116 this.bytes
244 getStringRepresentation(byte[] bytes) argument
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dtroo.stdout.exp1 0 bytes translated
3 0 bytes translated
5 5 bytes translated
7 10 bytes translated
9 0 bytes translated
11 1 bytes translated
13 8 bytes translated
H A Dtrot.stdout.exp1 0 bytes translated
3 0 bytes translated
5 0 bytes translated
7 3 bytes translated
9 10 bytes translated
11 2 bytes translated
13 3 bytes translated
15 9 bytes translated
H A Dtrto.stdout.exp1 0 bytes translated
3 0 bytes translated
5 0 bytes translated
7 6 bytes translated
9 10 bytes translated
11 2 bytes translated
13 0 bytes translated
15 9 bytes translated
/external/valgrind/main/gdbserver_tests/
H A Dmcleak.stderr.exp4 expecting details 10 bytes reachable
5 10 bytes in 1 blocks are still reachable in loss record ... of ...
11 expecting details +10 bytes lost, +21 bytes reachable
12 expecting details +65 bytes reachable
14 expecting details +10 bytes reachable
15 expecting details -10 bytes reachable, +10 bytes lost
16 expecting details -10 bytes lost, +10 bytes reachabl
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDEREnumerated.java14 byte[] bytes; field in class:DEREnumerated
80 bytes = BigInteger.valueOf(value).toByteArray();
89 bytes = value.toByteArray();
96 byte[] bytes)
98 this.bytes = bytes;
103 return new BigInteger(bytes);
113 return 1 + StreamUtil.calculateBodyLength(bytes.length) + bytes.length;
120 out.writeEncoded(BERTags.ENUMERATED, bytes);
95 DEREnumerated( byte[] bytes) argument
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_info.java60 public static CONSTANT_info new_CONSTANT_info (final UDataInputStream bytes) argument
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...]
/external/chromium_org/mojo/apps/js/test/
H A Dhexdump.js13 function dumpArray(bytes) {
15 for (var i = 0; i < bytes.length; ++i) {
16 dumped += hexify(bytes[i], 2);
/external/chromium_org/third_party/cython/src/Cython/Tempita/
H A Dcompat3.py3 __all__ = ['b', 'basestring_', 'bytes', 'next', 'is_unicode']
6 b = bytes = str
13 return bytes(s)
14 basestring_ = (bytes, str)
15 bytes = bytes variable
44 return bytes(v)
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-for-malloc.h19 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)len;
23 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)len {
24 return [self initWithBytesNoCopy:bytes length:len freeWhenDone:1]; // no-warning
29 + (id)somethingNoCopy:(char *)bytes;
30 + (id)somethingNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)freeBuffer;
31 + (id)something:(char *)bytes freeWhenDone:(BOOL)freeBuffer;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DOutput.java27 * bytes written to this instance.
76 * @return {@code 1..5;} the number of bytes actually written
86 * @return {@code 1..5;} the number of bytes actually written
93 * @param bytes {@code non-null;} the array to write
95 public void write(ByteArray bytes); argument
100 * @param bytes {@code non-null;} the array to write
101 * @param offset {@code >= 0;} offset into {@code bytes} for the first
103 * @param length {@code >= 0;} number of bytes to write
105 public void write(byte[] bytes, int offset, int length); argument
109 * a convenient shorthand for {@code write(bytes,
113 write(byte[] bytes) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeWriterVariable.java23 public static void write(long v, ByteBuffer bb, int bytes) { argument
24 switch (bytes) {
41 throw new RuntimeException("I don't know how to read " + bytes + " bytes");
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DNdefRecordTest.java15 byte[] bytes = "mumble".getBytes();
16 NdefRecord ndefRecord = new NdefRecord(bytes);
18 assertSame(ndefRecord.getPayload(), bytes);
/external/chromium_org/crypto/
H A Drandom.h14 // Fills the given buffer with |length| random bytes of cryptographically
17 CRYPTO_EXPORT void RandBytes(void *bytes, size_t length);
/external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
H A Daligned_ptr.h24 * Allocate an aligned pointer to an area of size |bytes| bytes. The
25 * pointer is aligned to |alignment| bytes, which MUST be a power of
29 struct AlignedPtr* AllocAlignedPointer(int alignment, int bytes);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Ddecode.h30 const uint16_t *bytes, /* (i) encoded signal bits */
/external/google-tv-pairing-protocol/cpp/src/polo/util/
H A Dpoloutil.h29 // Converts an array of big-endian bytes to a hex string.
30 // @param bytes an array of big-endian bytes
33 static const std::string BytesToHexString(const uint8_t* bytes,
36 // Converts a hex string to an array of big-endian bytes. A new byte array
37 // is created at the given bytes pointer, and the number of bytes is returned.
38 // The byte array must be freed using: delete[] bytes.
40 // @param bytes pointer to a byte array that will be created with the
42 // @return the number of bytes i
[all...]
/external/valgrind/main/helgrind/tests/
H A Dtc16_byterace.c7 char bytes[10]; variable
13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */
28 bytes accessed */
30 bytes[2*i + 1] ++; /* accesses: 1 3 5 7 9 */
32 /* Unprotected relative to child, but harmful; same bytes */
34 bytes[3*i + 1] ++; /* accesses: 1 4(race!) 7 */
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Db64.js6 function B64_encode(bytes, opt_length) {
7 if (!opt_length) opt_length = bytes.length;
16 accu |= bytes[inputIndex++];
34 function base64_encode(bytes, opt_length) {
35 if (!opt_length) opt_length = bytes.length;
44 accu |= bytes[inputIndex++];
73 var bytes = [];
83 bytes.push((accu >> (shift - 8)) & 255);
87 return bytes;
/external/chromium_org/third_party/tlslite/tlslite/
H A Dx509.py18 @type bytes: L{bytearray} of unsigned bytes
19 @ivar bytes: The DER-encoded ASN.1 certificate
24 @type subject: L{bytearray} of unsigned bytes
29 self.bytes = bytearray(0)
42 bytes = dePem(s, "CERTIFICATE")
43 self.parseBinary(bytes)
46 def parseBinary(self, bytes):
49 @type bytes: str or L{bytearray} of unsigned bytes
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStrings.java10 public static String fromUTF8ByteArray(byte[] bytes) argument
15 while (i < bytes.length)
18 if ((bytes[i] & 0xf0) == 0xf0)
24 else if ((bytes[i] & 0xe0) == 0xe0)
28 else if ((bytes[i] & 0xc0) == 0xc0)
43 while (i < bytes.length)
47 if ((bytes[i] & 0xf0) == 0xf0)
49 int codePoint = ((bytes[i] & 0x03) << 18) | ((bytes[i+1] & 0x3F) << 12) | ((bytes[
250 fromByteArray(byte[] bytes) argument
261 asCharArray(byte[] bytes) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkChunkAlloc.cpp72 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) { argument
73 size_t size = bytes;
94 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) { argument
95 fTotalUsed += bytes;
97 bytes = SkAlign4(bytes);
101 if (block == NULL || bytes > block->fFreeSize) {
102 block = this->newBlock(bytes, ftype);
110 SkASSERT(block && bytes <= block->fFreeSize);
113 block->fFreeSize -= bytes;
119 size_t bytes = 0; local
[all...]
/external/skia/src/core/
H A DSkChunkAlloc.cpp72 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) { argument
73 size_t size = bytes;
94 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) { argument
95 fTotalUsed += bytes;
97 bytes = SkAlign4(bytes);
101 if (block == NULL || bytes > block->fFreeSize) {
102 block = this->newBlock(bytes, ftype);
110 SkASSERT(block && bytes <= block->fFreeSize);
113 block->fFreeSize -= bytes;
119 size_t bytes = 0; local
[all...]

Completed in 5454 milliseconds

1234567891011>>