Searched refs:PutLE16 (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/utils/ |
A D | utils.h | 93 static WEBP_INLINE void PutLE16(uint8_t* const data, int val) { in PutLE16() function 101 PutLE16(data, val & 0xffff); in PutLE24() 106 PutLE16(data, (int)(val & 0xffff)); in PutLE32() 107 PutLE16(data + 2, (int)(val >> 16)); in PutLE32()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/imageio/ |
A D | image_enc.c | 285 static void PutLE16(uint8_t* const dst, uint32_t value) { in PutLE16() function 291 PutLE16(dst + 0, (value >> 0) & 0xffff); in PutLE32() 292 PutLE16(dst + 2, (value >> 16) & 0xffff); in PutLE32() 312 PutLE16(bmp_header + 0, 0x4d42); // signature 'BM' in WebPWriteBMP() 320 PutLE16(bmp_header + 26, 1); // number of planes in WebPWriteBMP() 321 PutLE16(bmp_header + 28, bytes_per_px * 8); // bits per pixel in WebPWriteBMP()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/mux/ |
A D | muxedit.c | 344 PutLE16(data + 4, params->loop_count); in WebPMuxSetAnimationParams()
|
Completed in 7 milliseconds