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

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /external/iptables/extensions/
libipt_quota.man 4 .BI "--quota " "bytes"
5 The quota in bytes.
  /libcore/luni/src/main/java/com/ibm/icu4jni/text/
CollationKey.java 20 private final byte[] bytes; field in class:CollationKey
27 CollationKey(String source, byte[] bytes) {
29 this.bytes = bytes;
33 // Get the bytes from the other collation key.
36 rhsBytes = ((CollationKey) other).bytes;
41 if (bytes == null || bytes.length == 0) {
52 int count = Math.min(bytes.length, rhsBytes.length);
54 int s = bytes[i] & 0xff
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DEREnumerated.java 11 byte[] bytes; field in class:DEREnumerated
58 bytes = BigInteger.valueOf(value).toByteArray();
64 bytes = value.toByteArray();
68 byte[] bytes)
70 this.bytes = bytes;
75 return new BigInteger(bytes);
82 out.writeEncoded(ENUMERATED, bytes);
95 return Arrays.areEqual(this.bytes, other.bytes);
    [all...]
DERInteger.java 11 byte[] bytes; field in class:DERInteger
58 bytes = BigInteger.valueOf(value).toByteArray();
64 bytes = value.toByteArray();
68 byte[] bytes)
70 this.bytes = bytes;
75 return new BigInteger(bytes);
84 return new BigInteger(1, bytes);
91 out.writeEncoded(INTEGER, bytes);
98 for (int i = 0; i != bytes.length; i++
    [all...]
DERInputStream.java 47 throw new IOException("DER length more than 4 bytes");
73 byte[] bytes)
76 int left = bytes.length;
85 int l = read(bytes, bytes.length - left, left);
102 byte[] bytes)
110 ByteArrayInputStream bIn = new ByteArrayInputStream(bytes);
128 bIn = new ByteArrayInputStream(bytes);
148 return DERBoolean.getInstance(bytes);
151 return new DERInteger(bytes);
    [all...]
  /external/kernel-headers/original/asm-arm/
a.out.h 10 __u32 a_text; /* length of text, in bytes */
11 __u32 a_data; /* length of data, in bytes */
12 __u32 a_bss; /* length of uninitialized data area for file, in bytes */
13 __u32 a_syms; /* length of symbol table data in file, in bytes */
15 __u32 a_trsize; /* length of relocation info for text, in bytes */
16 __u32 a_drsize; /* length of relocation info for data, in bytes */
  /external/kernel-headers/original/asm-x86/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /external/chromium/net/tools/flip_server/
buffer_interface.h 13 // Returns the bytes which can be read from the buffer. There is no
14 // guarantee that the bytes are contiguous.
24 // returns the number of bytes free in this buffer.
26 // number of bytes free.
42 // appends up-to-'size' bytes to the buffer.
44 // bytes - bytes which are read, and copied into the buffer.
45 // size - number of bytes which are read and copied.
47 virtual int Write(const char* bytes, int size) = 0;
57 // size - the amount of data (in bytes) that it is safe to write to ptr
    [all...]
  /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...]
  /external/chromium/third_party/libevent/test/
regress.rpc 18 optional bytes some_bytes = 2;
19 bytes fixed_bytes[24] = 3;
  /external/e2fsprogs/lib/uuid/
gen_uuid_nt.c 28 // OUT PUCHAR Seed // 6 bytes
36 void* p1, // 8 bytes
37 void* p2, // 4 bytes
38 void* p3 // 4 bytes
45 void* p1, // 8 bytes
46 void* p2, // 4 bytes
47 void* p3, // 4 bytes
48 void* seed // 6 bytes
  /external/qemu/slirp/
