Home
last modified time | relevance | path

Searched refs:this_line (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dqtrleenc.c159 const uint8_t *this_line = p->data[0] + line * p->linesize[0] + width * s->pixel_size; in qtrle_encode_line() local
163 const uint8_t *prev_line = s->key_frame ? this_line in qtrle_encode_line()
183 this_line -= s->pixel_size; in qtrle_encode_line()
225 if (!s->key_frame && !memcmp(this_line, prev_line, s->pixel_size)) in qtrle_encode_line()
234 if (i < width - 1 && !memcmp(this_line, this_line + s->pixel_size, s->pixel_size)) in qtrle_encode_line()
278 this_line = p-> data[0] + line*p->linesize[0]; in qtrle_encode_line()
303 bytestream_put_byte(buf, *(this_line + i*s->pixel_size + j) ^ 0xff); in qtrle_encode_line()
305 bytestream_put_buffer(buf, this_line + i*s->pixel_size, rlecode*s->pixel_size); in qtrle_encode_line()
315 bytestream_put_byte(buf, *(this_line + i*s->pixel_size + j) ^ 0xff); in qtrle_encode_line()
317 bytestream_put_buffer(buf, this_line + i*s->pixel_size, s->pixel_size); in qtrle_encode_line()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dloop_dependence_helpers.cpp518 auto this_line = AsDependenceLine(); in operator ==() local
520 return *this_line->GetA() == *other_line->GetA() && in operator ==()
521 *this_line->GetB() == *other_line->GetB() && in operator ==()
522 *this_line->GetC() == *other_line->GetC(); in operator ==()
/third_party/spirv-tools/source/opt/
Dloop_dependence_helpers.cpp518 auto this_line = AsDependenceLine(); in operator ==() local
520 return *this_line->GetA() == *other_line->GetA() && in operator ==()
521 *this_line->GetB() == *other_line->GetB() && in operator ==()
522 *this_line->GetC() == *other_line->GetC(); in operator ==()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dloop_dependence_helpers.cpp518 auto this_line = AsDependenceLine(); in operator ==() local
520 return *this_line->GetA() == *other_line->GetA() && in operator ==()
521 *this_line->GetB() == *other_line->GetB() && in operator ==()
522 *this_line->GetC() == *other_line->GetC(); in operator ==()
/third_party/python/Lib/email/
Dcharset.py340 this_line = EMPTYSTRING.join(current_line)
341 length = encoder_module.header_length(_encode(this_line, charset))