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

1 2 3 4 5 6 7 8 91011>>

  /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);
des_unittest.cc 15 static const uint8 des_known_key[] = { "ANSI DES" };
18 static const uint8 des_ecb_known_plaintext[] = { "Netscape" };
21 static const uint8 des_ecb_known_ciphertext[] = {
25 uint8 ciphertext[8];
36 static const uint8 key[] = {
39 static const uint8 plaintext[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
40 static const uint8 known_ciphertext[] = {
43 uint8 ciphertext[8];
  /external/libyuv/files/include/libyuv/
planar_functions.h 20 int I420Copy(const uint8* src_y, int src_stride_y,
21 const uint8* src_u, int src_stride_u,
22 const uint8* src_v, int src_stride_v,
23 uint8* dst_y, int dst_stride_y,
24 uint8* dst_u, int dst_stride_u,
25 uint8* dst_v, int dst_stride_v,
29 int I420Rect(uint8* dst_y, int dst_stride_y,
30 uint8* dst_u, int dst_stride_u,
31 uint8* dst_v, int dst_stride_v,
37 int I422ToI420(const uint8* src_y, int src_stride_y
    [all...]
convert.h 19 int I420ToRGB24(const uint8* src_y, int src_stride_y,
20 const uint8* src_u, int src_stride_u,
21 const uint8* src_v, int src_stride_v,
22 uint8* dst_frame, int dst_stride_frame,
25 int I420ToARGB4444(const uint8* src_y, int src_stride_y,
26 const uint8* src_u, int src_stride_u,
27 const uint8* src_v, int src_stride_v,
28 uint8* dst_frame, int dst_stride_frame,
31 int I420ToRGB565(const uint8* src_y, int src_stride_y,
32 const uint8* src_u, int src_stride_u
    [all...]
general.h 25 I420Mirror(const uint8* src_yplane, int src_ystride,
26 const uint8* src_uplane, int src_ustride,
27 const uint8* src_vplane, int src_vstride,
28 uint8* dst_yplane, int dst_ystride,
29 uint8* dst_uplane, int dst_ustride,
30 uint8* dst_vplane, int dst_vstride,
35 I420CropPad(const uint8* src_frame, int src_width,
36 int src_height, uint8* dst_frame,
41 I420Crop(uint8* frame,
rotate.h 32 int I420Rotate(const uint8* src_y, int src_stride_y,
33 const uint8* src_u, int src_stride_u,
34 const uint8* src_v, int src_stride_v,
35 uint8* dst_y, int dst_stride_y,
36 uint8* dst_u, int dst_stride_u,
37 uint8* dst_v, int dst_stride_v,
42 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y,
43 const uint8* src_uv, int src_stride_uv,
44 uint8* dst_y, int dst_stride_y,
45 uint8* dst_u, int dst_stride_u
    [all...]
scale.h 35 int I420Scale(const uint8* src_y, int src_stride_y,
36 const uint8* src_u, int src_stride_u,
37 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,
49 int Scale(const uint8* src, int src_width, int src_height,
50 uint8* dst, int dst_width, int dst_height, int dst_height_offset,
54 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v
    [all...]
format_conversion.h 20 int BayerRGBToI420(const uint8* src_bayer, int src_stride_bayer,
22 uint8* dst_y, int dst_stride_y,
23 uint8* dst_u, int dst_stride_u,
24 uint8* dst_v, int dst_stride_v,
28 int BayerRGBToARGB(const uint8* src_bayer, int src_stride_bayer,
30 uint8* dst_rgb, int dst_stride_rgb,
34 int ARGBToBayerRGB(const uint8* src_rgb, int src_stride_rgb,
35 uint8* dst_bayer, int dst_stride_bayer,
  /external/libyuv/files/source/
row.h 40 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
41 void BGRAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
42 void ABGRToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
43 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
44 uint8* dst_u, uint8* dst_v, int width);
45 void BGRAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb
    [all...]
rotate_priv.h 20 RotatePlane90(const uint8* src, int src_stride,
21 uint8* dst, int dst_stride,
25 RotatePlane180(const uint8* src, int src_stride,
26 uint8* dst, int dst_stride,
30 RotatePlane270(const uint8* src, int src_stride,
31 uint8* dst, int dst_stride,
35 RotateUV90(const uint8* src, int src_stride,
36 uint8* dst_a, int dst_stride_a,
37 uint8* dst_b, int dst_stride_b,
45 RotateUV180(const uint8* src, int src_stride
    [all...]
row_posix.cc 18 extern "C" TALIGN16(const uint8, kMultiplyMaskARGBToI400[16]) = {
22 extern "C" TALIGN16(const uint8, kAdd16[16]) = {
27 extern "C" TALIGN16(const uint8, kShuffleMaskBG24ToARGB[16]) = {
32 extern "C" TALIGN16(const uint8, kShuffleMaskRAWToARGB[16]) = {
36 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) {
69 void BG24ToARGBRow_SSSE3(const uint8* src_bg24, uint8* dst_argb, int pix) {
106 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix)
    [all...]
  /external/bluetooth/bluez/tools/
ubcsp.h 46 typedef unsigned char uint8; typedef
71 uint8 channel; /* Which Channel this packet is to/from */
72 uint8 reliable; /* Is this packet reliable */
73 uint8 use_crc; /* Does this packet use CRC data protection */
75 uint8 *payload; /* The payload data itself - size of length */
105 uint8 link_establishment_state;
106 uint8 link_establishment_resp;
107 uint8 link_establishment_packet;
109 uint8 sequence_number:3;
110 uint8 ack_number:3;
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/proto/
ethernet.h 82 ((uint8 *)ea)[0] = 0x01; \
83 ((uint8 *)ea)[1] = 0x00; \
84 ((uint8 *)ea)[2] = 0x5e; \
85 ((uint8 *)ea)[3] = ((mgrp_ip) >> 16) & 0x7f; \
86 ((uint8 *)ea)[4] = ((mgrp_ip) >> 8) & 0xff; \
87 ((uint8 *)ea)[5] = ((mgrp_ip) >> 0) & 0xff; \
93 uint8 ether_dhost[ETHER_ADDR_LEN];
94 uint8 ether_shost[ETHER_ADDR_LEN];
100 uint8 octet[ETHER_ADDR_LEN];
105 #define ETHER_SET_LOCALADDR(ea) (((uint8 *)(ea))[0] = (((uint8 *)(ea))[0] | 2)
    [all...]
bcmip.h 41 ((((uint8 *)(ip_body))[IP_VER_OFFSET] & IP_VER_MASK) >> IP_VER_SHIFT)
63 #define IPV4_HLEN(ipv4_body) (4 * (((uint8 *)(ipv4_body))[IPV4_VER_HL_OFFSET] & IPV4_HLEN_MASK))
67 #define IPV4_ADDR_NULL(a) ((((uint8 *)(a))[0] | ((uint8 *)(a))[1] | \
68 ((uint8 *)(a))[2] | ((uint8 *)(a))[3]) == 0)
70 #define IPV4_ADDR_BCAST(a) ((((uint8 *)(a))[0] & ((uint8 *)(a))[1] & \
71 ((uint8 *)(a))[2] & ((uint8 *)(a))[3]) == 0xff
    [all...]
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...]
wpa.h 52 uint8 tag;
53 uint8 length;
54 uint8 oui[3];
55 uint8 oui_type;
57 uint8 low;
58 uint8 high;
66 uint8 tag;
67 uint8 length;
69 uint8 low;
70 uint8 high
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
ethernet.h 82 ((uint8 *)ea)[0] = 0x01; \
83 ((uint8 *)ea)[1] = 0x00; \
84 ((uint8 *)ea)[2] = 0x5e; \
85 ((uint8 *)ea)[3] = ((mgrp_ip) >> 16) & 0x7f; \
86 ((uint8 *)ea)[4] = ((mgrp_ip) >> 8) & 0xff; \
87 ((uint8 *)ea)[5] = ((mgrp_ip) >> 0) & 0xff; \
93 uint8 ether_dhost[ETHER_ADDR_LEN];
94 uint8 ether_shost[ETHER_ADDR_LEN];
100 uint8 octet[ETHER_ADDR_LEN];
105 #define ETHER_SET_LOCALADDR(ea) (((uint8 *)(ea))[0] = (((uint8 *)(ea))[0] | 2)
    [all...]
bcmip.h 41 ((((uint8 *)(ip_body))[IP_VER_OFFSET] & IP_VER_MASK) >> IP_VER_SHIFT)
63 #define IPV4_HLEN(ipv4_body) (4 * (((uint8 *)(ipv4_body))[IPV4_VER_HL_OFFSET] & IPV4_HLEN_MASK))
67 #define IPV4_ADDR_NULL(a) ((((uint8 *)(a))[0] | ((uint8 *)(a))[1] | \
68 ((uint8 *)(a))[2] | ((uint8 *)(a))[3]) == 0)
70 #define IPV4_ADDR_BCAST(a) ((((uint8 *)(a))[0] & ((uint8 *)(a))[1] & \
71 ((uint8 *)(a))[2] & ((uint8 *)(a))[3]) == 0xff
    [all...]
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...]
wpa.h 52 uint8 tag;
53 uint8 length;
54 uint8 oui[3];
55 uint8 oui_type;
57 uint8 low;
58 uint8 high;
66 uint8 tag;
67 uint8 length;
69 uint8 low;
70 uint8 high
    [all...]
  /external/chromium/crypto/
rsa_private_key.h 42 static const uint8 kRsaAlgorithmIdentifier[];
45 static const uint8 kBitStringTag = 0x03;
46 static const uint8 kIntegerTag = 0x02;
47 static const uint8 kNullTag = 0x05;
48 static const uint8 kOctetStringTag = 0x04;
49 static const uint8 kSequenceTag = 0x30;
61 bool Export(std::vector<uint8>* output);
65 bool ExportPublicKeyInfo(std::vector<uint8>* output);
69 bool ExportPublicKey(std::vector<uint8>* output);
75 bool Import(const std::vector<uint8>& input)
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
mp4dec_lib.h 95 void BlockIDCT(uint8 *dst, uint8 *pred, int16 *blk, int width, int nzcoefs,
96 uint8 *bitmapcol, uint8 bitmaprow);
134 uint8 *cu_prev, /* i */
135 uint8 *cv_prev, /* i */
136 uint8 *pred_block, /* i */
147 uint8 *c_prev, /* i */
148 uint8 *pred_block, /* i */
161 uint8 *c_prev, /* i *
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
avcenc_lib.h 48 int dct_luma(AVCEncObject *encvid, int blkidx, uint8 *cur, uint8 *org, int *coef_cost);
58 void MBInterIdct(AVCCommonObj *video, uint8 *curL, AVCMacroblock *currMB, int picPitch);
68 void dct_luma_16x16(AVCEncObject *encvid, uint8 *curL, uint8 *orgL);
79 void dct_chroma(AVCEncObject *encvid, uint8 *curC, uint8 *orgC, int cr);
235 AVCEnc_Status BitstreamEncInit(AVCEncBitstream *bitstream, uint8 *buffer, int buf_size,
236 uint8 *overrunBuffer, int oBSize);
301 //bool IntraDecisionABE(AVCEncObject *encvid, int min_cost, uint8 *curL, int picPitch)
    [all...]
  /external/chromium/chrome/browser/sync/util/
data_encryption.h 17 vector<uint8> EncryptData(const string& data);
18 bool DecryptData(const vector<uint8>& in_data, string* out_data);

Completed in 966 milliseconds

1 2 3 4 5 6 7 8 91011>>