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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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...]
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 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...]
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...]
convert_argb.h 36 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
37 uint8* dst_argb, int dst_stride_argb,
42 int I420ToARGB(const uint8* src_y, int src_stride_y,
43 const uint8* src_u, int src_stride_u,
44 const uint8* src_v, int src_stride_v,
45 uint8* dst_argb, int dst_stride_argb,
50 int I422ToARGB(const uint8* src_y, int src_stride_y,
51 const uint8* src_u, int src_stride_u,
52 const uint8* src_v, int src_stride_v,
53 uint8* dst_argb, int dst_stride_argb
    [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/crypto/
curve25519.cc 13 extern "C" int curve25519_donna(uint8*, const uint8*, const uint8*);
19 void ScalarMult(const uint8* private_key,
20 const uint8* peer_public_key,
21 uint8* shared_key) {
30 void ScalarBaseMult(const uint8* private_key, uint8* public_key) {
curve25519.h 33 CRYPTO_EXPORT void ScalarMult(const uint8* private_key,
34 const uint8* peer_public_key,
35 uint8* shared_key);
42 CRYPTO_EXPORT void ScalarBaseMult(const uint8* private_key, uint8* public_key);
  /external/chromium_org/media/base/simd/
convert_rgb_to_yuv_ssse3.h 23 void ConvertRGBToYUVRow_SSSE3(const uint8* rgb,
24 uint8* y,
25 uint8* u,
26 uint8* v,
30 void ConvertARGBToYUVRow_SSSE3(const uint8* argb,
31 uint8* y,
32 uint8* u,
33 uint8* v,
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,
33 MEDIA_EXPORT void ConvertYUVAToARGB_C(const uint8* yplane,
34 const uint8* uplane
    [all...]
filter_yuv.h 16 MEDIA_EXPORT void FilterYUVRows_C(uint8* ybuf,
17 const uint8* y0_ptr,
18 const uint8* y1_ptr,
22 MEDIA_EXPORT void FilterYUVRows_MMX(uint8* ybuf,
23 const uint8* y0_ptr,
24 const uint8* y1_ptr,
28 MEDIA_EXPORT void FilterYUVRows_SSE2(uint8* ybuf,
29 const uint8* y0_ptr,
30 const uint8* y1_ptr,
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...]
  /external/chromium/net/http/
des.h 19 void DESMakeKey(const uint8* raw, uint8* key);
24 void DESEncrypt(const uint8* key, const uint8* src, uint8* hash);
md4.h 70 void MD4Sum(const uint8 *input, uint32 inputLen, uint8 *result);
  /external/chromium_org/net/http/
des.h 19 NET_EXPORT_PRIVATE void DESMakeKey(const uint8* raw, uint8* key);
24 NET_EXPORT_PRIVATE void DESEncrypt(const uint8* key, const uint8* src,
25 uint8* hash);
md4.h 69 void MD4Sum(const uint8 *input, uint32 inputLen, uint8 *result);
  /external/chromium_org/media/base/
yuv_convert.h 56 MEDIA_EXPORT void ConvertYUVToRGB32(const uint8* yplane,
57 const uint8* uplane,
58 const uint8* vplane,
59 uint8* rgbframe,
69 MEDIA_EXPORT void ConvertYUVAToARGB(const uint8* yplane,
70 const uint8* uplane,
71 const uint8* vplane,
72 const uint8* aplane,
73 uint8* rgbframe,
84 MEDIA_EXPORT void ScaleYUVToRGB32(const uint8* yplane
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
802.3.h 31 uint8 ether_dhost[ETHER_ADDR_LEN]; /* dest mac */
32 uint8 ether_shost[ETHER_ADDR_LEN]; /* src mac */
34 uint8 dsap; /* always 0xAA */
35 uint8 ssap; /* always 0xAA */
36 uint8 ctl; /* always 0x03 */
37 uint8 oui[DOT3_OUI_LEN]; /* RFC1042: 0x00 0x00 0x00
p2p.h 42 uint8 id; /* IE ID: 0xDD */
43 uint8 len; /* IE length */
44 uint8 OUI[3]; /* WiFi P2P specific OUI: P2P_OUI */
45 uint8 oui_type; /* Identifies P2P version: P2P_VER */
46 uint8 subelts[1]; /* variable length subelements */
87 uint8 eltId; /* SE ID: P2P_SEID_P2P_INFO */
88 uint8 len[2]; /* SE length not including eltId, len fields */
89 uint8 dev; /* Device Capability Bitmap */
90 uint8 group; /* Group Capability Bitmap */
114 uint8 eltId; /* SE ID: P2P_SEID_INTENT *
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
scale.h 38 int I420Scale(const uint8* src_y, int src_stride_y,
39 const uint8* src_u, int src_stride_u,
40 const uint8* src_v, int src_stride_v,
42 uint8* dst_y, int dst_stride_y,
43 uint8* dst_u, int dst_stride_u,
44 uint8* dst_v, int dst_stride_v,
49 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v,
52 uint8* dst_y, uint8* dst_u, uint8* dst_v
    [all...]
  /external/libyuv/files/source/
row_neon.cc 78 void I422ToARGBRow_NEON(const uint8* y_buf,
79 const uint8* u_buf,
80 const uint8* v_buf,
81 uint8* rgb_buf,
111 void I422ToBGRARow_NEON(const uint8* y_buf,
112 const uint8* u_buf,
113 const uint8* v_buf,
114 uint8* rgb_buf,
145 void I422ToABGRRow_NEON(const uint8* y_buf,
146 const uint8* u_buf
    [all...]
  /external/chromium_org/device/bluetooth/
bluetooth_out_of_band_pairing_data.h 19 uint8 hash[kBluetoothOutOfBandPairingDataSize];
22 uint8 randomizer[kBluetoothOutOfBandPairingDataSize];
  /external/chromium_org/media/webm/
webm_crypto_helpers.h 27 const uint8* data, int data_size,
28 const uint8* key_id, int key_id_size);

Completed in 193 milliseconds

1 2 3 4 5 6 7 8 91011>>