Home | History | Annotate | Download | only in base

Lines Matching defs:size

100     uint32_t size = 0u;
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));