HomeSort by relevance Sort by last modified time
    Searched full:uint8 (Results 76 - 100 of 3007) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/syscall/
ztypes_darwin_arm.go 144 Type uint8
150 Len uint8
151 Family uint8
158 Len uint8
159 Family uint8
167 Len uint8
168 Family uint8
173 Len uint8
174 Family uint8
176 Type uint8
    [all...]
ztypes_darwin_arm64.go 149 Type uint8
155 Len uint8
156 Family uint8
163 Len uint8
164 Family uint8
172 Len uint8
173 Family uint8
178 Len uint8
179 Family uint8
181 Type uint8
    [all...]
ztypes_dragonfly_amd64.go 136 Type uint8
137 Unused1 uint8
147 Len uint8
148 Family uint8
155 Len uint8
156 Family uint8
164 Len uint8
165 Family uint8
170 Len uint8
171 Family uint8
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
ztypes_darwin_386.go 143 Type uint8
149 Len uint8
150 Family uint8
157 Len uint8
158 Family uint8
166 Len uint8
167 Family uint8
172 Len uint8
173 Family uint8
175 Type uint8
    [all...]
ztypes_darwin_amd64.go 149 Type uint8
155 Len uint8
156 Family uint8
163 Len uint8
164 Family uint8
172 Len uint8
173 Family uint8
178 Len uint8
179 Family uint8
181 Type uint8
    [all...]
ztypes_darwin_arm.go 144 Type uint8
150 Len uint8
151 Family uint8
158 Len uint8
159 Family uint8
167 Len uint8
168 Family uint8
173 Len uint8
174 Family uint8
176 Type uint8
    [all...]
ztypes_darwin_arm64.go 149 Type uint8
155 Len uint8
156 Family uint8
163 Len uint8
164 Family uint8
172 Len uint8
173 Family uint8
178 Len uint8
179 Family uint8
181 Type uint8
    [all...]
ztypes_dragonfly_amd64.go 136 Type uint8
137 Unused1 uint8
147 Len uint8
148 Family uint8
155 Len uint8
156 Family uint8
164 Len uint8
165 Family uint8
170 Len uint8
171 Family uint8
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/gki/common/
gki_common.h 66 UINT8 q_id; /* id of the queue */
67 UINT8 task_id; /* task which allocated the buffer*/
68 UINT8 status; /* FREE, UNLINKED or QUEUED */
69 UINT8 Type;
111 UINT8 taskid;
112 UINT8 msg[GKI_MAX_EXCEPTION_MSGLEN];
128 UINT8 bufpool0[(ALIGN_POOL(GKI_BUF0_SIZE) + BUFFER_PADDING_SIZE) * GKI_BUF0_MAX];
132 UINT8 bufpool1[(ALIGN_POOL(GKI_BUF1_SIZE) + BUFFER_PADDING_SIZE) * GKI_BUF1_MAX];
136 UINT8 bufpool2[(ALIGN_POOL(GKI_BUF2_SIZE) + BUFFER_PADDING_SIZE) * GKI_BUF2_MAX];
140 UINT8 bufpool3[(ALIGN_POOL(GKI_BUF3_SIZE) + BUFFER_PADDING_SIZE) * GKI_BUF3_MAX]
    [all...]
  /external/libnfc-nci/src/gki/common/
gki_common.h 66 UINT8 q_id; /* id of the queue */
67 UINT8 task_id; /* task which allocated the buffer*/
68 UINT8 status; /* FREE, UNLINKED or QUEUED */
69 UINT8 Type;
111 UINT8 taskid;
112 UINT8 msg[GKI_MAX_EXCEPTION_MSGLEN];
128 UINT8 bufpool0[(ALIGN_POOL(GKI_BUF0_SIZE) + BUFFER_PADDING_SIZE) * GKI_BUF0_MAX];
132 UINT8 bufpool1[(ALIGN_POOL(GKI_BUF1_SIZE) + BUFFER_PADDING_SIZE) * GKI_BUF1_MAX];
136 UINT8 bufpool2[(ALIGN_POOL(GKI_BUF2_SIZE) + BUFFER_PADDING_SIZE) * GKI_BUF2_MAX];
140 UINT8 bufpool3[(ALIGN_POOL(GKI_BUF3_SIZE) + BUFFER_PADDING_SIZE) * GKI_BUF3_MAX]
    [all...]
  /external/libyuv/files/source/
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...]
  /system/bt/stack/gatt/
