/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/ |
row.h | 25 void FastConvertYUVToARGBRow_NEON(const uint8* y_buf, 26 const uint8* u_buf, 27 const uint8* v_buf, 28 uint8* rgb_buf, 31 void FastConvertYUVToBGRARow_NEON(const uint8* y_buf, 32 const uint8* u_buf, 33 const uint8* v_buf, 34 uint8* rgb_buf, 37 void FastConvertYUVToABGRRow_NEON(const uint8* y_buf, 38 const uint8* u_buf [all...] |
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
row.h | 27 uint8* var##_mem = reinterpret_cast<uint8*>(malloc((size) + 63)); \ 28 uint8* var = reinterpret_cast<uint8*> \ 32 uint8* var##_mem = (uint8*)(malloc((size) + 63)); /* NOLINT */ \ 33 uint8* var = (uint8*)(((intptr_t)(var##_mem) + 63) & ~63) /* NOLINT */ 376 typedef __declspec(align(16)) uint8 uvec8[16]; 382 typedef __declspec(align(32)) uint8 ulvec8[32] [all...] |
scale_row.h | 90 const uint8* src_argb, uint8* dst_argb, 126 void ScaleRowDown2_C(const uint8* src_ptr, ptrdiff_t src_stride, 127 uint8* dst, int dst_width); 130 void ScaleRowDown2Linear_C(const uint8* src_ptr, ptrdiff_t src_stride, 131 uint8* dst, int dst_width); 134 void ScaleRowDown2Box_C(const uint8* src_ptr, ptrdiff_t src_stride, 135 uint8* dst, int dst_width); 138 void ScaleRowDown4_C(const uint8* src_ptr, ptrdiff_t src_stride, 139 uint8* dst, int dst_width) [all...] |
convert_from.h | 27 int I420ToI422(const uint8* src_y, int src_stride_y, 28 const uint8* src_u, int src_stride_u, 29 const uint8* src_v, int src_stride_v, 30 uint8* dst_y, int dst_stride_y, 31 uint8* dst_u, int dst_stride_u, 32 uint8* dst_v, int dst_stride_v, 36 int I420ToI444(const uint8* src_y, int src_stride_y, 37 const uint8* src_u, int src_stride_u, 38 const uint8* src_v, int src_stride_v, 39 uint8* dst_y, int dst_stride_y [all...] |
convert.h | 27 int I444ToI420(const uint8* src_y, int src_stride_y, 28 const uint8* src_u, int src_stride_u, 29 const uint8* src_v, int src_stride_v, 30 uint8* dst_y, int dst_stride_y, 31 uint8* dst_u, int dst_stride_u, 32 uint8* dst_v, int dst_stride_v, 37 int I422ToI420(const uint8* src_y, int src_stride_y, 38 const uint8* src_u, int src_stride_u, 39 const uint8* src_v, int src_stride_v, 40 uint8* dst_y, int dst_stride_y [all...] |
compare.h | 23 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed); 28 uint32 ARGBDetect(const uint8* argb, int stride_argb, int width, int height); 32 uint64 ComputeSumSquareError(const uint8* src_a, 33 const uint8* src_b, int count); 36 uint64 ComputeSumSquareErrorPlane(const uint8* src_a, int stride_a, 37 const uint8* src_b, int stride_b, 46 double CalcFramePsnr(const uint8* src_a, int stride_a, 47 const uint8* src_b, int stride_b, 51 double I420Psnr(const uint8* src_y_a, int stride_y_a, 52 const uint8* src_u_a, int stride_u_a [all...] |
convert_from_argb.h | 24 int ARGBCopy(const uint8* src_argb, int src_stride_argb, 25 uint8* dst_argb, int dst_stride_argb, 30 int ARGBToBGRA(const uint8* src_argb, int src_stride_argb, 31 uint8* dst_bgra, int dst_stride_bgra, 36 int ARGBToABGR(const uint8* src_argb, int src_stride_argb, 37 uint8* dst_abgr, int dst_stride_abgr, 42 int ARGBToRGBA(const uint8* src_argb, int src_stride_argb, 43 uint8* dst_rgba, int dst_stride_rgba, 48 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb, 49 uint8* dst_rgb24, int dst_stride_rgb24 [all...] |
planar_functions.h | 27 void CopyPlane(const uint8* src_y, int src_stride_y, 28 uint8* dst_y, int dst_stride_y, 38 void SetPlane(uint8* dst_y, int dst_stride_y, 44 int I400ToI400(const uint8* src_y, int src_stride_y, 45 uint8* dst_y, int dst_stride_y, 53 int I422Copy(const uint8* src_y, int src_stride_y, 54 const uint8* src_u, int src_stride_u, 55 const uint8* src_v, int src_stride_v, 56 uint8* dst_y, int dst_stride_y, 57 uint8* dst_u, int dst_stride_u [all...] |
rotate_row.h | 92 void TransposeWxH_C(const uint8* src, int src_stride, 93 uint8* dst, int dst_stride, int width, int height); 95 void TransposeWx8_C(const uint8* src, int src_stride, 96 uint8* dst, int dst_stride, int width); 97 void TransposeWx8_NEON(const uint8* src, int src_stride, 98 uint8* dst, int dst_stride, int width); 99 void TransposeWx8_SSSE3(const uint8* src, int src_stride, 100 uint8* dst, int dst_stride, int width); 101 void TransposeWx8_Fast_SSSE3(const uint8* src, int src_stride, 102 uint8* dst, int dst_stride, int width) [all...] |
rotate.h | 36 int I420Rotate(const uint8* src_y, int src_stride_y, 37 const uint8* src_u, int src_stride_u, 38 const uint8* src_v, int src_stride_v, 39 uint8* dst_y, int dst_stride_y, 40 uint8* dst_u, int dst_stride_u, 41 uint8* dst_v, int dst_stride_v, 46 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y, 47 const uint8* src_uv, int src_stride_uv, 48 uint8* dst_y, int dst_stride_y, 49 uint8* dst_u, int dst_stride_u [all...] |
/external/libyuv/files/include/libyuv/ |
row.h | 150 typedef __declspec(align(16)) uint8 uvec8[16]; 158 typedef uint8 __attribute__((vector_size(16))) uvec8; 166 typedef uint8 uvec8[16]; 179 void I422ToARGBRow_NEON(const uint8* y_buf, 180 const uint8* u_buf, 181 const uint8* v_buf, 182 uint8* rgb_buf, 184 void I422ToBGRARow_NEON(const uint8* y_buf, 185 const uint8* u_buf, 186 const uint8* v_buf [all...] |
format_conversion.h | 23 int BayerBGGRToI420(const uint8* src_bayer, int src_stride_bayer, 24 uint8* dst_y, int dst_stride_y, 25 uint8* dst_u, int dst_stride_u, 26 uint8* dst_v, int dst_stride_v, 30 int BayerGBRGToI420(const uint8* src_bayer, int src_stride_bayer, 31 uint8* dst_y, int dst_stride_y, 32 uint8* dst_u, int dst_stride_u, 33 uint8* dst_v, int dst_stride_v, 37 int BayerGRBGToI420(const uint8* src_bayer, int src_stride_bayer, 38 uint8* dst_y, int dst_stride_y [all...] |
convert.h | 30 int I420Copy(const uint8* src_y, int src_stride_y, 31 const uint8* src_u, int src_stride_u, 32 const uint8* src_v, int src_stride_v, 33 uint8* dst_y, int dst_stride_y, 34 uint8* dst_u, int dst_stride_u, 35 uint8* dst_v, int dst_stride_v, 40 int I422ToI420(const uint8* src_y, int src_stride_y, 41 const uint8* src_u, int src_stride_u, 42 const uint8* src_v, int src_stride_v, 43 uint8* dst_y, int dst_stride_y [all...] |
convert_from.h | 27 int I420ToI422(const uint8* src_y, int src_stride_y, 28 const uint8* src_u, int src_stride_u, 29 const uint8* src_v, int src_stride_v, 30 uint8* dst_y, int dst_stride_y, 31 uint8* dst_u, int dst_stride_u, 32 uint8* dst_v, int dst_stride_v, 36 int I420ToI444(const uint8* src_y, int src_stride_y, 37 const uint8* src_u, int src_stride_u, 38 const uint8* src_v, int src_stride_v, 39 uint8* dst_y, int dst_stride_y [all...] |
rotate.h | 36 int I420Rotate(const uint8* src_y, int src_stride_y, 37 const uint8* src_u, int src_stride_u, 38 const uint8* src_v, int src_stride_v, 39 uint8* dst_y, int dst_stride_y, 40 uint8* dst_u, int dst_stride_u, 41 uint8* dst_v, int dst_stride_v, 46 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y, 47 const uint8* src_uv, int src_stride_uv, 48 uint8* dst_y, int dst_stride_y, 49 uint8* dst_u, int dst_stride_u [all...] |
compare.h | 23 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed); 27 uint64 ComputeSumSquareError(const uint8* src_a, 28 const uint8* src_b, int count); 31 uint64 ComputeSumSquareErrorPlane(const uint8* src_a, int stride_a, 32 const uint8* src_b, int stride_b, 41 double CalcFramePsnr(const uint8* src_a, int stride_a, 42 const uint8* src_b, int stride_b, 46 double I420Psnr(const uint8* src_y_a, int stride_y_a, 47 const uint8* src_u_a, int stride_u_a, 48 const uint8* src_v_a, int stride_v_a [all...] |
planar_functions.h | 26 void SetPlane(uint8* dst_y, int dst_stride_y, 35 void CopyPlane(const uint8* src_y, int src_stride_y, 36 uint8* dst_y, int dst_stride_y, 41 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, 42 uint8* dst_y, int dst_stride_y, 43 uint8* dst_u, int dst_stride_u, 44 uint8* dst_v, int dst_stride_v, 48 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy, 49 uint8* dst_y, int dst_stride_y, 50 uint8* dst_u, int dst_stride_u [all...] |
/external/libnfc-nci/src/nfc/include/ |
nci_hmsgs.h | 45 UINT8 nci_snd_core_reset (UINT8 reset_type); 46 UINT8 nci_snd_core_init (void); 47 UINT8 nci_snd_core_get_config (UINT8 *param_ids, UINT8 num_ids); 48 UINT8 nci_snd_core_set_config (UINT8 *p_param_tlvs, UINT8 tlv_size); 50 UINT8 nci_snd_core_conn_create (UINT8 dest_type, UINT8 num_tlv, UINT8 tlv_size, UINT8 *p_param_tlvs) [all...] |
ndef_utils.h | 66 typedef UINT8 tNDEF_STATUS; 101 EXPORT_NDEF_API extern tNDEF_STATUS NDEF_MsgValidate (UINT8 *p_msg, UINT32 msg_len, BOOLEAN b_allow_chunks); 113 EXPORT_NDEF_API extern INT32 NDEF_MsgGetNumRecs (UINT8 *p_msg); 125 EXPORT_NDEF_API extern UINT32 NDEF_MsgGetRecLength (UINT8 *p_cur_rec); 137 EXPORT_NDEF_API extern UINT8 *NDEF_MsgGetNextRec (UINT8 *p_cur_rec); 149 EXPORT_NDEF_API extern UINT8 *NDEF_MsgGetRecByIndex (UINT8 *p_msg, INT32 index); 161 EXPORT_NDEF_API extern UINT8 *NDEF_MsgGetLastRecInMsg (UINT8 *p_msg) [all...] |
/external/libnfc-nci/src/nfc/int/ |
tags_int.h | 36 UINT8 opcode; 37 UINT8 cmd_len; 38 UINT8 uid_offset; 39 UINT8 rsp_len; 44 UINT8 tag_model; 45 UINT8 tms; 46 UINT8 b_dynamic; 47 UINT8 lock_tlv[3]; 48 UINT8 mem_tlv[3]; 53 UINT8 manufacturer_id [all...] |
/hardware/intel/img/psb_headers/libmediaparser/mixvbp/vbp_manager/include/ |
vbp_loader.h | 36 #ifndef uint8 37 typedef unsigned char uint8; typedef 57 uint8 profile_and_level_indication; 62 uint8 video_format; 65 uint8 video_range; 68 uint8 matrix_coefficients; 70 uint8 short_video_header; 73 uint8 aspect_ratio_info; 74 uint8 par_width; 75 uint8 par_height [all...] |
/system/bt/bta/hl/ |
bta_hl_int.h | 70 typedef UINT8 tBTA_HL_SDP_OPER; 79 typedef UINT8 tBTA_HL_CCH_OPER; 85 typedef UINT8 tBTA_HL_CCH_CLOSE_DCH_OPER; 101 typedef UINT8 tBTA_HL_DCH_OPER; 115 typedef UINT8 tBTA_HL_ECHO_OPER; 135 UINT8 fcs; /* '0' No FCS, otherwise '1' */ 219 typedef UINT8 tBTA_HL_CCH_STATE; 228 typedef UINT8 tBTA_HL_DCH_STATE; 240 UINT8 app_id; 254 UINT8 app_id [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
bt_amp_hci.h | 31 uint8 plen; 32 uint8 parms[1]; 40 #define HCI_CMD_OGF(opcode) ((uint8)(((opcode) >> 10) & 0x3F)) 80 uint8 plh; 81 uint8 offset[2]; /* length so far */ 82 uint8 max_remote[2]; 86 uint8 plh; 87 uint8 offset[2]; 88 uint8 len[2]; 89 uint8 frag[1] [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
vbp_loader.h | 23 #ifndef uint8 24 typedef unsigned char uint8; typedef 44 uint8 profile_and_level_indication; 49 uint8* buffer_addr; 57 uint8 vop_coded; 81 uint8 pic_parameter_set_id; 82 uint8 seq_parameter_set_id; 84 uint8 profile_idc; 85 uint8 level_idc; 86 uint8 constraint_set1_flag [all...] |
/system/bt/stack/rfcomm/ |
rfc_int.h | 51 extern void RFCOMM_DlcEstablishReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu); 52 extern void RFCOMM_DlcEstablishRsp (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT16 result); 54 extern void RFCOMM_DataReq (tRFC_MCB *p_mcb, UINT8 dlci, BT_HDR *p_buf); 56 extern void RFCOMM_DlcReleaseReq (tRFC_MCB *p_mcb, UINT8 dlci); 58 extern void RFCOMM_ParNegReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu); 59 extern void RFCOMM_ParNegRsp (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT8 cl, UINT8 k); 61 extern void RFCOMM_TestReq (UINT8 *p_data, UINT16 len); 66 extern void RFCOMM_FlowReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT8 state) [all...] |