Searched refs:idec (Results 1 – 7 of 7) sorted by relevance
/external/webp/src/dec/ |
D | idec_dec.c | 97 static int NeedCompressedAlpha(const WebPIDecoder* const idec) { in NeedCompressedAlpha() argument 98 if (idec->state_ == STATE_WEBP_HEADER) { in NeedCompressedAlpha() 103 if (idec->is_lossless_) { in NeedCompressedAlpha() 106 const VP8Decoder* const dec = (VP8Decoder*)idec->dec_; in NeedCompressedAlpha() 112 static void DoRemap(WebPIDecoder* const idec, ptrdiff_t offset) { in DoRemap() argument 113 MemBuffer* const mem = &idec->mem_; in DoRemap() 117 idec->io_.data = new_base; in DoRemap() 118 idec->io_.data_size = MemDataSize(mem); in DoRemap() 120 if (idec->dec_ != NULL) { in DoRemap() 121 if (!idec->is_lossless_) { in DoRemap() [all …]
|
D | vp8_dec.h | 116 int WebPISetIOHooks(WebPIDecoder* const idec,
|
/external/webp/src/webp/ |
D | decode.h | 322 WEBP_EXTERN(void) WebPIDelete(WebPIDecoder* idec); 328 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 336 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 345 const WebPIDecoder* idec, int* last_y, 352 const WebPIDecoder* idec, int* last_y, 359 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, in WebPIDecGetYUV() argument 361 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV() 372 const WebPIDecoder* idec, int* left, int* top, int* width, int* height);
|
/external/webp/include/webp/ |
D | decode.h | 322 WEBP_EXTERN(void) WebPIDelete(WebPIDecoder* idec); 328 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 336 WebPIDecoder* idec, const uint8_t* data, size_t data_size); 345 const WebPIDecoder* idec, int* last_y, 352 const WebPIDecoder* idec, int* last_y, 359 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, in WebPIDecGetYUV() argument 361 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV() 372 const WebPIDecoder* idec, int* left, int* top, int* width, int* height);
|
/external/skia/src/codec/ |
D | SkWebpCodec.cpp | 556 SkAutoTCallVProc<WebPIDecoder, WebPIDelete> idec(WebPIDecode(nullptr, 0, &config)); in onGetPixels() local 557 if (!idec) { in onGetPixels() 563 switch (WebPIUpdate(idec, frame.fragment.bytes, frame.fragment.size)) { in onGetPixels() 569 if (!WebPIDecGetRGB(idec, &rowsDecoded, nullptr, nullptr, nullptr) in onGetPixels()
|
/external/webp/ |
D | README | 638 WebPIDecoder* idec = WebPINewDecoder(&buffer); 646 WebPIAppend(idec, fresh_data, size_of_fresh_data); 650 WebPIUpdate(idec, buffer, size_of_transmitted_buffer); 659 The 'idec' object must always be released (even upon an error condition) by 660 calling: WebPDelete(idec). 716 WebPIDecoder* const idec = WebPIDecode(NULL, NULL, &config); 717 CHECK(idec != NULL); 719 VP8StatusCode status = WebPIAppend(idec, input, bytes_read); 726 WebPIDelete(idec);
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmInstructionTests.cpp | 452 …ADD_OPATOMIC_CASE_1(idec, "%unused = OpAtomicIDecrement %i32 %outloc %one %zero\n", { --expect… in createOpAtomicGroup()
|