HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 101 - 125 of 2202) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebKit/mac/Misc/
WebNSDataExtras.m 115 const UInt8 *bytes = [self bytes];
119 const char *p = (const char *)bytes;
175 const char *bytes = [self bytes];
177 const char *p = bytes;
201 p = bytes;
231 if ((length >= VCARD_HEADER_LENGTH) && strncmp(bytes, "BEGIN:VCARD", VCARD_HEADER_LENGTH) == 0) {
234 if ((length >= VCAL_HEADER_LENGTH) && strncmp(bytes, "BEGIN:VCALENDAR", VCAL_HEADER_LENGTH) == 0) {
241 char c = bytes[i]
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
MessageDigest1Test.java 56 final byte[] bytes = { 1, 2, 3, 4, 5 };
57 md.update(bytes, 1, 2);
69 md.update(bytes, 0, bytes.length + 1);
75 md.update(bytes, Integer.MAX_VALUE, 1);
85 assertSame("buf", bytes, arg0);
91 md.update(bytes, offset, len);
150 final byte[] bytes = new byte[] { 2, 4, 1 };
159 md.digest(bytes, 0, bytes.length + 1)
    [all...]
  /external/webp/include/webp/
mux_types.h 40 const uint8_t* bytes; member in struct:WebPData
55 free((void*)webp_data->bytes);
65 if (src->bytes != NULL && src->size != 0) {
66 dst->bytes = (uint8_t*)malloc(src->size);
67 if (dst->bytes == NULL) return 0;
68 memcpy((void*)dst->bytes, src->bytes, src->size);
  /external/valgrind/main/gdbserver_tests/
mcvabits.stderrB.exp 4 Address 0x........ is 0 bytes inside data symbol "undefined"
6 Address 0x........ is 0 bytes inside data symbol "undefined"
9 Address 0x........ is 0 bytes inside data symbol "undefined"
12 Address 0x........ is 0 bytes inside data symbol "undefined"
15 Address 0x........ is 0 bytes inside data symbol "undefined"
18 Address 0x........ is 0 bytes inside data symbol "undefined"
21 Address 0x........ is 0 bytes inside data symbol "undefined"
24 Address 0x........ is 0 bytes inside data symbol "undefined"
27 Address 0x........ is 0 bytes inside data symbol "undefined"
30 Address 0x........ is 0 bytes inside data symbol "undefined
    [all...]
  /cts/tests/src/android/net/cts/
NetlinkSocket.java 29 private static native int sendmsg(FileDescriptor fd, int pid, byte[] bytes);
46 public int sendmsg(int pid, byte[] bytes) throws IOException {
47 int retval = sendmsg(fd, pid, bytes);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
RandomImpl.java 39 protected void engineNextBytes(byte[] bytes) {
41 for (int i = 0; i < bytes.length; i++) {
42 bytes[i] = (byte)(i + 0xF1);
  /external/chromium/base/memory/
ref_counted_memory.cc 30 RefCountedBytes* bytes = new RefCountedBytes; local
31 bytes->data.swap(*to_destroy);
32 return bytes;
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_ref_info.java 62 protected CONSTANT_ref_info (final UDataInputStream bytes)
65 m_class_index = bytes.readU2 ();
66 m_name_and_type_index = bytes.readU2 ();
  /external/valgrind/main/memcheck/tests/
leak-tree.stderr.exp 1 leaked: 64 bytes in 4 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 48 bytes in 3 blocks
4 suppressed: 0 bytes in 0 blocks
5 16 bytes in 1 blocks are definitely lost in loss record ... of ...
11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
RandomImpl.java 40 protected void engineNextBytes(byte[] bytes) {
42 for (int i = 0; i < bytes.length; i++) {
43 bytes[i] = (byte)(i + 0xF1);
  /external/bison/lib/
mbchar.h 40 returns the number of bytes occupied by the multibyte sequence.
169 size_t bytes; /* number of bytes of current character, > 0 */ member in struct:mbchar
172 char buf[MBCHAR_BUF_SIZE]; /* room for the bytes, used for file input only */
175 /* EOF (not a real character) is represented with bytes = 0 and
182 #define mb_len(mbc) ((mbc).bytes)
194 : (mbc1).bytes == (mbc2).bytes \
195 ? memcmp ((mbc1).ptr, (mbc2).ptr, (mbc1).bytes) \
196 : (mbc1).bytes < (mbc2).bytes
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 31 private final byte[] bytes; field in class:ByteArray
36 /** {@code >= 0, <= bytes.length}; size computed as
43 * @param bytes {@code non-null;} the underlying array
45 * @param end {@code >= start, <= bytes.length;} end index of
48 public ByteArray(byte[] bytes, int start, int end) {
49 if (bytes == null) {
50 throw new NullPointerException("bytes == null");
61 if (end > bytes.length) {
62 throw new IllegalArgumentException("end > bytes.length");
65 this.bytes = bytes
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 31 private final byte[] bytes; field in class:ByteArray
36 /** {@code >= 0, <= bytes.length}; size computed as
43 * @param bytes {@code non-null;} the underlying array
45 * @param end {@code >= start, <= bytes.length;} end index of
48 public ByteArray(byte[] bytes, int start, int end) {
49 if (bytes == null) {
50 throw new NullPointerException("bytes == null");
61 if (end > bytes.length) {
62 throw new IllegalArgumentException("end > bytes.length");
65 this.bytes = bytes
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 31 private final byte[] bytes; field in class:ByteArray
36 /** {@code >= 0, <= bytes.length}; size computed as
43 * @param bytes {@code non-null;} the underlying array
45 * @param end {@code >= start, <= bytes.length;} end index of
48 public ByteArray(byte[] bytes, int start, int end) {
49 if (bytes == null) {
50 throw new NullPointerException("bytes == null");
61 if (end > bytes.length) {
62 throw new IllegalArgumentException("end > bytes.length");
65 this.bytes = bytes
    [all...]
  /external/bluetooth/bluedroid/btif/include/
btif_config.h 55 int btif_config_get_str(const char* section, const char* key, const char* name, char* value, int* bytes);
58 int btif_config_get(const char* section, const char* key, const char* name, char* value, int* bytes, int* type);
59 int btif_config_set(const char* section, const char* key, const char* name, const char* value, int bytes, int type);
67 const char* value, int bytes, int type);
  /external/chromium/chrome/browser/parsers/
metadata_parser_factory.h 23 char* bytes,
metadata_parser_jpeg_factory.h 19 virtual bool CanParse(const FilePath& path, char* bytes, int bytes_size);
  /external/chromium/chrome/browser/ui/webui/
sync_internals_html_source.cc 40 scoped_refptr<RefCountedBytes> bytes(new RefCountedBytes());
41 bytes->data.resize(html.size());
42 std::copy(html.begin(), html.end(), bytes->data.begin());
43 SendResponse(request_id, bytes);
  /external/chromium/chrome/common/
guid.h 27 std::string RandomDataToGUIDString(const uint64 bytes[2]);
guid_unittest.cc 13 uint64 bytes[] = { 0, 0 }; local
14 std::string clientid = guid::RandomDataToGUIDString(bytes);
19 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL }; local
20 std::string clientid = guid::RandomDataToGUIDString(bytes);
  /external/chromium/third_party/libevent/test/
regress.rpc 18 optional bytes some_bytes = 2;
19 bytes fixed_bytes[24] = 3;
  /external/dropbear/
bignum.h 32 void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len);
  /external/emma/core/java12/com/vladium/emma/rt/
IClassLoadHook.java 26 // * returns false, the current loader will load the class bytes itself and
62 * class definition in 'bytes' ('out' could be backed by the same array as
63 * 'bytes')
68 byte [] bytes, int length,
  /external/kernel-headers/original/linux/raid/
xor.h 8 extern void xor_block(unsigned int count, unsigned int bytes, void **ptr);
  /external/webkit/Source/WebCore/dom/
DecodedDataDocumentParser.h 47 virtual void appendBytes(DocumentWriter*, const char* bytes, int length, bool flush);

Completed in 484 milliseconds

1 2 3 45 6 7 8 91011>>