Searched refs:GET_BYTE (Results 1 - 6 of 6) sorted by relevance
/third_party/NuttX/drivers/usbdev/gadget/ |
H A D | usbd_video.c | 820 #define GET_BYTE(data, bits) (((data) >> (bits)) & 0xFF) macro 855 *(p++) = ((GET_BYTE(r1, 0)) | (GET_BYTE(c[0], 8) << 8) | in usb_format_yuv_semiplanar_420() 856 (GET_BYTE(r1, 8) << 16) | (GET_BYTE(c[0], 0) << 24)); in usb_format_yuv_semiplanar_420() 857 *(p++) = ((GET_BYTE(r1, 16)) | (GET_BYTE(c[0], 24) << 8) | in usb_format_yuv_semiplanar_420() 858 (GET_BYTE(r1, 24) << 16) | (GET_BYTE(c[0], 16) << 24)); in usb_format_yuv_semiplanar_420() 859 *(p++) = ((GET_BYTE(r in usb_format_yuv_semiplanar_420() [all...] |
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jdhuff.c | 389 #define GET_BYTE { \ macro 414 GET_BYTE GET_BYTE GET_BYTE GET_BYTE GET_BYTE GET_BYTE \ 422 GET_BYTE GET_BYTE \
|
H A D | jdhuff_opt.c | 516 #define GET_BYTE { \ macro 541 GET_BYTE GET_BYTE GET_BYTE GET_BYTE GET_BYTE GET_BYTE \ 549 GET_BYTE GET_BYTE \
|
/third_party/ffmpeg/libavutil/ |
H A D | common.h | 455 * @param GET_BYTE Expression reading one byte from the input. 469 #define GET_UTF8(val, GET_BYTE, ERROR)\ 470 val= (GET_BYTE);\ 476 unsigned int tmp = (GET_BYTE) - 128;\
|
/third_party/mbedtls/library/ |
H A D | bignum_core.c | 273 if (GET_BYTE(A, i) != 0) { in mbedtls_mpi_core_write_le() 280 output[i] = GET_BYTE(A, i); in mbedtls_mpi_core_write_le() 317 if (GET_BYTE(X, i) != 0) { in mbedtls_mpi_core_write_be() 324 p[bytes_to_copy - i - 1] = GET_BYTE(X, i); in mbedtls_mpi_core_write_be()
|
H A D | bignum_core.h | 90 #define GET_BYTE(X, i) \ macro
|
Completed in 7 milliseconds