HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 626 - 650 of 1073) sorted by null

<<21222324252627282930>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
SubjectPublicKeyInfo.java 172 ((BitString) values[1]).bytes,
  /packages/apps/Email/src/org/apache/commons/io/
IOUtils.java 586 * Convert the specified string to an input stream, encoded as bytes
594 byte[] bytes = input.getBytes();
595 return new ByteArrayInputStream(bytes);
599 * Convert the specified string to an input stream, encoded as bytes
612 byte[] bytes = encoding != null ? input.getBytes(encoding) : input.getBytes();
613 return new ByteArrayInputStream(bytes);
619 * Writes bytes from a <code>byte[]</code> to an <code>OutputStream</code>.
636 * Writes bytes from a <code>byte[]</code> to chars on a <code>Writer</code>
655 * Writes bytes from a <code>byte[]</code> to chars on a <code>Writer</code>
702 * Writes chars from a <code>char[]</code> to bytes on an
    [all...]
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 190 byte[] bytes = s.toByteArray();
191 mSyncParser.resetInput(new ByteArrayInputStream(bytes));
222 byte[] bytes = s.toByteArray();
223 mSyncParser.resetInput(new ByteArrayInputStream(bytes));
  /external/dbus/dbus/
dbus-spawn.c 64 size_t bytes = 0; local
76 to_read = sizeof (int) * n_ints_in_buf - bytes;
84 ((char*)buf) + bytes,
106 bytes += chunk;
109 *n_ints_read = (int)(bytes / sizeof(int));
119 size_t bytes = 0; local
131 to_read = sizeof (pid_t) - bytes;
139 ((char*)buf) + bytes,
160 bytes += chunk;
    [all...]
  /packages/apps/Tag/src/com/android/vcard/
VCardUtils.java 62 public static final byte[] decodeQuotedPrintable(byte[] bytes)
64 if (bytes == null) {
68 for (int i = 0; i < bytes.length; i++) {
69 int b = bytes[i];
72 int u = Character.digit((char) bytes[++i], 16);
73 int l = Character.digit((char) bytes[++i], 16);
676 * Guesses the format of input image. Currently just the first few bytes are used.
838 final byte[] bytes = new byte[byteBuffer.remaining()];
839 byteBuffer.get(bytes);
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
custrtst.c 1444 char bytes[40]; local
    [all...]
trie2test.c 376 uint32_t value, bytes; local
386 /* first a couple of trail bytes in lead position */
435 bytes=0;
438 bytes=(bytes<<8)|s[prev8++];
443 testName, (unsigned long)bytes, (long)c, (long)value, (long)values[i]);
447 testName, (unsigned long)bytes, (long)c, (long)(p-s), (long)i8);
465 bytes=0;
469 bytes=(bytes<<8)|s[k++]
    [all...]
  /external/dhcpcd/
client.c 541 /* IAID is 4 bytes, so if the iface name is 4 bytes
550 /* Name isn't 4 bytes, so use the index */
1540 ssize_t bytes; local
1606 ssize_t bytes; local
    [all...]
  /external/icu4c/test/cintltst/
custrtst.c 1444 char bytes[40]; local
    [all...]
