Searched refs:decoded_data (Results 1 – 4 of 4) sorted by relevance
/external/webp/src/dec/ |
D | alpha.c | 45 uint8_t* decoded_data = NULL; in DecodeAlpha() local 75 decoded_data = (uint8_t*)data + ALPHA_HEADER_LEN; in DecodeAlpha() 77 decoded_data = (uint8_t*)malloc(decoded_size); in DecodeAlpha() 78 if (decoded_data == NULL) return 0; in DecodeAlpha() 82 decoded_data); in DecodeAlpha() 95 unfilter_func(decoded_data, width, height, 1, width, unfiltered_data); in DecodeAlpha() 101 CopyPlane(decoded_data, width, output, stride, width, height); in DecodeAlpha() 104 ok = DequantizeLevels(decoded_data, width, height); in DecodeAlpha() 110 free(decoded_data); in DecodeAlpha()
|
D | vp8l.c | 78 uint32_t** const decoded_data); 940 uint32_t** const decoded_data) { in DecodeImageStream() argument 1017 if (decoded_data != NULL) { in DecodeImageStream() 1018 *decoded_data = data; in DecodeImageStream()
|
/external/chromium/chrome/browser/importer/ |
D | nss_decryptor.cc | 73 std::string decoded_data; in Decrypt() local 74 base::Base64Decode(crypt, &decoded_data); in Decrypt() 84 const_cast<char*>(decoded_data.data())); in Decrypt() 85 request.len = static_cast<unsigned int>(decoded_data.size()); in Decrypt()
|
/external/chromium/chrome/browser/ |
D | custom_home_pages_table_model.cc | 204 std::vector<unsigned char> decoded_data; in OnGotFavicon() local 207 gfx::PNGCodec::FORMAT_BGRA, &decoded_data, in OnGotFavicon() 211 memcpy(entry->icon.getPixels(), &decoded_data.front(), in OnGotFavicon()
|