/external/chromium_org/base/win/ |
scoped_bstr.cc | 51 BSTR ScopedBstr::AllocateBytes(size_t bytes) { 52 Reset(SysAllocStringByteLen(NULL, static_cast<UINT>(bytes))); 56 void ScopedBstr::SetByteLen(size_t bytes) { 59 data[-1] = static_cast<uint32>(bytes);
|
/external/chromium_org/chrome/browser/extensions/api/music_manager_private/ |
device_id.h | 42 static bool IsValidMacAddress(const void* bytes, size_t size);
|
/external/chromium_org/device/hid/ |
hid_report_descriptor_item.cc | 25 const uint8_t* bytes, 28 Header* header = (Header*)&bytes[0]; 33 payload_size_ = bytes[1]; 37 memcpy(&shortData_, &bytes[GetHeaderSize()], payload_size());
|
/external/chromium_org/net/base/ |
test_data_stream.h | 21 // 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/ |
tcp_receiver.cc | 10 // Originally 64K bytes, but increased it to 256K to support higher bitrates. 25 void TcpReceiver::RecordIncomingPacket(QuicByteCount bytes,
|
tcp_receiver.h | 30 virtual void RecordIncomingPacket(QuicByteCount bytes,
|
/external/chromium_org/ppapi/cpp/private/ |
x509_certificate_private.h | 28 bool Initialize(const char* bytes, uint32_t length);
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
ArrayPiece.h | 13 // This class is for passing around un-owned bytes as a pointer + length. 36 unsigned char* bytes() const;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
testutil.h | 30 static UnicodeString hex(const uint8_t* bytes, int32_t len);
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
arena_test.cc | 22 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/ |
glcpp.c | 50 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/ |
open_type_data_test.cc | 27 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/ |
SkStream_mac.cpp | 20 static size_t get_bytes_proc(void* info, void* buffer, size_t bytes) { 22 return ((SkStream*)info)->read(buffer, bytes); 25 static off_t skip_forward_proc(void* info, off_t bytes) { 26 return ((SkStream*)info)->skip((size_t) bytes);
|
/external/chromium_org/third_party/speex/include/speex/ |
speex_bits.h | 80 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 written to the "bytes" buffe [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
system-alloc.h | 46 // 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,
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
system-alloc.h | 46 // 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,
|
/external/chromium_org/third_party/webrtc/modules/pacing/include/mock/ |
mock_paced_sender.h | 30 int bytes,
|
/external/deqp/executor/ |
xeBatchExecutor.hpp | 83 void onTestLogData (const deUint8* bytes, int numBytes); 84 void onInfoLogData (const deUint8* bytes, int numBytes); 90 static void enqueueTestLogData (void* userPtr, const deUint8* bytes, int numBytes); 91 static void enqueueInfoLogData (void* userPtr, const deUint8* bytes, int numBytes);
|
xeTestCaseListParser.hpp | 42 void parse (const deUint8* bytes, int numBytes);
|
/external/dhcpcd/ |
signals.c | 70 ssize_t bytes; local 73 bytes = read(signal_pipe[0], buf, sizeof(buf)); 74 if (bytes >= 0 && (size_t)bytes >= sizeof(sig))
|
/external/flac/libFLAC/include/private/ |
md5.h | 15 * To compute the message digest of a chunk of bytes, declare an 17 * needed on buffers full of bytes, and then call MD5Final, which 34 FLAC__uint32 bytes[2]; member in struct:__anon5219
|
/external/icu/icu4c/source/test/intltest/ |
testutil.h | 30 static UnicodeString hex(const uint8_t* bytes, int32_t len);
|
/external/llvm/lib/Target/X86/ |
X86MachineFunctionInfo.h | 33 /// stack frame in bytes. 36 /// BytesToPopOnReturn - Number of bytes function pops on return (in addition 44 /// TailCallReturnAddrDelta - The number of bytes by which return address 66 /// ArgumentStackSize - The number of bytes on stack consumed by the arguments 106 void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; } 109 void setBytesToPopOnReturn (unsigned bytes) { BytesToPopOnReturn = bytes;}
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp.c | 50 size_t bytes; local 61 bytes = fread (text + total_read, 1, CHUNK, fp); 62 total_read += bytes; 64 if (bytes < CHUNK) {
|
/external/sfntly/cpp/src/test/ |
open_type_data_test.cc | 27 ByteVector bytes; local 29 bytes.push_back(TEST_OTF_DATA[i]); 31 ByteArrayPtr array = new MemoryByteArray(&(bytes[0]), bytes.size());
|