/external/v8/src/interpreter/ |
constant-array-builder.h | 45 size_t size() const; 52 // the size of the operand that'll be required to hold the entry 76 inline size_t available() const { return capacity() - reserved() - size(); } 79 inline size_t size() const { return constants_.size(); } function in struct:v8::internal::interpreter::BASE_EMBEDDED::final
|
/external/v8/src/profiler/ |
strings-storage.cc | 110 size_t size = sizeof(*this); local 111 size += sizeof(base::HashMap::Entry) * names_.capacity(); 114 size += strlen(reinterpret_cast<const char*>(p->value)) + 1; 116 return size;
|
/external/v8/src/ |
safepoint-table.h | 85 int size() const { function in class:v8::internal::BASE_EMBEDDED
|
/external/valgrind/drd/ |
drd_vc.c | 42 * Initialize the memory 'vc' points at as a vector clock with size 'size'. 44 * 'size' elements and it becomes the initial value of the vector clock. 48 const unsigned size) 51 vc->size = 0; 54 DRD_(vc_reserve)(vc, size); 55 tl_assert(size == 0 || vc->vc != 0); 58 VG_(memcpy)(vc->vc, vcelem, size * sizeof(vcelem[0])); 59 vc->size = size; 259 unsigned size; local [all...] |
/external/valgrind/memcheck/tests/ |
mempool.c | 17 // Padding ensures the struct is the same size on 32-bit and 64-bit 26 int size, left; member in struct:_pool 27 // Padding ensures the struct is the same size on 32-bit and 64-bit 47 p->size = p->left = SUPERBLOCK_SIZE; 99 char *allocate(pool *p, int size) 102 p->left -= size + (REDZONE_SIZE*2); 104 p->where += size + (REDZONE_SIZE*2); 105 VALGRIND_MEMPOOL_ALLOC(p->levels->where, where, size);
|
mempool2.c | 20 // Padding ensures the struct is the same size on 32-bit and 64-bit 29 int size, left; member in struct:_pool 30 // Padding ensures the struct is the same size on 32-bit and 64-bit 50 p->size = p->left = SUPERBLOCK_SIZE; 102 char *allocate(pool *p, int size) 105 p->left -= size + (REDZONE_SIZE*2); 107 p->where += size + (REDZONE_SIZE*2); 108 VALGRIND_MEMPOOL_ALLOC(p->levels->where, where, size);
|
/external/valgrind/none/tests/ |
fdleak_cmsg.c | 86 int s, fd1 = -1, fd2 = -1, size, count = 0, ret; local 122 if ((size = recvmsg(s, &msg, 0)) == -1) {
|
/external/vboot_reference/cgpt/ |
cgpt.h | 46 uint64_t size; /* total size (in bytes) */ member in struct:drive 56 // Otherwise, 'drive_size' is taken as the size of the device that all 202 // Size in chars of the GPT Entry's PartitionName field
|
/external/vboot_reference/firmware/2lib/include/ |
2sha.h | 50 uint32_t size; member in struct:vb2_sha256_context 60 uint32_t size; member in struct:vb2_sha512_context 100 * @param size Length of data in bytes 104 uint32_t size); 107 uint32_t size); 110 uint32_t size); 134 * Return the size of the digest for a hash algorithm. 137 * @return The size of the digest, or 0 if error. 156 * @param size Length of data in bytes 161 uint32_t size); [all...] |
/external/vboot_reference/host/lib21/ |
host_signature.c | 25 * @param size_ptr On success, contains the info size in bytes 81 uint32_t size, 92 .data_size = size, 119 /* Determine digest size and allocate buffer */ 144 if (vb2_digest_extend(&dc, data, size)) { 187 uint32_t size = vb2_sig_size(key->sig_alg, key->hash_alg); local 189 if (!size) 192 size += sizeof(struct vb2_signature); 193 size += vb2_desc_size(desc ? desc : key->desc); 195 *size_ptr = size; 203 uint32_t total = 0, size = 0; local [all...] |
/external/vixl/test/ |
test-invalset.cc | 99 VIXL_CHECK(set.empty() && (set.size() == 0)); 104 VIXL_CHECK(set.size() == kNPreallocatedElements); 108 VIXL_CHECK(set.size() == kNPreallocatedElements + 2); 115 VIXL_CHECK(set.empty() && (set.size() == 0)); 129 VIXL_CHECK(set.empty() && (set.size() == 0)); 134 VIXL_CHECK(set.size() == kNPreallocatedElements); 136 VIXL_CHECK(set.size() == kNPreallocatedElements + 1); 139 VIXL_CHECK(set.size() == kNPreallocatedElements + 3); 142 VIXL_CHECK(set.empty() && (set.size() == 0)); 148 VIXL_CHECK(set.empty() && (set.size() == 0)) 223 size_t size = 0; local [all...] |
/external/vogar/src/vogar/ |
ActionFinder.java | 43 int size = actions.size(); local 48 log.verbose("found " + (actions.size() - size) + " actions in " + file);
|
/external/webrtc/talk/app/webrtc/ |
datachannelinterface.h | 79 size_t size() const { return data.size(); } function in struct:webrtc::DataBuffer
|
/external/webrtc/talk/app/webrtc/java/jni/ |
native_handle_impl.cc | 118 size_t size = stride * (height() + uv_height); local 125 static_cast<uint8_t*>(webrtc::AlignedMalloc(size, kBufferAlignment))); 148 jobject byte_buffer = jni->NewDirectByteBuffer(y_data, size);
|
/external/webrtc/talk/media/base/ |
fakevideocapturer.h | 100 uint32_t size = 0u; local 102 size = width * 4 * height; 104 size = static_cast<uint32_t>(cricket::VideoFrame::SizeOf(width, height)); 108 if (size == 0u) { 116 frame.data_size = size; 120 rtc::scoped_ptr<char[]> data(new char[size]); 124 memset(frame.data, 1, size / 2); 125 memset(reinterpret_cast<uint8_t*>(frame.data) + (size / 2), 2, 126 size - (size / 2)) [all...] |
/external/webrtc/talk/media/devices/ |
yuvframescapturer.cc | 115 int size = width_ * height_; local 116 int qsize = size / 4; 118 frame_data_size_ = size + 2 * qsize;
|
/external/webrtc/webrtc/base/ |
buffer.h | 52 Buffer(const Buffer& buf); // Copy size and contents of an existing buffer. 56 explicit Buffer(size_t size); 57 Buffer(size_t size, size_t capacity); 62 Buffer(const T* data, size_t size) 63 : Buffer(data, size, size) {} 65 Buffer(const T* data, size_t size, size_t capacity) 66 : Buffer(size, capacity) { 67 std::memcpy(data_.get(), data, size); 90 size_t size() const function in class:rtc::Buffer [all...] |
bytebuffer_unittest.cc | 58 size_t size = 0; local 59 EXPECT_EQ(size, buffer.Length()); 62 ++size; 63 EXPECT_EQ(size, buffer.Length()); 66 size += 2; 67 EXPECT_EQ(size, buffer.Length()); 70 size += 3; 71 EXPECT_EQ(size, buffer.Length()); 74 size += 4; 75 EXPECT_EQ(size, buffer.Length()) [all...] |
multipart.cc | 74 parts_.push_back(new MemoryStream(ss.str().data(), ss.str().size())); 88 parts_.push_back(new MemoryStream(ss.str().data(), ss.str().size())); 99 size_t size = 0; local 101 size += 2; // for "\r\n"; 103 size += boundary_.size() + 4; // for "--boundary_\r\n"; 106 size += std::string(ToString(HH_CONTENT_DISPOSITION)).size() + 2 + 107 content_disposition.size() + 2; 111 size += std::string(ToString(HH_CONTENT_TYPE)).size() + 2 119 size_t size = 0; local [all...] |
proxyserver.cc | 128 size_t size; local 130 if (buffer->GetBuffered(&size) && size == 0) { 131 void* p = buffer->GetWriteBuffer(&size); 132 read = socket->Recv(p, size); 139 size_t size; local 141 const void* p = buffer->GetReadData(&size); 142 written = socket->Send(p, size);
|
systeminfo.cc | 73 size_t size = sizeof(number_of_cores); local 74 if (0 != sysctl(name, 2, &number_of_cores, &size, NULL, 0)) {
|
/external/webrtc/webrtc/common_audio/ |
channel_buffer.h | 120 size_t size() const {return num_frames_ * num_channels_; } function in class:webrtc::ChannelBuffer 122 void SetDataForTesting(const T* data, size_t size) { 123 RTC_CHECK_EQ(size, this->size()); 124 memcpy(data_.get(), data, size * sizeof(*data));
|
/external/webrtc/webrtc/modules/desktop_capture/ |
desktop_frame.h | 30 // Size of the frame. 31 const DesktopSize& size() const { return size_; } function in class:webrtc::DesktopFrame 74 DesktopFrame(DesktopSize size, 100 explicit BasicDesktopFrame(DesktopSize size); 114 SharedMemoryDesktopFrame(DesktopSize size,
|
/external/webrtc/webrtc/modules/video_capture/linux/ |
device_info_linux.cc | 224 int size = FillCapabilities(fd); local 237 static_cast<unsigned int>(_captureCapabilities.size())); 239 return size; 268 unsigned int size[][2] = { { 128, 96 }, { 160, 120 }, { 176, 144 }, local 280 video_fmt.fmt.pix.width = size[i][0]; 281 video_fmt.fmt.pix.height = size[i][1]; 285 if ((video_fmt.fmt.pix.width == size[i][0]) 286 && (video_fmt.fmt.pix.height == size[i][1])) 334 static_cast<unsigned int>(_captureCapabilities.size())); 335 return _captureCapabilities.size(); [all...] |
/external/webrtc/webrtc/test/channel_transport/ |
udp_socket_posix.cc | 140 int size = sizeof(sockaddr); local 141 if (0 == bind(_socket, reinterpret_cast<const sockaddr*>(&name),size)) 153 int size = sizeof(sockaddr); local 155 reinterpret_cast<const sockaddr*>(&to), size);
|