HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 1 - 25 of 1676) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2005-07-26-UnionInitCrash.c 3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0}; member in union:__anon4742
  /dalvik/dx/src/com/android/dx/util/
ByteArrayByteInput.java 21 private final byte[] bytes; field in class:ByteArrayByteInput
24 public ByteArrayByteInput(byte... bytes) {
25 this.bytes = bytes;
29 return bytes[position++];
  /external/chromium/chrome/common/
guid_posix.cc 19 std::string RandomDataToGUIDString(const uint64 bytes[2]) {
21 static_cast<unsigned int>(bytes[0] >> 32),
22 static_cast<unsigned int>((bytes[0] >> 16) & 0x0000ffff),
23 static_cast<unsigned int>(bytes[0] & 0x0000ffff),
24 static_cast<unsigned int>(bytes[1] >> 48),
25 bytes[1] & 0x0000ffffffffffffULL);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ByteArray.java 25 private final byte[] bytes; field in class:ByteArray
28 ByteArray(byte[] bytes) {
29 this.bytes = bytes;
30 this.hashCode = Arrays.hashCode(bytes);
42 return Arrays.equals(bytes, lhs.bytes);
  /frameworks/base/core/java/com/android/internal/http/multipart/
ByteArrayPartSource.java 50 private byte[] bytes; field in class:ByteArrayPartSource
55 * @param fileName the name of the file these bytes represent
56 * @param bytes the content of this part
58 public ByteArrayPartSource(String fileName, byte[] bytes) {
61 this.bytes = bytes;
69 return bytes.length;
83 return new ByteArrayInputStream(bytes);
  /external/valgrind/main/memcheck/tests/
leak-0.stderr.exp 1 leaked: 0 bytes in 0 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 0 bytes in 1 blocks
4 suppressed: 0 bytes in 0 blocks
leak-cases-summary.stderr.exp 1 leaked: 80 bytes in 5 blocks
2 dubious: 96 bytes in 6 blocks
3 reachable: 64 bytes in 4 blocks
4 suppressed: 0 bytes in 0 blocks
error_counts.stderr.exp 7 leaked: 0 bytes in 0 blocks
8 dubious: 0 bytes in 0 blocks
9 reachable: 0 bytes in 0 blocks
10 suppressed: 0 bytes in 0 blocks
14 leaked: 77 bytes in 1 blocks
15 dubious: 88 bytes in 1 blocks
16 reachable: 99 bytes in 1 blocks
17 suppressed: 0 bytes in 0 blocks
  /libcore/luni/src/main/java/libcore/icu/
CollationKeyICU.java 22 private final byte[] bytes; field in class:CollationKeyICU
29 CollationKeyICU(String source, byte[] bytes) {
31 this.bytes = bytes;
35 // Get the bytes from the other collation key.
38 rhsBytes = ((CollationKeyICU) other).bytes;
43 if (bytes == null || bytes.length == 0) {
54 int count = Math.min(bytes.length, rhsBytes.length);
56 int s = bytes[i] & 0xff
    [all...]
  /frameworks/base/voip/jni/rtp/
AmrCodec.cpp 102 unsigned char *bytes = (unsigned char *)payload; local
106 samples, bytes + 1, &type, AMR_TX_WMF);
113 bytes[0] = 0xF0;
114 bytes[1] = (mMode << 3) | 0x04;
118 bytes[0] = 0xFF;
119 bytes[1] = 0xC0 | (mMode << 1) | 1;
122 bytes[length + 1] = 0;
124 bytes[i] = (bytes[i] << 6) | (bytes[i + 1] >> 2)
133 unsigned char *bytes = (unsigned char *)payload; local
226 unsigned char *bytes = (unsigned char *)payload; local
244 unsigned char *bytes = (unsigned char *)payload; local
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 42 * Immutable array of bytes.
48 private final byte[] bytes; field in class:ByteString
50 private ByteString(final byte[] bytes) {
51 this.bytes = bytes;
60 return bytes[index];
64 * Gets the number of bytes.
67 return bytes.length;
74 return bytes.length == 0;
86 * Copies the given bytes into a {@code ByteString}
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
X9IntegerConverter.java 26 byte[] bytes = s.toByteArray();
28 if (qLength < bytes.length)
32 System.arraycopy(bytes, bytes.length - tmp.length, tmp, 0, tmp.length);
36 else if (qLength > bytes.length)
40 System.arraycopy(bytes, 0, tmp, tmp.length - bytes.length, bytes.length);
45 return bytes;
  /external/dhcpcd/compat/
getline.c 44 size_t bytes, newlen; local
54 bytes = 0;
58 if (*buf == NULL || bytes != 0) {
66 p = *buf + bytes;
70 bytes += strlen(p);
71 } while (bytes == 0 || *(*buf + (bytes - 1)) != '\n');
72 if (bytes == 0)
74 return bytes;
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
ByteStringMicro.java 36 * Immutable array of bytes.
42 private final byte[] bytes; field in class:ByteStringMicro
44 private ByteStringMicro(final byte[] bytes) {
45 this.bytes = bytes;
54 return bytes[index];
58 * Gets the number of bytes.
61 return bytes.length;
68 return bytes.length == 0;
80 * Copies the given bytes into a {@code ByteStringMicro}
    [all...]
  /libcore/luni/src/main/java/java/lang/
UnsafeByteSequence.java 32 private byte[] bytes; field in class:UnsafeByteSequence
36 this.bytes = new byte[initialCapacity];
52 if (count + length >= bytes.length) {
54 System.arraycopy(bytes, 0, newBytes, 0, count);
55 bytes = newBytes;
57 System.arraycopy(buffer, offset, bytes, count, length);
62 if (count == bytes.length) {
64 System.arraycopy(bytes, 0, newBytes, 0, count);
65 bytes = newBytes;
67 bytes[count++] = (byte) b
    [all...]
  /external/javassist/sample/hotswap/
Test.java 10 byte[] bytes = new byte[(int)newfile.length()];
11 new FileInputStream(newfile).read(bytes);
14 hs.reload("HelloWorld", bytes);
18 bytes = new byte[(int)newfile.length()];
19 new FileInputStream(newfile).read(bytes);
22 hs.reload("HelloWorld", bytes);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERInteger.java 11 byte[] bytes; field in class:DERInteger
57 bytes = BigInteger.valueOf(value).toByteArray();
63 bytes = value.toByteArray();
67 byte[] bytes)
69 this.bytes = bytes;
74 return new BigInteger(bytes);
83 return new BigInteger(1, bytes);
90 out.writeEncoded(INTEGER, bytes);
97 for (int i = 0; i != bytes.length; i++
    [all...]
ASN1Enumerated.java 8 ASN1Enumerated(byte[] bytes)
10 super(bytes);
ASN1GeneralizedTime.java 8 ASN1GeneralizedTime(byte[] bytes)
10 super(bytes);
ASN1Integer.java 8 ASN1Integer(byte[] bytes)
10 super(bytes);
ASN1ObjectIdentifier.java 11 ASN1ObjectIdentifier(byte[] bytes)
13 super(bytes);
ASN1UTCTime.java 8 ASN1UTCTime(byte[] bytes)
10 super(bytes);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
PBEParametersGenerator.java 24 * @param password the password converted into bytes (see below).
106 byte[] bytes = new byte[password.length];
108 for (int i = 0; i != bytes.length; i++)
110 bytes[i] = (byte)password[i];
113 return bytes;
131 * PKCS12 (unicode, big endian, 2 zero pad bytes at the end).
142 // +1 for extra 2 pad bytes.
143 byte[] bytes = new byte[(password.length + 1) * 2];
147 bytes[i * 2] = (byte)(password[i] >>> 8);
148 bytes[i * 2 + 1] = (byte)password[i]
    [all...]
  /external/skia/gpu/src/
GrMemory.cpp 22 void* GrMalloc(size_t bytes) {
23 void* ptr = ::malloc(bytes);
  /frameworks/base/core/java/com/google/android/mms/pdu/
QuotedPrintable.java 26 * Decodes an array quoted-printable characters into an array of original bytes.
35 * @param bytes array of quoted-printable characters
36 * @return array of original bytes,
39 public static final byte[] decodeQuotedPrintable(byte[] bytes) {
40 if (bytes == null) {
44 for (int i = 0; i < bytes.length; i++) {
45 int b = bytes[i];
48 if('\r' == (char)bytes[i + 1] &&
49 '\n' == (char)bytes[i + 2]) {
53 int u = Character.digit((char) bytes[++i], 16)
    [all...]

Completed in 626 milliseconds

1 2 3 4 5 6 7 8 91011>>