WebPChunk          42 3rdparty/libwebp/mux/muxedit.c static void DeleteAllChunks(WebPChunk** const chunk_list) {
WebPChunk          80 3rdparty/libwebp/mux/muxedit.c   WebPChunk chunk;
WebPChunk         179 3rdparty/libwebp/mux/muxedit.c static WebPMuxError DeleteChunks(WebPChunk** chunk_list, uint32_t tag) {
WebPChunk         183 3rdparty/libwebp/mux/muxedit.c     WebPChunk* const chunk = *chunk_list;
WebPChunk         196 3rdparty/libwebp/mux/muxedit.c   WebPChunk** chunk_list;
WebPChunk         233 3rdparty/libwebp/mux/muxedit.c     WebPChunk** chunk_list) {
WebPChunk         234 3rdparty/libwebp/mux/muxedit.c   WebPChunk chunk;
WebPChunk         410 3rdparty/libwebp/mux/muxedit.c     const WebPChunk* const frame_frgm_chunk,
WebPChunk         427 3rdparty/libwebp/mux/muxedit.c WebPMuxError MuxGetImageWidthHeight(const WebPChunk* const image_chunk,
WebPChunk         451 3rdparty/libwebp/mux/muxedit.c   const WebPChunk* const image_chunk = wpi->img_;
WebPChunk         452 3rdparty/libwebp/mux/muxedit.c   const WebPChunk* const frame_frgm_chunk = wpi->header_;
WebPChunk         507 3rdparty/libwebp/mux/muxedit.c     const WebPChunk* const image_chunk = wpi->img_;
WebPChunk          34 3rdparty/libwebp/mux/muxi.h typedef struct WebPChunk WebPChunk;
WebPChunk          41 3rdparty/libwebp/mux/muxi.h   WebPChunk*      next_;
WebPChunk          48 3rdparty/libwebp/mux/muxi.h   WebPChunk*  header_;      // Corresponds to WEBP_CHUNK_ANMF/WEBP_CHUNK_FRGM.
WebPChunk          49 3rdparty/libwebp/mux/muxi.h   WebPChunk*  alpha_;       // Corresponds to WEBP_CHUNK_ALPHA.
WebPChunk          50 3rdparty/libwebp/mux/muxi.h   WebPChunk*  img_;         // Corresponds to WEBP_CHUNK_IMAGE.
WebPChunk          58 3rdparty/libwebp/mux/muxi.h   WebPChunk*      iccp_;
WebPChunk          59 3rdparty/libwebp/mux/muxi.h   WebPChunk*      exif_;
WebPChunk          60 3rdparty/libwebp/mux/muxi.h   WebPChunk*      xmp_;
WebPChunk          61 3rdparty/libwebp/mux/muxi.h   WebPChunk*      anim_;
WebPChunk          62 3rdparty/libwebp/mux/muxi.h   WebPChunk*      vp8x_;
WebPChunk          64 3rdparty/libwebp/mux/muxi.h   WebPChunk*  unknown_;
WebPChunk         102 3rdparty/libwebp/mux/muxi.h void ChunkInit(WebPChunk* const chunk);
WebPChunk         118 3rdparty/libwebp/mux/muxi.h WebPChunk* ChunkSearchList(WebPChunk* first, uint32_t nth, uint32_t tag);
WebPChunk         121 3rdparty/libwebp/mux/muxi.h WebPMuxError ChunkAssignData(WebPChunk* chunk, const WebPData* const data,
WebPChunk         127 3rdparty/libwebp/mux/muxi.h WebPMuxError ChunkSetNth(WebPChunk* chunk, WebPChunk** chunk_list,
WebPChunk         131 3rdparty/libwebp/mux/muxi.h WebPChunk* ChunkRelease(WebPChunk* const chunk);
WebPChunk         134 3rdparty/libwebp/mux/muxi.h WebPChunk* ChunkDelete(WebPChunk* const chunk);
WebPChunk         142 3rdparty/libwebp/mux/muxi.h static WEBP_INLINE size_t ChunkDiskSize(const WebPChunk* chunk) {
WebPChunk         149 3rdparty/libwebp/mux/muxi.h size_t ChunksListDiskSize(const WebPChunk* chunk_list);
WebPChunk         152 3rdparty/libwebp/mux/muxi.h uint8_t* ChunkListEmit(const WebPChunk* chunk_list, uint8_t* dst);
WebPChunk         155 3rdparty/libwebp/mux/muxi.h WebPMuxError MuxGetImageWidthHeight(const WebPChunk* const image_chunk,
WebPChunk         190 3rdparty/libwebp/mux/muxi.h static WEBP_INLINE WebPChunk** MuxImageGetListFromId(
WebPChunk         195 3rdparty/libwebp/mux/muxi.h     case WEBP_CHUNK_FRGM:  return (WebPChunk**)&wpi->header_;
WebPChunk         196 3rdparty/libwebp/mux/muxi.h     case WEBP_CHUNK_ALPHA: return (WebPChunk**)&wpi->alpha_;
WebPChunk         197 3rdparty/libwebp/mux/muxi.h     case WEBP_CHUNK_IMAGE: return (WebPChunk**)&wpi->img_;
WebPChunk         236 3rdparty/libwebp/mux/muxi.h WebPChunk** MuxGetChunkListFromId(const WebPMux* mux, WebPChunkId id);
WebPChunk          50 3rdparty/libwebp/mux/muxinternal.c void ChunkInit(WebPChunk* const chunk) {
WebPChunk          56 3rdparty/libwebp/mux/muxinternal.c WebPChunk* ChunkRelease(WebPChunk* const chunk) {
WebPChunk          57 3rdparty/libwebp/mux/muxinternal.c   WebPChunk* next;
WebPChunk         100 3rdparty/libwebp/mux/muxinternal.c static WebPChunk* ChunkSearchNextInList(WebPChunk* chunk, uint32_t tag) {
WebPChunk         107 3rdparty/libwebp/mux/muxinternal.c WebPChunk* ChunkSearchList(WebPChunk* first, uint32_t nth, uint32_t tag) {
WebPChunk         113 3rdparty/libwebp/mux/muxinternal.c     WebPChunk* next_chunk = ChunkSearchNextInList(first->next_, tag);
WebPChunk         123 3rdparty/libwebp/mux/muxinternal.c static int ChunkSearchListToSet(WebPChunk** chunk_list, uint32_t nth,
WebPChunk         124 3rdparty/libwebp/mux/muxinternal.c                                 WebPChunk*** const location) {
WebPChunk         130 3rdparty/libwebp/mux/muxinternal.c     WebPChunk* const cur_chunk = *chunk_list;
WebPChunk         144 3rdparty/libwebp/mux/muxinternal.c WebPMuxError ChunkAssignData(WebPChunk* chunk, const WebPData* const data,
WebPChunk         165 3rdparty/libwebp/mux/muxinternal.c WebPMuxError ChunkSetNth(WebPChunk* chunk, WebPChunk** chunk_list,
WebPChunk         167 3rdparty/libwebp/mux/muxinternal.c   WebPChunk* new_chunk;
WebPChunk         173 3rdparty/libwebp/mux/muxinternal.c   new_chunk = (WebPChunk*)malloc(sizeof(*new_chunk));
WebPChunk         185 3rdparty/libwebp/mux/muxinternal.c WebPChunk* ChunkDelete(WebPChunk* const chunk) {
WebPChunk         186 3rdparty/libwebp/mux/muxinternal.c   WebPChunk* const next = ChunkRelease(chunk);
WebPChunk         194 3rdparty/libwebp/mux/muxinternal.c size_t ChunksListDiskSize(const WebPChunk* chunk_list) {
WebPChunk         203 3rdparty/libwebp/mux/muxinternal.c static uint8_t* ChunkEmit(const WebPChunk* const chunk, uint8_t* dst) {
WebPChunk         216 3rdparty/libwebp/mux/muxinternal.c uint8_t* ChunkListEmit(const WebPChunk* chunk_list, uint8_t* dst) {
WebPChunk         254 3rdparty/libwebp/mux/muxinternal.c       const WebPChunk* const wpi_chunk = *MuxImageGetListFromId(current, id);
WebPChunk         375 3rdparty/libwebp/mux/muxinternal.c static uint8_t* ChunkEmitSpecial(const WebPChunk* const header,
WebPChunk         435 3rdparty/libwebp/mux/muxinternal.c WebPChunk** MuxGetChunkListFromId(const WebPMux* mux, WebPChunkId id) {
WebPChunk         438 3rdparty/libwebp/mux/muxinternal.c     case WEBP_CHUNK_VP8X:    return (WebPChunk**)&mux->vp8x_;
WebPChunk         439 3rdparty/libwebp/mux/muxinternal.c     case WEBP_CHUNK_ICCP:    return (WebPChunk**)&mux->iccp_;
WebPChunk         440 3rdparty/libwebp/mux/muxinternal.c     case WEBP_CHUNK_ANIM:    return (WebPChunk**)&mux->anim_;
WebPChunk         441 3rdparty/libwebp/mux/muxinternal.c     case WEBP_CHUNK_EXIF:    return (WebPChunk**)&mux->exif_;
WebPChunk         442 3rdparty/libwebp/mux/muxinternal.c     case WEBP_CHUNK_XMP:     return (WebPChunk**)&mux->xmp_;
WebPChunk         443 3rdparty/libwebp/mux/muxinternal.c     case WEBP_CHUNK_UNKNOWN: return (WebPChunk**)&mux->unknown_;
WebPChunk          29 3rdparty/libwebp/mux/muxread.c     const WebPChunk* const chunk = ChunkSearchList((LIST), nth,               \
WebPChunk          57 3rdparty/libwebp/mux/muxread.c static WebPMuxError ChunkVerifyAndAssign(WebPChunk* chunk,
WebPChunk          79 3rdparty/libwebp/mux/muxread.c static int MuxImageParse(const WebPChunk* const chunk, int copy_data,
WebPChunk          84 3rdparty/libwebp/mux/muxread.c   WebPChunk subchunk;
WebPChunk         154 3rdparty/libwebp/mux/muxread.c   WebPChunk chunk;
WebPChunk         206 3rdparty/libwebp/mux/muxread.c     WebPChunk** chunk_list;
WebPChunk         361 3rdparty/libwebp/mux/muxread.c     const WebPChunk* const chunk =
WebPChunk         452 3rdparty/libwebp/mux/muxread.c static int CountChunks(const WebPChunk* const chunk_list, uint32_t tag) {
WebPChunk         454 3rdparty/libwebp/mux/muxread.c   const WebPChunk* current;
WebPChunk         472 3rdparty/libwebp/mux/muxread.c     WebPChunk* const* chunk_list = MuxGetChunkListFromId(mux, id);