if.h 22 * Set if_maxlinkhdr to 48 because it's 40 bytes for TCP/IP,
23 * and 8 bytes for PPP, but need to have it on an 8byte boundary
47 u_int out_bytes; /* Output bytes */
49 u_int out_errbytes; /* Output Error Bytes */
51 u_int in_bytes; /* Input bytes */
53 u_int in_errbytes; /* Input Error Bytes */
55 u_int bytes_saved; /* Number of bytes that compression "saved" */
56 /* ie: number of bytes that didn't need to be sent over the link
  /external/qemu/slirp-android/
if.h 22 * Set if_maxlinkhdr to 48 because it's 40 bytes for TCP/IP,
23 * and 8 bytes for PPP, but need to have it on an 8byte boundary
47 u_int out_bytes; /* Output bytes */
49 u_int out_errbytes; /* Output Error Bytes */
51 u_int in_bytes; /* Input bytes */
53 u_int in_errbytes; /* Input Error Bytes */
55 u_int bytes_saved; /* Number of bytes that compression "saved" */
56 /* ie: number of bytes that didn't need to be sent over the link
  /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...]
  /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/proguard/src/proguard/classfile/constant/
Utf8Constant.java 54 // 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)
88 this.bytes = bytes;
94 * Returns the UTF-8 data as an array of bytes.
107 return bytes;
116 this.bytes = null
    [all...]
  /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...]
  /external/chromium/net/proxy/
proxy_script_fetcher_unittest.cc 27 std::string bytes; member in struct:FetchResult
73 std::string bytes; local
76 &bytes, &callback);
79 EXPECT_TRUE(bytes.empty());
82 std::string bytes; local
85 &bytes, &callback);
88 EXPECT_EQ("-pac.txt-\n", bytes);
104 std::string bytes; local
106 int result = pac_fetcher->Fetch(url, &bytes, &callback);
109 EXPECT_EQ("-pac.txt-\n", bytes);
113 std::string bytes; local
122 std::string bytes; local
141 std::string bytes; local
150 std::string bytes; local
170 std::string bytes; local
189 std::string bytes; local
205 std::string bytes; local
234 std::string bytes; local
247 std::string bytes; local
271 std::string bytes; local
284 std::string bytes; local
307 std::string bytes; local
319 std::string bytes; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 42 // constants to use in expressions operating on bytes in int and long variables:
43 // END_FLAGS - final bytes in words to append to message;
47 // LEFT - shifts to left for bytes
48 // MASK - mask to select counter's bytes after shift to right
61 // HASHBYTES_TO_USE defines # of bytes returned by "computeHash(byte[])"
63 // Note, that this implementation uses more bytes than it is defined
78 // MAX_BYTES - maximum # of seed bytes processing which doesn't require extra frame
107 // - 81 - # of seed bytes in current seed frame
111 // total length of seed bytes, including all processed
118 // - 21-36 - 16 word frame to store a copy of remaining bytes
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
IndexedPKIXParameters.java 41 final Map<Bytes, TrustAnchor> encodings
42 = new HashMap<Bytes, TrustAnchor>();
56 Bytes encoded = new Bytes(cert.getEncoded());
105 Bytes encoded = new Bytes(cert.getEncoded());
131 Bytes encoded = new Bytes(cert.getEncoded());
143 static class Bytes {
144 final byte[] bytes; field in class:IndexedPKIXParameters.Bytes
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
Utils.java 24 * Contains utility functions for formatting elapsed time and consumed bytes
69 * Formats data size in KB, MB, from the given bytes.
71 * @param bytes data size in bytes
72 * @return the formatted size such as 4.52 MB or 245 KB or 332 bytes
74 public static String formatBytes(Context context, double bytes) {
76 if (bytes > 1000 * 1000) {
77 return String.format("%.2f MB", ((int) (bytes / 1000)) / 1000f);
78 } else if (bytes > 1024) {
79 return String.format("%.2f KB", ((int) (bytes / 10)) / 100f)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
Strings.java 8 public static String fromUTF8ByteArray(byte[] bytes)
13 while (i < bytes.length)
16 if ((bytes[i] & 0xf0) == 0xf0)
22 else if ((bytes[i] & 0xe0) == 0xe0)
26 else if ((bytes[i] & 0xc0) == 0xc0)
41 while (i < bytes.length)
45 if ((bytes[i] & 0xf0) == 0xf0)
47 int codePoint = ((bytes[i] & 0x03) << 18) | ((bytes[i+1] & 0x3F) << 12) | ((bytes[i+2] & 0x3F) << 6) | (bytes[i+3] & 0x3F)
    [all...]
  /libcore/luni/src/main/java/java/nio/
HeapByteBuffer.java 177 int bytes = 0; local
180 bytes = bytes << 8;
181 bytes = bytes | (backingArray[baseOffset + i] & 0xFF);
185 bytes = bytes << 8;
186 bytes = bytes | (backingArray[baseOffset + i] & 0xFF);
189 return bytes;
194 long bytes = 0; local
211 short bytes = 0; local
    [all...]
  /external/chromium/net/base/
io_buffer.cc 16 void DrainableIOBuffer::SetOffset(int bytes) {
17 DCHECK(bytes >= 0 && bytes <= size_);
18 used_ = bytes;

Completed in 736 milliseconds

1 2 3 4 5 6 7 8 91011>>