Searched refs:bytes (Results 226 - 250 of 2342) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/
H A Dclo_redzone_128.stderr.exp4 Address 0x........ is 69 bytes after a block of size 128 alloc'd
H A Dpointer-trace.stderr.exp1 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dstatic_malloc.stderr.exp1 10 bytes in 1 blocks are definitely lost in loss record ... of ...
/external/guava/guava/src/com/google/common/net/
H A DInetAddresses.java52 * are 4 and 16 bytes in length, respectively, and represent the address
133 * @param bytes byte array representing an IPv4 address (should be
140 private static Inet4Address getInet4Address(byte[] bytes) { argument
141 Preconditions.checkArgument(bytes.length == 4,
143 bytes.length);
146 InetAddress ipv4 = InetAddress.getByAddress(bytes);
168 Arrays.toString(bytes)),
265 byte[] bytes = new byte[IPV4_PART_COUNT];
267 for (int i = 0; i < bytes.length; i++) {
268 bytes[
[all...]
/external/openssl/crypto/rand/
H A Drandfile.c109 int RAND_load_file(const char *file, long bytes) argument
111 /* If bytes >= 0, read up to 'bytes' bytes.
112 * if bytes == -1, read complete file. */
135 if (bytes == 0) return(ret);
146 * of bytes from a random device, nor do we want to use buffered
149 bytes = (bytes == -1) ? 2048 : bytes; /* o
[all...]
/external/chromium_org/dbus/
H A Dproperty_unittest.cc37 Property<std::vector<uint8> > bytes; member in struct:dbus::PropertyTest::Properties
48 RegisterProperty("Bytes", &bytes);
177 std::vector<uint8> bytes = properties_->bytes.value(); local
178 ASSERT_EQ(4U, bytes.size());
179 EXPECT_EQ('T', bytes[0]);
180 EXPECT_EQ('e', bytes[1]);
181 EXPECT_EQ('s', bytes[2]);
182 EXPECT_EQ('t', bytes[3]);
235 properties_->bytes
241 std::vector<uint8> bytes = properties_->bytes.value(); local
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_config.h58 int btif_config_get_str(const char* section, const char* key, const char* name, char* value, int* bytes);
61 int btif_config_get(const char* section, const char* key, const char* name, char* value, int* bytes, int* type);
62 int btif_config_set(const char* section, const char* key, const char* name, const char* value, int bytes, int type);
71 const char* value, int bytes, int type);
/external/chromium_org/base/
H A Dguid.h27 BASE_EXPORT std::string RandomDataToGUIDString(const uint64 bytes[2]);
H A Dguid_unittest.cc28 uint64 bytes[] = { 0, 0 }; local
29 std::string clientid = base::RandomDataToGUIDString(bytes);
34 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL }; local
35 std::string clientid = base::RandomDataToGUIDString(bytes);
/external/chromium_org/base/win/
H A Dscoped_bstr.cc51 BSTR ScopedBstr::AllocateBytes(size_t bytes) { argument
52 Reset(SysAllocStringByteLen(NULL, static_cast<UINT>(bytes)));
56 void ScopedBstr::SetByteLen(size_t bytes) { argument
59 data[-1] = static_cast<uint32>(bytes);
/external/chromium_org/chrome/browser/extensions/api/music_manager_private/
H A Ddevice_id.h42 static bool IsValidMacAddress(const void* bytes, size_t size);
/external/chromium_org/device/hid/
H A Dhid_report_descriptor_item.cc25 const uint8_t* bytes,
28 Header* header = (Header*)&bytes[0];
33 payload_size_ = bytes[1];
37 memcpy(&shortData_, &bytes[GetHeaderSize()], payload_size());
24 HidReportDescriptorItem( const uint8_t* bytes, HidReportDescriptorItem* previous) argument
/external/chromium_org/net/base/
H A Dtest_data_stream.h21 // Fill |buffer| with |length| bytes of data from the stream.
24 // Verify that |buffer| contains the expected next |length| bytes from the
37 void Consume(int bytes);
/external/chromium_org/net/quic/congestion_control/
H A Dreceive_algorithm_interface.h30 // bytes: is the packet size in bytes including IP headers.
33 virtual void RecordIncomingPacket(QuicByteCount bytes,
H A Dtcp_receiver.cc10 // Originally 64K bytes, but increased it to 256K to support higher bitrates.
25 void TcpReceiver::RecordIncomingPacket(QuicByteCount bytes, argument
H A Dtcp_receiver.h30 virtual void RecordIncomingPacket(QuicByteCount bytes,
/external/chromium_org/ppapi/cpp/private/
H A Dx509_certificate_private.h28 bool Initialize(const char* bytes, uint32_t length);
/external/chromium_org/ppapi/thunk/
H A Dppb_x509_certificate_private_api.h18 virtual PP_Bool Initialize(const char* bytes, uint32_t length) = 0;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayPiece.h13 // This class is for passing around un-owned bytes as a pointer + length.
36 unsigned char* bytes() const;
/external/chromium_org/third_party/leveldatabase/src/util/
H A Darena_test.cc22 size_t bytes = 0; local
47 bytes += s;
49 ASSERT_GE(arena.MemoryUsage(), bytes);
51 ASSERT_LE(arena.MemoryUsage(), bytes * 1.10);
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp.c50 size_t bytes; local
61 bytes = fread (text + total_read, 1, CHUNK, fp);
62 total_read += bytes;
64 if (bytes < CHUNK) {
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc27 ByteVector bytes; local
29 bytes.push_back(TEST_OTF_DATA[i]);
31 ByteArrayPtr array = new MemoryByteArray(&(bytes[0]), bytes.size());
/external/chromium_org/third_party/skia/src/utils/mac/
H A DSkStream_mac.cpp20 static size_t get_bytes_proc(void* info, void* buffer, size_t bytes) { argument
22 return ((SkStream*)info)->read(buffer, bytes);
25 static off_t skip_forward_proc(void* info, off_t bytes) { argument
26 return ((SkStream*)info)->skip((size_t) bytes);
/external/chromium_org/third_party/speex/include/speex/
H A Dspeex_bits.h80 void speex_bits_read_from(SpeexBits *bits, char *bytes, int len);
82 /** Append bytes to the bit-stream
85 * @param bytes pointer to the bytes what will be appended
86 * @param len Number of bytes of append
88 void speex_bits_read_whole_bytes(SpeexBits *bits, char *bytes, int len);
93 * @param bytes Memory location where to write the bits
94 * @param max_len Maximum number of bytes to write (i.e. size of the "bytes" buffer)
95 * @return Number of bytes writte
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dsystem-alloc.h46 // Allocate and return "N" bytes of zeroed memory.
49 // requested size. If actual bytes is non-NULL then the allocator
50 // may optionally return more bytes than asked for (i.e. return an
60 extern void* TCMalloc_SystemAlloc(size_t bytes, size_t *actual_bytes,

Completed in 603 milliseconds

1234567891011>>