Lines Matching refs:frame_size
7936 const long long frame_size = stop - pos; in Block() local
7937 assert(frame_size <= LONG_MAX); in Block()
7939 f.len = static_cast<long>(frame_size); in Block()
7966 long frame_size = 0; in Block() local
7977 frame_size += val; in Block()
7986 f.len = frame_size; in Block()
7987 size += frame_size; //contribution of this frame in Block()
8002 const long long frame_size = total_size - size; in Block() local
8003 assert(frame_size <= LONG_MAX); in Block()
8005 f.len = static_cast<long>(frame_size); in Block()
8025 const long long frame_size = total_size / m_frame_count; in Block() local
8026 assert(frame_size <= LONG_MAX); in Block()
8033 assert((pos + frame_size) <= stop); in Block()
8038 f.len = static_cast<long>(frame_size); in Block()
8040 pos += frame_size; in Block()
8052 long long frame_size = ReadUInt(pReader, pos, len); in Block() local
8053 assert(frame_size > 0); in Block()
8054 assert(frame_size <= LONG_MAX); in Block()
8058 assert((pos + frame_size) <= stop); in Block()
8066 curr.len = static_cast<long>(frame_size); in Block()
8079 assert(prev.len == frame_size); in Block()
8094 frame_size += delta_size; in Block()
8095 assert(frame_size > 0); in Block()
8096 assert(frame_size <= LONG_MAX); in Block()
8098 curr.len = static_cast<long>(frame_size); in Block()
8110 assert(prev.len == frame_size); in Block()
8119 frame_size = total_size - size; in Block()
8120 assert(frame_size > 0); in Block()
8121 assert(frame_size <= LONG_MAX); in Block()
8123 curr.len = static_cast<long>(frame_size); in Block()