/third_party/ffmpeg/libavformat/ |
D | brstm.c | 91 static av_always_inline unsigned int read32(AVFormatContext *s) in read32() function 156 info_offset = read32(s); in read_header() 157 /*info_size =*/ read32(s); in read_header() 164 start = read32(s) + 8; in read_header() 183 size = read32(s); in read_header() 187 h1offset = read32(s); in read_header() 191 toffset = read32(s) + 16LL; in read_header() 219 st->codecpar->sample_rate = bfstm ? read32(s) : read16(s); in read_header() 228 av_rescale(read32(s), AV_TIME_BASE, in read_header() 237 st->duration = read32(s); in read_header() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | dpx.c | 75 static unsigned int read32(const uint8_t **ptr, int is_big) in read32() function 95 *lbuf = read32(ptr, is_big); in read10in32_gray() 111 *lbuf = read32(ptr, is_big); in read10in32() 126 *lbuf = read32(ptr, is_big); in read12in32() 135 *lbuf = read32(ptr, is_big); in read12in32() 143 *lbuf = read32(ptr, is_big); in read12in32() 194 offset = read32(&buf, endian); in decode_frame() 200 header_version = read32(&buf, 0); in decode_frame() 211 ret = read32(&buf, endian); in decode_frame() 220 w = read32(&buf, endian); in decode_frame() [all …]
|
/third_party/flutter/skia/src/core/ |
D | SkReadBuffer.cpp | 125 int32_t SkReadBuffer::read32() { in read32() function in SkReadBuffer 293 bounds.fRight = this->read32(); in readImage() 294 bounds.fBottom = this->read32(); in readImage() 305 int32_t size = this->read32(); in readImage() 337 (void)this->read32(); // originX in readImage() 338 (void)this->read32(); // originY in readImage() 364 int32_t index = this->read32(); in readTypeface() 386 int32_t index = this->read32(); in readFlattenable() 425 uint32_t sizeRecorded = this->read32(); in readFlattenable() 453 int32_t value = this->read32(); in checkInt()
|
D | SkPicturePlayback.cpp | 280 SkCanvas::QuadAAFlags aaFlags = static_cast<SkCanvas::QuadAAFlags>(reader->read32()); in handleOp() 281 SkColor color = reader->read32(); in handleOp() 282 SkBlendMode blend = static_cast<SkBlendMode>(reader->read32()); in handleOp() 532 SkColor color = reader->read32(); in handleOp() 536 rec.fAmbientColor = reader->read32(); in handleOp() 537 rec.fSpotColor = reader->read32(); in handleOp() 539 rec.fFlags = reader->read32(); in handleOp()
|
D | SkReadBuffer.h | 73 int32_t read32(); 249 int32_t read32() { return 0; } in read32() function
|
D | SkPaint.cpp | 384 (void)buffer.read32(); // use to be SkRasterizer in Unflatten_PreV68() 385 (void)buffer.read32(); // used to be drawlooper in Unflatten_PreV68()
|
D | SkTextBlob.cpp | 689 int glyphCount = reader.read32(); in MakeFromBuffer() 696 pe.intValue = reader.read32(); in MakeFromBuffer() 701 int textSize = pe.extended ? reader.read32() : 0; in MakeFromBuffer()
|
D | SkPicture.cpp | 200 int32_t ssize = buffer.read32(); in MakeFromBuffer()
|
D | SkColorFilter.cpp | 235 uint32_t dir = buffer.read32(); in CreateProc()
|
/third_party/skia/src/core/ |
D | SkReadBuffer.cpp | 111 int32_t SkReadBuffer::read32() { in read32() function in SkReadBuffer 322 uint32_t flags = this->read32(); in readImage() 374 int32_t index = this->read32(); in readTypeface() 396 int32_t index = this->read32(); in readFlattenable() 435 uint32_t sizeRecorded = this->read32(); in readFlattenable() 463 int32_t value = this->read32(); in checkInt()
|
D | SkPicturePlayback.cpp | 305 SkCanvas::QuadAAFlags aaFlags = static_cast<SkCanvas::QuadAAFlags>(reader->read32()); in handleOp() 308 SkBlendMode blend = static_cast<SkBlendMode>(reader->read32()); in handleOp() 588 rec.fAmbientColor = reader->read32(); in handleOp() 589 rec.fSpotColor = reader->read32(); in handleOp() 590 rec.fFlags = reader->read32(); in handleOp()
|
D | SkFont_serial.cpp | 83 const uint32_t packed = buffer.read32(); in Unflatten()
|
D | SkReadBuffer.h | 81 int32_t read32();
|
D | SkTextBlob.cpp | 700 int glyphCount = reader.read32(); in MakeFromBuffer() 707 pe.intValue = reader.read32(); in MakeFromBuffer() 712 int textSize = pe.extended ? reader.read32() : 0; in MakeFromBuffer()
|
D | SkPicture.cpp | 203 int32_t ssize = buffer.read32(); in MakeFromBuffer()
|
D | SkMipmap.cpp | 864 int count = buffer.read32(); in Deserialize() 869 size_t size = buffer.read32(); in Deserialize()
|
D | SkPaint.cpp | 349 (void)buffer.read32(); // was drawLooper (now deprecated) in Unflatten()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Endian.h | 365 inline uint32_t read32(const void *P, endianness E) { in read32() function 375 template <endianness E> inline uint32_t read32(const void *P) { in read32() function 383 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le() 386 inline uint32_t read32be(const void *P) { return read32<big>(P); } in read32be()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Endian.h | 310 template <endianness E> inline uint32_t read32(const void *P) { in read32() function 318 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le() 321 inline uint32_t read32be(const void *P) { return read32<big>(P); } in read32be()
|
/third_party/flutter/skia/src/shaders/ |
D | SkRTShader.cpp | 118 uint32_t flags = buffer.read32(); in CreateProc()
|
D | SkComposeShader.cpp | 119 unsigned mode = buffer.read32(); in CreateProc()
|
/third_party/skia/src/shaders/ |
D | SkComposeShader.cpp | 81 unsigned mode = buffer.read32(); in CreateProc()
|
/third_party/flutter/skia/src/effects/imagefilters/ |
D | SkXfermodeImageFilter.cpp | 93 unsigned mode = buffer.read32(); in unflatten_blendmode()
|
/third_party/skia/src/effects/imagefilters/ |
D | SkBlendImageFilter.cpp | 103 const uint32_t mode = buffer.read32(); in CreateProc()
|
/third_party/flutter/skia/src/effects/ |
D | SkTableColorFilter.cpp | 163 const int flags = buffer.read32(); in CreateProc()
|