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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/internal/rsc.io/x86/x86asm/
tables.go 6 var decoder = [...]uint16{
7 uint16(xFail),
8 /*1*/ uint16(xCondByte), 243,
252 uint16(xFail),
253 /*490*/ uint16(xSetOp), uint16(ADD),
254 /*492*/ uint16(xReadSlashR),
255 /*493*/ uint16(xArgRM8),
256 /*494*/ uint16(xArgR8),
257 /*495*/ uint16(xMatch)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/rsc.io/x86/x86asm/
tables.go 6 var decoder = [...]uint16{
7 uint16(xFail),
8 /*1*/ uint16(xCondByte), 243,
252 uint16(xFail),
253 /*490*/ uint16(xSetOp), uint16(ADD),
254 /*492*/ uint16(xReadSlashR),
255 /*493*/ uint16(xArgRM8),
256 /*494*/ uint16(xArgR8),
257 /*495*/ uint16(xMatch)
    [all...]
  /external/libnfc-nci/src/udrv/include/
unv.h 65 UDRV_API extern BOOLEAN UNV_MapBlock(UINT16, tUNV_STORAGE_PREF, UINT16,
66 UINT16, UINT16 *, void *);
67 UDRV_API extern BOOLEAN UNV_ReadMap(UINT16, tUNV_STORAGE_PREF *, UINT16 *,
68 UINT16 *, UINT16 *);
69 UDRV_API extern BOOLEAN UNV_EraseBlock(UINT16);
70 UDRV_API extern void UNV_Default(UINT16);
    [all...]
  /prebuilts/go/darwin-x86/src/debug/pe/
pe.go 8 Machine uint16
9 NumberOfSections uint16
13 SizeOfOptionalHeader uint16
14 Characteristics uint16
23 Magic uint16
35 MajorOperatingSystemVersion uint16
36 MinorOperatingSystemVersion uint16
37 MajorImageVersion uint16
38 MinorImageVersion uint16
39 MajorSubsystemVersion uint16
    [all...]
  /prebuilts/go/linux-x86/src/debug/pe/
pe.go 8 Machine uint16
9 NumberOfSections uint16
13 SizeOfOptionalHeader uint16
14 Characteristics uint16
23 Magic uint16
35 MajorOperatingSystemVersion uint16
36 MinorOperatingSystemVersion uint16
37 MajorImageVersion uint16
38 MinorImageVersion uint16
39 MajorSubsystemVersion uint16
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
ztypes_windows_386.go 8 Version uint16
9 HighVersion uint16
12 MaxSockets uint16
13 MaxUdpDg uint16
20 Port uint16
ztypes_windows_amd64.go 8 Version uint16
9 HighVersion uint16
10 MaxSockets uint16
11 MaxUdpDg uint16
21 Port uint16
  /prebuilts/go/linux-x86/src/syscall/
ztypes_windows_386.go 8 Version uint16
9 HighVersion uint16
12 MaxSockets uint16
13 MaxUdpDg uint16
20 Port uint16
ztypes_windows_amd64.go 8 Version uint16
9 HighVersion uint16
10 MaxSockets uint16
11 MaxUdpDg uint16
21 Port uint16
  /external/tpm2/
tpm_generated.h 16 UINT16 uint8_t_Marshal(uint8_t* source, BYTE** buffer, INT32* size);
20 UINT16 int8_t_Marshal(int8_t* source, BYTE** buffer, INT32* size);
24 UINT16 uint16_t_Marshal(uint16_t* source, BYTE** buffer, INT32* size);
28 UINT16 int16_t_Marshal(int16_t* source, BYTE** buffer, INT32* size);
32 UINT16 uint32_t_Marshal(uint32_t* source, BYTE** buffer, INT32* size);
36 UINT16 int32_t_Marshal(int32_t* source, BYTE** buffer, INT32* size);
40 UINT16 uint64_t_Marshal(uint64_t* source, BYTE** buffer, INT32* size);
44 UINT16 int64_t_Marshal(int64_t* source, BYTE** buffer, INT32* size);
48 UINT16 BYTE_Marshal(BYTE* source, BYTE** buffer, INT32* size);
52 UINT16 INT16_Marshal(INT16* source, BYTE** buffer, INT32* size)
    [all...]
marshal_fp.h 10 UINT16 Common_Marshal(void *source, BYTE **buffer, INT32 *size,
11 UINT16 type_size);
13 UINT16 type_size);
16 static inline UINT16 name##_Marshal(void *x, BYTE **y, INT32 *z) { \
45 MARSHAL_WRAPPER(UINT16)
48 UINT16 TPMU_PUBLIC_PARMS_Marshal(TPMU_PUBLIC_PARMS *x, BYTE **y, INT32 *z,
  /system/bt/stack/pan/
pan_int.h 54 UINT16 handle;
57 UINT16 bad_pkts_rcvd;
58 UINT16 src_uuid;
59 UINT16 dst_uuid;
60 UINT16 prv_src_uuid;
61 UINT16 prv_dst_uuid;
62 UINT16 ip_addr_known;
111 extern void pan_conn_ind_cb (UINT16 handle,
116 extern void pan_connect_state_cb (UINT16 handle, BD_ADDR rem_bda, tBNEP_RESULT result, BOOLEAN is_role_change);
117 extern void pan_data_ind_cb (UINT16 handle
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9604.go 9 var x uint16 = 0xffff
10 var y uint16 = 0xfffe
11 var a uint16 = 0x7000
12 var b uint16 = 0x9000
18 panic("^uint16(0xffff) != 0")
21 panic("^uint16(0xfffe) != 1")
24 panic("-uint16(0xffff) != 1")
bug303.go 16 func readU16BE(b []byte) uint16 {
19 return uint16(b[0])<<8 + uint16(b[1]) // #1
20 n := uint16(b[0])<<8 + uint16(b[1])
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9604.go 9 var x uint16 = 0xffff
10 var y uint16 = 0xfffe
11 var a uint16 = 0x7000
12 var b uint16 = 0x9000
18 panic("^uint16(0xffff) != 0")
21 panic("^uint16(0xfffe) != 1")
24 panic("-uint16(0xffff) != 1")
bug303.go 16 func readU16BE(b []byte) uint16 {
19 return uint16(b[0])<<8 + uint16(b[1]) // #1
20 n := uint16(b[0])<<8 + uint16(b[1])
  /system/bt/stack/include/
hcimsgs.h 26 void bte_main_hci_send(BT_HDR *p_msg, UINT16 event);
48 extern BOOLEAN btsnd_hcic_per_inq_mode(UINT16 max_period, UINT16 min_period,
66 extern BOOLEAN btsnd_hcic_create_conn(BD_ADDR dest, UINT16 packet_types,
69 UINT16 clock_offset,
83 extern BOOLEAN btsnd_hcic_disconnect(UINT16 handle, UINT8 reason);
93 extern BOOLEAN btsnd_hcic_add_SCO_conn (UINT16 handle, UINT16 packet_types);
167 extern BOOLEAN btsnd_hcic_change_conn_type (UINT16 handle, UINT16 packet_types)
    [all...]
gap_api.h 94 typedef void (tGAP_CONN_CALLBACK) (UINT16 gap_handle, UINT16 event);
100 typedef void (tGAP_CALLBACK) (UINT16 event, void *p_data);
106 UINT16 status;
113 UINT16 int_min;
114 UINT16 int_max;
115 UINT16 latency;
116 UINT16 sp_tout;
123 UINT16 icon;
129 typedef void (tGAP_BLE_CMPL_CBACK)(BOOLEAN status, BD_ADDR addr, UINT16 length, char *p_name)
    [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))
106 UINT16 s_handle; /* starting handle */
107 UINT16 e_handle; /* ending handle */
108 UINT16 value_len; /* length of the attribute value */
123 UINT16 handle; /* read, handle value confirmation */
124 UINT16 mtu;
131 UINT16 handle;
144 UINT16 handle; /* WRITE, WRITE_BLOB */
145 UINT16 mtu; /* exchange MTU request *
    [all...]
  /system/bt/stack/sdp/
sdpint.h 94 UINT16 len;
100 UINT16 num_uids;
108 UINT16 start;
109 UINT16 end;
114 UINT16 num_attr;
124 UINT16 id;
133 UINT16 num_attributes;
143 UINT16 num_records;
157 UINT16 next_attr_index; /* attr index for next continuation response */
158 UINT16 next_attr_start_id; /* attr id to start with for the attr index in next cont. response (…)
    [all...]
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/registry/
syscall.go 22 //sys regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) = advapi32.RegCreateKeyExW
23 //sys regDeleteKey(key syscall.Handle, subkey *uint16) (regerrno error) = advapi32.RegDeleteKeyW
24 //sys regSetValueEx(key syscall.Handle, valueName *uint16, reserved uint32, vtype uint32, buf *byte, bufsize uint32) (regerrno error) = advapi32.RegSetValueExW
25 //sys regEnumValue(key syscall.Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegEnumValueW
26 //sys regDeleteValue(key syscall.Handle, name *uint16) (regerrno error) = advapi32.RegDeleteValueW
28 //sys expandEnvironmentStrings(src *uint16, dst *uint16, size uint32) (n uint32, err error) = kernel32.ExpandEnvironmentStringsW
  /prebuilts/go/linux-x86/src/internal/syscall/windows/registry/
syscall.go 22 //sys regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) = advapi32.RegCreateKeyExW
23 //sys regDeleteKey(key syscall.Handle, subkey *uint16) (regerrno error) = advapi32.RegDeleteKeyW
24 //sys regSetValueEx(key syscall.Handle, valueName *uint16, reserved uint32, vtype uint32, buf *byte, bufsize uint32) (regerrno error) = advapi32.RegSetValueExW
25 //sys regEnumValue(key syscall.Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegEnumValueW
26 //sys regDeleteValue(key syscall.Handle, name *uint16) (regerrno error) = advapi32.RegDeleteValueW
28 //sys expandEnvironmentStrings(src *uint16, dst *uint16, size uint32) (n uint32, err error) = kernel32.ExpandEnvironmentStringsW
  /prebuilts/go/darwin-x86/src/runtime/
defs_linux_amd64.go 152 significand [4]uint16
153 exponent uint16
154 padding [3]uint16
162 cwd uint16
163 swd uint16
164 ftw uint16
165 fop uint16
176 significand [4]uint16
177 exponent uint16
178 padding [3]uint16
    [all...]
defs_linux_386.go 96 significand [4]uint16
97 exponent uint16
101 significand [4]uint16
102 exponent uint16
103 padding [3]uint16
119 status uint16
120 magic uint16
174 gs uint16
175 __gsh uint16
176 fs uint16
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
defs_linux_amd64.go 152 significand [4]uint16
153 exponent uint16
154 padding [3]uint16
162 cwd uint16
163 swd uint16
164 ftw uint16
165 fop uint16
176 significand [4]uint16
177 exponent uint16
178 padding [3]uint16
    [all...]

Completed in 384 milliseconds

1 2 3 4 5 6 7 8 91011>>