gatt_int.h 33 #define GATT_CREATE_CONN_ID(tcb_idx, gatt_if) ((UINT16) ((((UINT8)(tcb_idx) ) << 8) | ((UINT8) (gatt_if))))
34 #define GATT_GET_TCB_IDX(conn_id) ((UINT8) (((UINT16) (conn_id)) >> 8))
35 #define GATT_GET_GATT_IF(conn_id) ((tGATT_IF)((UINT8) (conn_id)))
37 #define GATT_GET_SR_REG_PTR(index) (&gatt_cb.sr_reg[(UINT8) (index)]);
48 typedef UINT8 tGATT_SEC_ACTION;
95 typedef UINT8 tGATT_SEC_FLAG;
109 UINT8 value[GATT_MAX_MTU_SIZE]; /* pointer to the attribute value to be found */
132 UINT8 cmd_code;
133 UINT8 reason
    [all...]
  /system/bt/stack/include/
bt_types.h 33 typedef uint8_t UINT8;
224 #define HCI_GET_CMD_HDR_OPCODE(p) (UINT16)((*((UINT8 *)((p) + 1) + p->offset) + \
225 (*((UINT8 *)((p) + 1) + p->offset + 1) << 8)))
226 #define HCI_GET_CMD_HDR_PARAM_LEN(p) (UINT8) (*((UINT8 *)((p) + 1) + p->offset + 2))
228 #define HCI_GET_EVT_HDR_OPCODE(p) (UINT8)(*((UINT8 *)((p) + 1) + p->offset))
229 #define HCI_GET_EVT_HDR_PARAM_LEN(p) (UINT8) (*((UINT8 *)((p) + 1) + p->offset + 1))
235 #define UINT64_TO_BE_STREAM(p, u64) {*(p)++ = (UINT8)((u64) >> 56); *(p)++ = (UINT8)((u64) >> 48); *(p)++ = (UINT8)((u64) >> 40); *(p)++ = (UINT8)((u6 (…)
    [all...]
  /system/bt/stack/pan/
pan_int.h 49 UINT8 con_state;
52 UINT8 con_flags;
72 UINT8 role;
73 UINT8 active_role;
74 UINT8 prv_active_role;
91 UINT8 num_conns;
92 UINT8 trace_level;
118 UINT8 *src,
119 UINT8 *dst,
121 UINT8 *p_data
    [all...]
  /system/bt/stack/hid/
hidh_int.h 43 UINT8 state; /* Device state if in HOST-KNOWN mode */
44 UINT8 conn_substate;
45 UINT8 conn_tries; /* Remembers to the number of connection attempts while CONNECTING */
63 UINT8 trace_level;
66 extern tHID_STATUS hidh_conn_snd_data(UINT8 dhandle, UINT8 trans_type, UINT8 param, \
67 UINT16 data,UINT8 rpt_id, BT_HDR *buf);
70 extern tHID_STATUS hidh_conn_disconnect (UINT8 dhandle);
71 extern tHID_STATUS hidh_conn_initiate (UINT8 dhandle)
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
802.11.h 92 uint8 dsap; /* always 0xAA */
93 uint8 ssap; /* always 0xAA */
94 uint8 ctl; /* always 0x03 */
95 uint8 oui[DOT11_OUI_LEN]; /* RFC1042: 0x00 0x00 0x00
164 uint8 category;
165 uint8 OUI[3];
166 uint8 type;
167 uint8 subtype;
168 uint8 data[1040];
174 uint8 category
    [all...]
bcmip.h 40 ((((uint8 *)(ip_body))[IP_VER_OFFSET] & IP_VER_MASK) >> IP_VER_SHIFT)
65 #define IPV4_HLEN(ipv4_body) (4 * (((uint8 *)(ipv4_body))[IPV4_VER_HL_OFFSET] & IPV4_HLEN_MASK))
69 #define IPV4_ADDR_NULL(a) ((((uint8 *)(a))[0] | ((uint8 *)(a))[1] | \
70 ((uint8 *)(a))[2] | ((uint8 *)(a))[3]) == 0)
72 #define IPV4_ADDR_BCAST(a) ((((uint8 *)(a))[0] & ((uint8 *)(a))[1] & \
73 ((uint8 *)(a))[2] & ((uint8 *)(a))[3]) == 0xff
    [all...]
ethernet.h 106 ((uint8 *)ea)[0] = 0x01; \
107 ((uint8 *)ea)[1] = 0x00; \
108 ((uint8 *)ea)[2] = 0x5e; \
109 ((uint8 *)ea)[3] = ((mgrp_ip) >> 16) & 0x7f; \
110 ((uint8 *)ea)[4] = ((mgrp_ip) >> 8) & 0xff; \
111 ((uint8 *)ea)[5] = ((mgrp_ip) >> 0) & 0xff; \
119 uint8 ether_dhost[ETHER_ADDR_LEN];
120 uint8 ether_shost[ETHER_ADDR_LEN];
128 uint8 octet[ETHER_ADDR_LEN];
136 #define ETHER_SET_LOCALADDR(ea) (((uint8 *)(ea))[0] = (((uint8 *)(ea))[0] | 2)
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
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...]
  /hardware/broadcom/libbt/include/
uipc_msg.h 49 typedef UINT8 tUIPC_STATUS;
63 UINT8 opcode; /* UIPC_OPEN_REQ */
70 UINT8 opcode; /* UIPC_OPEN_RESP */
74 UINT8 num_streams; /* Number of simultaneous streams supported by the light stack */
81 UINT8 opcode; /* UIPC_CLOSE_REQ */
88 UINT8 opcode; /* UIPC_CLOSE_RSP */
95 UINT8 opcode;
107 UINT8 msg[IPC_LOG_MSG_LEN];
130 UINT8 op_code;
131 UINT8 status
    [all...]
  /external/libnfc-nci/src/nfa/int/