trie2test.c 376 uint32_t value, bytes; local
386 /* first a couple of trail bytes in lead position */
435 bytes=0;
438 bytes=(bytes<<8)|s[prev8++];
443 testName, (unsigned long)bytes, (long)c, (long)value, (long)values[i]);
447 testName, (unsigned long)bytes, (long)c, (long)(p-s), (long)i8);
465 bytes=0;
469 bytes=(bytes<<8)|s[k++]
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/exe/
dhdu.c 166 "membytes [-h | -r | -i] <address> <length> [<bytes>]\n"
168 "\t-h <bytes> is a sequence of hex digits, else a char string\n"
385 fprintf(stderr, "Failed to allocate buffer of %d bytes\n", len);
929 /* required args: address size [<bytes>]] */
931 fprintf(stderr, "required args: address size [<bytes>]\n");
935 fprintf(stderr, "missing <bytes> arg implies by -h\n");
939 fprintf(stderr, "can't have input <bytes> arg with -r or -i\n");
988 fprintf(stderr, "Hex (-h) must consist of whole bytes\n");
1152 uint offset, words, bytes;
1177 bytes = 2 * words
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
convtest.cpp 114 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode);
230 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode);
237 errln("fromUnicode[%d] bytes[%d] and offsets[%d] must have the same length",
667 printBytes(const uint8_t *bytes, int32_t length, char *out) {
671 b=*bytes++;
678 b=*bytes++;
759 source=(const char *)cc.bytes;
838 * else give it at most (-step-2)/2 bytes
    [all...]
  /external/icu4c/test/intltest/
convtest.cpp 129 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode);
254 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode);
261 errln("fromUnicode[%d] bytes[%d] and offsets[%d] must have the same length",
698 printBytes(const uint8_t *bytes, int32_t length, char *out) {
702 b=*bytes++;
709 b=*bytes++;
790 source=(const char *)cc.bytes;
869 * else give it at most (-step-2)/2 bytes
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ralink.c 469 int bytes; local
474 * bytes = strlen(spos); ==> bug, bytes may less than original
476 * if (!bytes)
479 bytes = drv->assoc_req_ies_len;
481 data.assoc_info.req_ies = os_malloc(bytes);
485 data.assoc_info.req_ies_len = bytes;
486 os_memcpy(data.assoc_info.req_ies, spos, bytes);
489 spos += bytes + 1;
498 bytes = os_strlen(spos)
    [all...]
  /bionic/libc/kernel/common/linux/
bio.h 146 #define bio_io_error(bio, bytes) bio_endio((bio), (bytes), -EIO)
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 66 public boolean processFileBytes(String name, byte[] bytes) {
71 ByteArray ba = new ByteArray(bytes);
  /development/ndk/platforms/android-3/include/linux/
bio.h 146 #define bio_io_error(bio, bytes) bio_endio((bio), (bytes), -EIO)
  /device/samsung/crespo/libaudio2/
AudioHardware.h 51 // Default audio output buffer size in bytes
66 // Default audio input buffer size in bytes (8kHz mono)
191 virtual ssize_t write(const void* buffer, size_t bytes);
300 virtual ssize_t read(void* buffer, ssize_t bytes);
  /external/blktrace/
blkrawverify.c 111 fprintf(ofp, " %8s: %u\n", "bytes", bit->bytes);
113 fprintf(ofp, " %8s: %u\n", "bytes", bit->bytes);
  /external/chromium/net/disk_cache/
backend_impl.h 251 void AddStorageSize(int32 bytes);
252 void SubstractStorageSize(int32 bytes);
  /external/chromium/third_party/icu/source/io/
ufmt_cmn.c 170 uint8_t bytes[sizeof(void*)]; member in union:__anon3072
214 result.bytes[resultIdx] = byte;
  /external/clearsilver/util/
neo_misc.c 120 /* This handles strings of less than 256 bytes */
215 UINT32 ne_crc (UINT8 *data, UINT32 bytes)
221 for(i = 0; i < bytes; i++, data++)
  /external/dbus/bus/
bus.c 619 int bytes; local
636 bytes = _dbus_string_get_length (&addr);
637 if (_dbus_write_socket (print_addr_fd, &addr, 0, bytes) != bytes)
728 int bytes; local
744 bytes = _dbus_string_get_length (&pid);
745 if (_dbus_write_socket (print_pid_fd, &pid, 0, bytes) != bytes)
    [all...]
  /external/dhcpcd/mk/
prog.mk 39 # We could save about 600 bytes by building it like this
  /external/dropbear/
buffer.c 184 * the next len bytes from that position can be used */
204 * Note that the string isn't checked for null bytes, hence the retlen
258 /* put the set of len bytes into the buffer, incrementing the pos, increasing
260 void buf_putbytes(buffer *buf, const unsigned char *bytes, unsigned int len) {
261 memcpy(buf_getwriteptr(buf, len), bytes, len); local

Completed in 804 milliseconds

<<21222324252627282930>>