HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 151 - 175 of 4116) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/netfilter/
xt_sctp.h 51 #define bytes(type) (sizeof(type) * 8) macro
52 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { (chunkmap)[type / bytes(__u32)] |= 1 << (type % bytes(__u32)); } while (0)
54 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { (chunkmap)[type / bytes(__u32)] &= ~(1 << (type % bytes(__u32))); } while (0)
55 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ ((chunkmap)[type / bytes (__u32)] & (1 << (type % bytes (__u32)))) ? 1: 0; })
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/netfilter/
xt_sctp.h 51 #define bytes(type) (sizeof(type) * 8) macro
52 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { (chunkmap)[type / bytes(__u32)] |= 1 << (type % bytes(__u32)); } while (0)
54 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { (chunkmap)[type / bytes(__u32)] &= ~(1 << (type % bytes(__u32))); } while (0)
55 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ ((chunkmap)[type / bytes (__u32)] & (1 << (type % bytes (__u32)))) ? 1: 0; })
  /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/tests/security/src/android/security/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 38 protected void engineNextBytes(byte[] bytes) {
40 for (int i = 0; i < bytes.length; i++) {
41 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...]
  /external/chromium_org/components/enhanced_bookmarks/
image_store_util.cc 30 gfx::Image ImageForBytes(const scoped_refptr<base::RefCountedMemory>& bytes) {
31 return gfx::ImageFrom1xJPEGEncodedData(bytes->front(), bytes->size());
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
LazyField.java 55 private ByteString bytes; field in class:LazyField
60 ExtensionRegistryLite extensionRegistry, ByteString bytes) {
63 this.bytes = bytes;
78 bytes = null;
85 * bytes, which will make the serialized size changed after LazyField
92 return bytes.size();
97 return bytes;
101 return bytes;
103 bytes = value.toByteString()
    [all...]
  /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 ...
leak-segv-jmp.stderr.exp 6 definitely lost: 0 bytes in 0 blocks
7 indirectly lost: 0 bytes in 0 blocks
8 possibly lost: 0 bytes in 0 blocks
9 still reachable: 41,000 bytes in 2 blocks
10 suppressed: 0 bytes in 0 blocks
15 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
21 definitely lost: 1,000 bytes in 1 blocks
22 indirectly lost: 0 bytes in 0 blocks
23 possibly lost: 0 bytes in 0 blocks
24 still reachable: 40,000 bytes in 1 block
    [all...]
  /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);
  /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/chromium_org/base/
guid.h 27 BASE_EXPORT std::string RandomDataToGUIDString(const uint64 bytes[2]);
guid_unittest.cc 13 uint64 bytes[] = { 0, 0 }; local
14 std::string clientid = base::RandomDataToGUIDString(bytes);
19 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL }; local
20 std::string clientid = base::RandomDataToGUIDString(bytes);
  /external/chromium_org/chrome/browser/parsers/
metadata_parser_factory.h 24 char* bytes,
  /external/chromium_org/content/browser/webui/
url_data_source_impl.cc 28 base::RefCountedMemory* bytes) {
30 scoped_refptr<base::RefCountedMemory> bytes_ptr(bytes);
53 scoped_refptr<base::RefCountedMemory> bytes) {
56 backend_->DataAvailable(request_id, bytes.get());
  /external/chromium_org/mojo/android/system/src/org/chromium/mojo/system/impl/
MessagePipeHandleImpl.java 36 public void writeMessage(ByteBuffer bytes, List<? extends Handle> handles, WriteFlags flags) {
37 mCore.writeMessage(this, bytes, handles, flags);
44 public ReadMessageResult readMessage(ByteBuffer bytes,
47 return mCore.readMessage(this, bytes, maxNumberOfHandles, flags);
  /external/chromium_org/net/quic/congestion_control/
receive_algorithm_interface.h 30 // bytes: is the packet size in bytes including IP headers.
33 virtual void RecordIncomingPacket(QuicByteCount bytes,
  /external/chromium_org/net/udp/
udp_net_log_parameters.h 15 // receive/send event. |bytes| are only logged when byte logging is
16 // enabled. |address| may be NULL. |address| (if given) and |bytes|
20 const char* bytes,
  /external/chromium_org/ppapi/thunk/
ppb_x509_certificate_private_api.h 18 virtual PP_Bool Initialize(const char* bytes, uint32_t length) = 0;
  /external/chromium_org/sync/internal_api/public/base/
node_ordinal.cc 14 std::string bytes(NodeOrdinal::kMinLength, '\x00');
16 // 0 is a special case since |bytes| must not be all zeros.
17 bytes.push_back('\x80');
20 bytes[i] = static_cast<uint8>(y);
24 NodeOrdinal ordinal(bytes);
  /external/chromium_org/third_party/libevent/test/
regress.rpc 18 optional bytes some_bytes = 2;
19 bytes fixed_bytes[24] = 3;

Completed in 2575 milliseconds

1 2 3 4 5 67 8 91011>>