HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 76 - 100 of 30148) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/liblzf/
config.h.in 9 /* The number of bytes in a int. */
12 /* The number of bytes in a long. */
15 /* The number of bytes in a short. */
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DecoderSpecificInfo.java 34 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/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
NdefRecordTest.java 15 byte[] bytes = "mumble".getBytes();
16 NdefRecord ndefRecord = new NdefRecord(bytes);
18 assertSame(ndefRecord.getPayload(), bytes); local
  /external/syslinux/com32/lib/
fread.c 11 size_t bytes = 0; local
27 bytes += rv;
31 return bytes;
fwrite.c 11 size_t bytes = 0; local
27 bytes += rv;
31 return bytes;
  /frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
R$layout.class 
  /external/elfutils/tests/
run-alldts.sh 32 PLTRELSZ 3735928559 (bytes)
38 RELASZ 3735928559 (bytes)
39 RELAENT 3735928559 (bytes)
40 STRSZ 3735928559 (bytes)
41 SYMENT 3735928559 (bytes)
48 RELSZ 3735928559 (bytes)
49 RELENT 3735928559 (bytes)
57 INIT_ARRAYSZ 3735928559 (bytes)
58 FINI_ARRAYSZ 3735928559 (bytes)
66 GNU_CONFLICTSZ 3735928559 (bytes)
    [all...]
  /external/nanopb-c/tests/message_sizes/
