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

1 2 3 4 5 6 7 8 91011>>

  /external/iptables/extensions/
libipt_quota.man 4 .BI "--quota " "bytes"
5 The quota in bytes.
libipt_connbytes.man 1 Match by how many bytes or packets a connection (or one of the two
3 average bytes per packet.
10 The transfered bytes per connection can also be viewed through
14 match packets from a connection whose packets/bytes/average packet
15 size is more than FROM and less than TO bytes/packets. if TO is
23 whether to check the amount of packets, number of bytes transferred or
24 the average size (in bytes) of all packets received so far. Note that
30 iptables .. -m connbytes --connbytes 10000:100000 --connbytes-dir both --connbytes-mode bytes ...
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERInteger.java 9 byte[] bytes; field in class:DERInteger
56 bytes = BigInteger.valueOf(value).toByteArray();
62 bytes = value.toByteArray();
66 byte[] bytes)
68 this.bytes = bytes;
73 return new BigInteger(bytes);
82 return new BigInteger(1, bytes);
89 out.writeEncoded(INTEGER, bytes);
96 for (int i = 0; i != bytes.length; i++
    [all...]
DEREnumerated.java 9 byte[] bytes; field in class:DEREnumerated
56 bytes = BigInteger.valueOf(value).toByteArray();
62 bytes = value.toByteArray();
66 byte[] bytes)
68 this.bytes = bytes;
73 return new BigInteger(bytes);
80 out.writeEncoded(ENUMERATED, bytes);
93 if (bytes.length != other.bytes.length
    [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...]
DERTaggedObject.java 60 byte[] bytes = bOut.toByteArray();
64 out.writeEncoded(CONSTRUCTED | TAGGED | tagNo, bytes);
71 if ((bytes[0] & CONSTRUCTED) != 0)
73 bytes[0] = (byte)(CONSTRUCTED | TAGGED | tagNo);
77 bytes[0] = (byte)(TAGGED | tagNo);
80 out.write(bytes);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/
BigIntegers.java 19 byte[] bytes = value.toByteArray();
21 if (bytes[0] == 0)
23 byte[] tmp = new byte[bytes.length - 1];
25 System.arraycopy(bytes, 1, tmp, 0, tmp.length);
30 return bytes;
  /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 */
  /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/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
  /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...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
IndexedPKIXParameters.java 43 final Map<Bytes, TrustAnchor> encodings
44 = new HashMap<Bytes, TrustAnchor>();
58 Bytes encoded = new Bytes(cert.getEncoded());
107 Bytes encoded = new Bytes(cert.getEncoded());
133 Bytes encoded = new Bytes(cert.getEncoded());
145 static class Bytes {
146 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...]
  /dalvik/libcore/nio/src/main/java/java/nio/
HeapByteBuffer.java 179 int bytes = 0; local
182 bytes = bytes << 8;
183 bytes = bytes | (backingArray[baseOffset + i] & 0xFF);
187 bytes = bytes << 8;
188 bytes = bytes | (backingArray[baseOffset + i] & 0xFF);
191 return bytes;
196 long bytes = 0; local
213 short bytes = 0; local
    [all...]
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
IOUtil.java 49 public static int readInputStreamReader(InputStream in, ByteBuffer bytes,
55 fillBuf(in, bytes, chars, decoder);
71 InputStream in, ByteBuffer bytes, CharBuffer chars,
81 fillBuf(in, bytes, chars, decoder);
96 fillBuf(in, bytes, chars, decoder);
116 private static void fillBuf(InputStream in, ByteBuffer bytes,
121 read = in.read(bytes.array());
130 bytes.limit(read);
132 CoderResult result = decoder.decode(bytes, chars, endOfInput);
136 bytes.clear()
    [all...]
  /external/dbus/test/data/auth/
extra-bytes.auth-script 1 ## this tests that we have the expected extra bytes at the end
  /external/iproute2/include/linux/
gen_stats.h 18 * @bytes: number of seen bytes
23 __u64 bytes; member in struct:gnet_stats_basic
28 __u64 bytes; member in struct:gnet_stats_basic_packed
  /frameworks/base/core/java/com/android/internal/util/
CharSequences.java 26 * bytes.
28 * @param bytes ASCII bytes
30 public static CharSequence forAsciiBytes(final byte[] bytes) {
33 return (char) bytes[index];
37 return bytes.length;
41 return forAsciiBytes(bytes, start, end);
45 return new String(bytes);
52 * bytes.
54 * @param bytes ASCII byte
    [all...]
  /dalvik/libcore/nio_char/src/main/java/java/nio/charset/
package.html 4 This package provides translation services between bytes and different
8 An encoder translates characters into bytes and a decoder can
  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
Translator.java 10 * bytes.
18 * bytes.
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmendian.h 126 htol16_ua_store(uint16 val, uint8 *bytes)
128 bytes[0] = val & 0xff;
129 bytes[1] = val >> 8;
134 htol32_ua_store(uint32 val, uint8 *bytes)
136 bytes[0] = val & 0xff;
137 bytes[1] = (val >> 8) & 0xff;
138 bytes[2] = (val >> 16) & 0xff;
139 bytes[3] = val >> 24;
144 hton16_ua_store(uint16 val, uint8 *bytes)
146 bytes[0] = val >> 8
    [all...]
  /external/icu4c/common/unicode/
bytestream.h 7 // Abstract interface that consumes a sequence of bytes (ByteSink).
35 * \brief C++ API: Interface for writing bytes, and implementation classes.
45 * A ByteSink can be filled with bytes.
62 * Append "bytes[0,n-1]" to this.
63 * @param bytes the pointer to the bytes
64 * @param n the number of bytes; must be non-negative
67 virtual void Append(const char* bytes, int32_t n) = 0;
77 * After writing at most *result_capacity bytes, call Append() with the
78 * pointer returned from this function and the number of bytes written
    [all...]

Completed in 508 milliseconds

1 2 3 4 5 6 7 8 91011>>