HomeSort by relevance Sort by last modified time
    Searched refs:uint8 (Results 51 - 75 of 596) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libyuv/files/source/
rotate_neon.cc 25 void TransposeWx8_NEON(const uint8* src, int src_stride,
26 uint8* dst, int dst_stride,
191 void TransposeUVWx8_NEON(const uint8* src, int src_stride,
192 uint8* dst_a, int dst_stride_a,
193 uint8* dst_b, int dst_stride_b,
convert_from.cc 28 int I420ToI422(const uint8* src_y, int src_stride_y,
29 const uint8* src_u, int src_stride_u,
30 const uint8* src_v, int src_stride_v,
31 uint8* dst_y, int dst_stride_y,
32 uint8* dst_u, int dst_stride_u,
33 uint8* dst_v, int dst_stride_v,
51 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C;
105 const uint8* src_ptr, uint8* dst_ptr)
    [all...]
rotate_argb.cc 28 void ScaleARGBRowDownEven_SSE2(const uint8* src_ptr, int src_stride,
30 uint8* dst_ptr, int dst_width);
32 void ScaleARGBRowDownEven_C(const uint8* src_ptr, int,
34 uint8* dst_ptr, int dst_width);
36 static void ARGBTranspose(const uint8* src, int src_stride,
37 uint8* dst, int dst_stride,
39 void (*ScaleARGBRowDownEven)(const uint8* src_ptr, int src_stride,
40 int src_step, uint8* dst_ptr, int dst_width) = ScaleARGBRowDownEven_C;
57 void ARGBRotate90(const uint8* src, int src_stride,
58 uint8* dst, int dst_stride
    [all...]
row_common.cc 22 void BGRAToARGBRow_C(const uint8* src_bgra, uint8* dst_argb, int width) {
25 uint8 a = src_bgra[0];
26 uint8 r = src_bgra[1];
27 uint8 g = src_bgra[2];
28 uint8 b = src_bgra[3];
38 void ABGRToARGBRow_C(const uint8* src_abgr, uint8* dst_argb, int width) {
41 uint8 r = src_abgr[0];
42 uint8 g = src_abgr[1]
    [all...]
planar_functions.cc 28 void CopyPlane(const uint8* src_y, int src_stride_y,
29 uint8* dst_y, int dst_stride_y,
31 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C;
60 int I420ToI400(const uint8* src_y, int src_stride_y,
61 uint8*, int, // src_u
62 uint8*, int, // src_v
63 uint8* dst_y, int dst_stride_y,
79 void MirrorPlane(const uint8* src_y, int src_stride_y,
80 uint8* dst_y, int dst_stride_y
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
rotate_mips.cc 25 void TransposeWx8_MIPS_DSPR2(const uint8* src, int src_stride,
26 uint8* dst, int dst_stride, int width) {
109 void TransposeWx8_Fast_MIPS_DSPR2(const uint8* src, int src_stride,
110 uint8* dst, int dst_stride, int width) {
311 void TransposeUVWx8_MIPS_DSPR2(const uint8* src, int src_stride,
312 uint8* dst_a, int dst_stride_a,
313 uint8* dst_b, int dst_stride_b,
scale_mips.cc 24 void ScaleRowDown2_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride,
25 uint8* dst, int dst_width) {
81 void ScaleRowDown2Box_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride,
82 uint8* dst, int dst_width) {
83 const uint8* t = src_ptr + src_stride;
181 void ScaleRowDown4_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride,
182 uint8* dst, int dst_width) {
237 void ScaleRowDown4Box_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride,
238 uint8* dst, int dst_width) {
240 const uint8* s1 = src_ptr + stride
    [all...]
rotate_argb.cc 29 void ScaleARGBRowDownEven_SSE2(const uint8* src_ptr, int src_stride,
30 int src_stepx, uint8* dst_ptr, int dst_width);
35 void ScaleARGBRowDownEven_NEON(const uint8* src_ptr, int src_stride,
36 int src_stepx, uint8* dst_ptr, int dst_width);
39 void ScaleARGBRowDownEven_C(const uint8* src_ptr, int,
40 int src_stepx, uint8* dst_ptr, int dst_width);
42 static void ARGBTranspose(const uint8* src, int src_stride,
43 uint8* dst, int dst_stride, int width, int height) {
46 void (*ScaleARGBRowDownEven)(const uint8* src_ptr, int src_stride,
47 int src_step, uint8* dst_ptr, int dst_width) = ScaleARGBRowDownEven_C
    [all...]
row_common.cc 65 static inline void WRITEWORD(uint8* p, uint32 v) {
66 p[0] = (uint8)(v & 255);
67 p[1] = (uint8)((v >> 8) & 255);
68 p[2] = (uint8)((v >> 16) & 255);
69 p[3] = (uint8)((v >> 24) & 255);
73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) {
76 uint8 b = src_rgb24[0];
77 uint8 g = src_rgb24[1];
78 uint8 r = src_rgb24[2]
    [all...]
convert.cc 31 static int I4xxToI420(const uint8* src_y, int src_stride_y,
32 const uint8* src_u, int src_stride_u,
33 const uint8* src_v, int src_stride_v,
34 uint8* dst_y, int dst_stride_y,
35 uint8* dst_u, int dst_stride_u,
36 uint8* dst_v, int dst_stride_v,
63 int I420Copy(const uint8* src_y, int src_stride_y,
64 const uint8* src_u, int src_stride_u,
65 const uint8* src_v, int src_stride_v,
66 uint8* dst_y, int dst_stride_y
    [all...]
convert_from_argb.cc 25 int ARGBToI444(const uint8* src_argb, int src_stride_argb,
26 uint8* dst_y, int dst_stride_y,
27 uint8* dst_u, int dst_stride_u,
28 uint8* dst_v, int dst_stride_v,
31 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) =
33 void (*ARGBToUV444Row)(const uint8* src_argb, uint8* dst_u, uint8* dst_v,
106 int ARGBToI422(const uint8* src_argb, int src_stride_argb
    [all...]
convert_from.cc 33 static int I420ToI4xx(const uint8* src_y, int src_stride_y,
34 const uint8* src_u, int src_stride_u,
35 const uint8* src_v, int src_stride_v,
36 uint8* dst_y, int dst_stride_y,
37 uint8* dst_u, int dst_stride_u,
38 uint8* dst_v, int dst_stride_v,
64 int I420ToI422(const uint8* src_y, int src_stride_y,
65 const uint8* src_u, int src_stride_u,
66 const uint8* src_v, int src_stride_v,
67 uint8* dst_y, int dst_stride_y
    [all...]
compare_neon.cc 22 uint32 SumSquareError_NEON(const uint8* src_a, const uint8* src_b, int count) {
compare_neon64.cc 21 uint32 SumSquareError_NEON(const uint8* src_a, const uint8* src_b, int count) {
compare.cc 31 uint32 HashDjb2_C(const uint8* src, int count, uint32 seed);
38 uint32 HashDjb2_SSE41(const uint8* src, int count, uint32 seed);
42 uint32 HashDjb2_AVX2(const uint8* src, int count, uint32 seed);
49 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed) {
52 uint32 (*HashDjb2_SSE)(const uint8* src, int count, uint32 seed) = HashDjb2_C;
82 static uint32 ARGBDetectRow_C(const uint8* argb, int width) {
113 uint32 ARGBDetect(const uint8* argb, int stride_argb, int width, int height) {
130 uint32 SumSquareError_C(const uint8* src_a, const uint8* src_b, int count);
134 uint32 SumSquareError_NEON(const uint8* src_a, const uint8* src_b, int count)
    [all...]
row_gcc.cc 145 void TestRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) {
240 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) {
268 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) {
306 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) {
344 void RGB565ToARGBRow_SSE2(const uint8* src, uint8* dst, int pix)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct.h 48 void idctrow0(int16 *blk, uint8 *pred, uint8 *dst, int width);
49 void idctrow1(int16 *blk, uint8 *pred, uint8 *dst, int width);
50 void idctrow2(int16 *blk, uint8 *pred, uint8 *dst, int width);
51 void idctrow3(int16 *blk, uint8 *pred, uint8 *dst, int width);
52 void idctrow4(int16 *blk, uint8 *pred, uint8 *dst, int width)
    [all...]
mp4lib_int.h 38 uint8 *bitstreamBuffer; /* pointer to buffer memory */
50 uint8 text_1; /* texture_complexity_estimation_set_1 */
51 uint8 text_2; /* texture_complexity_estimation_set_2 */
52 uint8 mc; /* motion_compensation_complexity */
137 uint8 pred_block[384]; /* prediction block, Aug 3,2005 */
138 uint8 bitmapcol[6][8];
139 uint8 bitmaprow[6];
150 uint8 *Mode; /* Modes INTRA/INTER/etc. */
151 uint8 *CBP; /* MCBPC/CBPY stuff */
182 uint8 run
    [all...]
  /external/neven/Embedded/common/src/b_ImageEm/
Functions.h 55 uint8* dstImagePtrA,
56 const uint8* srcImagePtrA,
75 uint8* dstImagePtrA,
76 const uint8* srcImagePtrA,
90 uint8* dstImagePtrA,
91 const uint8* srcImagePtrA,
  /external/libvpx/libvpx/third_party/libwebm/
mkvmuxertypes.hpp 21 typedef unsigned char uint8; typedef in namespace:mkvmuxer
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_mp3bits.h 91 uint8 *pBuffer;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvmuxertypes.hpp 21 typedef unsigned char uint8; typedef in namespace:mkvmuxer
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h 64 uint8 *data; /* pointer to output YUV buffer */
80 int (*readBitstreamData)(uint8 *buf, int nbytes_required, void *appData);
83 uint8 *outputFrame;
91 uint8 *volbuf[2]; /* maximum of 2 layers for now */
122 uint8 *yChan; /* The Y component frame the user can copy a new reference to */
123 uint8 *uChan; /* The U component frame the user can copy a new reference to */
124 uint8 *vChan; /* The V component frame the user can copy a new reference to */
125 uint8 *currentVop; /* The Vop for video the user can copy a new reference to */
150 OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
154 OSCL_IMPORT_REF void PVSetReferenceYUV(VideoDecControls *decCtrl, uint8 *refYUV)
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmendian.h 84 (sizeof(*(ptr)) == sizeof(uint8) ? *(const uint8 *)(ptr) : \
85 sizeof(*(ptr)) == sizeof(uint16) ? _LTOH16_UA((const uint8 *)(ptr)) : \
86 sizeof(*(ptr)) == sizeof(uint32) ? _LTOH32_UA((const uint8 *)(ptr)) : \
87 *(uint8 *)0)
90 (sizeof(*(ptr)) == sizeof(uint8) ? *(const uint8 *)(ptr) : \
91 sizeof(*(ptr)) == sizeof(uint16) ? _NTOH16_UA((const uint8 *)(ptr)) : \
92 sizeof(*(ptr)) == sizeof(uint32) ? _NTOH32_UA((const uint8 *)(ptr)) : \
93 *(uint8 *)0
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
eapol.h 148 uint8 type;
149 uint8 length;
150 uint8 oui[3];
151 uint8 subtype;
152 uint8 data[1];
165 uint8 flags;
166 uint8 reserved;
167 uint8 gtk[EAPOL_WPA_MAX_KEY_SIZE];
180 uint8 ipn[6];
181 uint8 key[EAPOL_WPA_MAX_KEY_SIZE]
    [all...]

Completed in 592 milliseconds

1 23 4 5 6 7 8 91011>>