nfa_cho_int.h 48 typedef UINT8 tNFA_CHO_STATE;
61 typedef UINT8 tNFA_CHO_SUBSTATE;
70 typedef UINT8 tNFA_CHO_RX_NDEF_STATUS;
79 typedef UINT8 tNFA_CHO_MSG_TYPE;
137 UINT8 num_ac_info;
139 UINT8 *p_ndef;
148 UINT8 num_ac_info;
150 UINT8 *p_ndef;
162 UINT8 error_reason;
204 UINT8 server_sap; /* SAP for local handover server *
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
scale_argb.h 23 int ARGBScale(const uint8* src_argb, int src_stride_argb,
25 uint8* dst_argb, int dst_stride_argb,
31 int ARGBScaleClip(const uint8* src_argb, int src_stride_argb,
33 uint8* dst_argb, int dst_stride_argb,
41 int YUVToARGBScaleClip(const uint8* src_y, int src_stride_y,
42 const uint8* src_u, int src_stride_u,
43 const uint8* src_v, int src_stride_v,
46 uint8* dst_argb, int dst_stride_argb,
  /system/bt/stack/srvc/
srvc_battery_int.h 35 UINT8 app_id;
44 UINT8 pending_clcb_idx;
45 UINT8 pending_evt;
52 UINT8 inst_id;
72 extern UINT8 battery_s_write_attr_value(UINT8 clcb_idx, tGATT_WRITE_REQ * p_value,
74 extern UINT8 battery_s_read_attr_value (UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long, tGATT_STATUS* p_status);
  /system/bt/stack/btu/
btu_hcif.c 52 extern void btm_process_cancel_complete(UINT8 status, UINT8 mode);
53 extern void btm_ble_test_command_complete(UINT8 *p);
58 static void btu_hcif_inquiry_comp_evt (UINT8 *p);
59 static void btu_hcif_inquiry_result_evt (UINT8 *p);
60 static void btu_hcif_inquiry_rssi_result_evt (UINT8 *p);
61 static void btu_hcif_extended_inquiry_result_evt (UINT8 *p);
63 static void btu_hcif_connection_comp_evt (UINT8 *p);
64 static void btu_hcif_connection_request_evt (UINT8 *p);
65 static void btu_hcif_disconnection_comp_evt (UINT8 *p)
    [all...]
  /system/bt/bta/include/
bta_av_co.h 69 UINT8 busy_level; /* Busy level indicating the bit-rate to be used */
70 UINT8 codec_info[AVDT_CODEC_SIZE];
71 UINT8 codec_type; /* Codec type */
87 extern BOOLEAN bta_av_co_audio_init(UINT8 *p_codec_type, UINT8 *p_codec_info,
88 UINT8 *p_num_protect, UINT8 *p_protect_info, UINT8 index);
102 extern void bta_av_co_audio_disc_res(tBTA_AV_HNDL hndl, UINT8 num_seps,
103 UINT8 num_snk, UINT8 num_src, BD_ADDR addr, UINT16 uuid_local)
    [all...]

Completed in 1258 milliseconds

1 2 34 5 6 7 8 91011>>