messages2.proto 6 required bytes data = 2 [(nanopb).max_size = 128];
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
pad2p18m32.s 1 * Padding (1 << 19)/2 - 32 bytes; that is, suitable for testing the
pad2p26m32.s 1 * Padding (1 << 27)/2 - 32 bytes; that is, suitable for testing the
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Integer.java 14 private final byte[] bytes; field in class:ASN1Integer
75 bytes = BigInteger.valueOf(value).toByteArray();
81 bytes = value.toByteArray();
85 byte[] bytes)
87 this(bytes, true);
90 ASN1Integer(byte[] bytes, boolean clone)
92 if (bytes.length > 1)
94 if (bytes[0] == 0 && (bytes[1] & 0x80) == 0)
98 if (bytes[0] == (byte)0xff && (bytes[1] & 0x80) != 0
    [all...]
  /external/kmod/shared/
strbuf.c 44 tmp = realloc(buf->bytes, sz);
47 buf->bytes = tmp;
54 buf->bytes = NULL;
61 free(buf->bytes);
66 char *bytes; local
68 bytes = realloc(buf->bytes, buf->used + 1);
69 if (!bytes) {
70 free(buf->bytes);
73 bytes[buf->used] = '\0'
    [all...]
  /frameworks/rs/
rsFifoSocket.cpp 52 bool FifoSocket::writeAsync(const void *data, size_t bytes, bool waitForSpace) {
53 if (bytes == 0) {
56 //ALOGE("writeAsync %p %i", data, bytes);
57 size_t ret = ::send(sv[0], data, bytes, 0);
58 rsAssert(ret == bytes);
59 if (ret != bytes) {
60 ALOGE("writeAsync %p %zu ret %zu", data, bytes, ret);
76 size_t FifoSocket::read(void *data, size_t bytes) {
81 //ALOGE("read %p %i", data, bytes);
82 size_t ret = ::recv(sv[1], data, bytes, MSG_WAITALL)
    [all...]
  /system/core/debuggerd/libdebuggerd/test/
BacktraceMock.h 56 virtual size_t Read(uintptr_t addr, uint8_t* buffer, size_t bytes) {
65 if (bytes > bytes_partial_read_) {
66 bytes = bytes_partial_read_;
68 bytes_partial_read_ -= bytes;
71 } else if (bytes > bytes_available) {
72 bytes = bytes_available;
75 if (bytes > 0) {
76 memcpy(buffer, buffer_.data() + offset, bytes);
80 return bytes;
83 void SetReadData(uint8_t* buffer, size_t bytes) {
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUBinary.java 57 static boolean validate(ByteBuffer bytes) {
59 readHeader(bytes, DATA_FORMAT, IS_ACCEPTABLE);
63 int count = bytes.getInt(bytes.position()); // Do not move the position.
67 // For each item, there is one ToC entry (8 bytes) and a name string
68 // and a data item of at least 16 bytes.
70 if (bytes.position() + 4 + count * (8 + 16) > bytes.capacity()) {
73 if (!startsWithPackageName(bytes, getNameOffset(bytes, 0)) |
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUBinary.java 53 static boolean validate(ByteBuffer bytes) {
55 readHeader(bytes, DATA_FORMAT, IS_ACCEPTABLE);
59 int count = bytes.getInt(bytes.position()); // Do not move the position.
63 // For each item, there is one ToC entry (8 bytes) and a name string
64 // and a data item of at least 16 bytes.
66 if (bytes.position() + 4 + count * (8 + 16) > bytes.capacity()) {
69 if (!startsWithPackageName(bytes, getNameOffset(bytes, 0)) |
    [all...]
  /frameworks/opt/telephony/src/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...]
  /packages/apps/Messaging/src/android/support/v7/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...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/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/tcpdump/tests/
cdp-v.out 2 Device-ID (0x01), value length: 6 bytes: 'Switch'
3 Version String (0x05), value length: 192 bytes:
7 Platform (0x06), value length: 20 bytes: 'cisco WS-C3560G-24PS'
8 Address (0x02), value length: 13 bytes: IPv4 (1) 192.168.0.1
9 Port-ID (0x03), value length: 18 bytes: 'GigabitEthernet0/5'
10 Capability (0x04), value length: 4 bytes: (0x00000028): L2 Switch, IGMP snooping
11 Protocol-Hello option (0x08), value length: 32 bytes:
12 VTP Management Domain (0x09), value length: 3 bytes: 'Lab'
13 Native VLAN ID (0x0a), value length: 2 bytes: 1
17 Management Addresses (0x16), value length: 13 bytes: IPv4 (1) 192.168.0.
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmendian.h 29 /* Reverse the bytes in a 16-bit value */
34 /* Reverse the bytes in a 32-bit value */
125 #define htol16_ua_store(val, bytes) ({ \
127 uint8 *_bytes = (uint8 *)(bytes); \
132 #define htol32_ua_store(val, bytes) ({ \
134 uint8 *_bytes = (uint8 *)(bytes); \
141 #define hton16_ua_store(val, bytes) ({ \
143 uint8 *_bytes = (uint8 *)(bytes); \
148 #define hton32_ua_store(val, bytes) ({ \
150 uint8 *_bytes = (uint8 *)(bytes); \
    [all...]
  /external/libcups/cups/
backchannel.c 41 * Reads up to "bytes" bytes from the backchannel/backend. The "timeout"
48 ssize_t /* O - Bytes read or -1 on error */
50 size_t bytes, /* I - Bytes to read */
77 * Read bytes from the pipe...
81 return ((ssize_t)_read(3, buffer, (unsigned)bytes));
83 return (read(3, buffer, bytes));
91 * Writes "bytes" bytes to the backchannel/filter. The "timeout" paramete
    [all...]
  /external/robolectric/v1/lib/main/
opengl-api-gl1.1-android-2.1_r1.jar 
  /external/sl4a/Common/src/org/apache/commons/codec/binary/
StringUtils.java 25 * Converts String to and from bytes using the encodings required by the Java specification. These encodings are specified in <a
36 * Encodes the given string into a sequence of bytes using the ISO-8859-1 charset, storing the result into a new
41 * @return encoded bytes
52 * Encodes the given string into a sequence of bytes using the US-ASCII charset, storing the result into a new byte
57 * @return encoded bytes
68 * Encodes the given string into a sequence of bytes using the UTF-16 charset, storing the result into a new byte
73 * @return encoded bytes
84 * Encodes the given string into a sequence of bytes using the UTF-16BE charset, storing the result into a new byte
89 * @return encoded bytes
100 * Encodes the given string into a sequence of bytes using the UTF-16LE charset, storing the result into a new byt
    [all...]
  /prebuilts/tools/common/m2/repository/org/khronos/opengl-api/gl1.1-android-2.1_r1/
opengl-api-gl1.1-android-2.1_r1.jar 

Completed in 1696 milliseconds

1 2 34 5 6 7 8 91011>>