HomeSort by relevance Sort by last modified time
    Searched full:uint8 (Results 1 - 25 of 2990) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libvpx/source/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/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...]
  /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/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/chromium_org/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 */
354 typedef __declspec(align(16)) uint8 uvec8[16];
360 typedef __declspec(align(32)) uint8 ulvec8[32]
    [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_from_argb.h 24 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
25 uint8* dst_argb, int dst_stride_argb,
31 int BGRAToARGB(const uint8* src_frame, int src_stride_frame,
32 uint8* dst_argb, int dst_stride_argb,
38 int ABGRToARGB(const uint8* src_frame, int src_stride_frame,
39 uint8* dst_argb, int dst_stride_argb,
44 int ARGBToRGBA(const uint8* src_frame, int src_stride_frame,
45 uint8* dst_argb, int dst_stride_argb,
50 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb,
51 uint8* dst_rgb24, int dst_stride_rgb24
    [all...]
scale_row.h 69 const uint8* src_argb, uint8* dst_argb,
105 void ScaleRowDown2_C(const uint8* src_ptr, ptrdiff_t src_stride,
106 uint8* dst, int dst_width);
109 void ScaleRowDown2Linear_C(const uint8* src_ptr, ptrdiff_t src_stride,
110 uint8* dst, int dst_width);
113 void ScaleRowDown2Box_C(const uint8* src_ptr, ptrdiff_t src_stride,
114 uint8* dst, int dst_width);
117 void ScaleRowDown4_C(const uint8* src_ptr, ptrdiff_t src_stride,
118 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);
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...]
  /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...]
  /external/chromium_org/media/base/simd/
convert_yuv_to_rgb.h 16 MEDIA_EXPORT void ConvertYUVToRGB32_C(const uint8* yplane,
17 const uint8* uplane,
18 const uint8* vplane,
19 uint8* rgbframe,
27 MEDIA_EXPORT void ConvertYUVToRGB32Row_C(const uint8* yplane,
28 const uint8* uplane,
29 const uint8* vplane,
30 uint8* rgbframe,
34 MEDIA_EXPORT void ConvertYUVAToARGB_C(const uint8* yplane,
35 const uint8* uplane
    [all...]
convert_rgb_to_yuv.h 16 MEDIA_EXPORT void ConvertRGB32ToYUV_SSSE3(const uint8* rgbframe,
17 uint8* yplane,
18 uint8* uplane,
19 uint8* vplane,
26 MEDIA_EXPORT void ConvertRGB24ToYUV_SSSE3(const uint8* rgbframe,
27 uint8* yplane,
28 uint8* uplane,
29 uint8* vplane,
36 MEDIA_EXPORT void ConvertRGB32ToYUV_SSE2(const uint8* rgbframe,
37 uint8* yplane
    [all...]
convert_yuv_to_rgb_x86.cc 17 void ConvertYUVToRGB32_MMX(const uint8* yplane,
18 const uint8* uplane,
19 const uint8* vplane,
20 uint8* rgbframe,
29 uint8* rgb_row = rgbframe + y * rgbstride;
30 const uint8* y_ptr = yplane + y * ystride;
31 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
32 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
45 void ConvertYUVAToARGB_MMX(const uint8* yplane,
46 const uint8* uplane
    [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...]
  /external/bluetooth/bluedroid/bta/hl/
bta_hl_int.h 74 typedef UINT8 tBTA_HL_SDP_OPER;
83 typedef UINT8 tBTA_HL_CCH_OPER;
89 typedef UINT8 tBTA_HL_CCH_CLOSE_DCH_OPER;
105 typedef UINT8 tBTA_HL_DCH_OPER;
119 typedef UINT8 tBTA_HL_ECHO_OPER;
139 UINT8 fcs; /* '0' No FCS, otherwise '1' */
223 typedef UINT8 tBTA_HL_CCH_STATE;
232 typedef UINT8 tBTA_HL_DCH_STATE;
244 UINT8 app_id;
258 UINT8 app_id
    [all...]
  /hardware/intel/img/psb_headers/libmediaparser/mixvbp/vbp_manager/include/
vbp_loader.h 35 #ifndef uint8
36 typedef unsigned char uint8; typedef
56 uint8 profile_and_level_indication;
61 uint8 video_format;
64 uint8 video_range;
67 uint8 matrix_coefficients;
69 uint8 short_video_header;
72 uint8 aspect_ratio_info;
73 uint8 par_width;
74 uint8 par_height
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/hdr/
SyncML_DM_WBXMLReader.H 38 virtual SYNCML_DM_RET_STATUS_T readByte(UINT8 *bYte);
44 SYNCML_DM_RET_STATUS_T readOpaque(UINT8 *pBuffer, UINT8 nSize);
51 UINT8* stopByte);
61 UINT8* stopByte);
67 UINT8* stopByte);
73 SYNCML_DM_RET_STATUS_T skipTag(UINT8* pByte);
77 SYNCML_DM_RET_STATUS_T readOpaqueTag(UINT8* pByte, UINT8 *pBuffer, UINT8 nSize);
    [all...]

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 91011>>