/external/wpa_supplicant_8/src/common/ |
D | ieee802_11_defs.h | 32 #define WLAN_GET_SEQ_FRAG(seq) ((seq) & (BIT(3) | BIT(2) | BIT(1) | BIT(0))) 34 (((seq) & (~(BIT(3) | BIT(2) | BIT(1) | BIT(0)))) >> 4) 88 #define WLAN_CAPABILITY_ESS BIT(0) 89 #define WLAN_CAPABILITY_IBSS BIT(1) 90 #define WLAN_CAPABILITY_CF_POLLABLE BIT(2) 91 #define WLAN_CAPABILITY_CF_POLL_REQUEST BIT(3) 92 #define WLAN_CAPABILITY_PRIVACY BIT(4) 93 #define WLAN_CAPABILITY_SHORT_PREAMBLE BIT(5) 94 #define WLAN_CAPABILITY_PBCC BIT(6) 95 #define WLAN_CAPABILITY_CHANNEL_AGILITY BIT(7) [all …]
|
D | defs.h | 21 #define WPA_CIPHER_NONE BIT(0) 22 #define WPA_CIPHER_WEP40 BIT(1) 23 #define WPA_CIPHER_WEP104 BIT(2) 24 #define WPA_CIPHER_TKIP BIT(3) 25 #define WPA_CIPHER_CCMP BIT(4) 26 #define WPA_CIPHER_AES_128_CMAC BIT(5) 27 #define WPA_CIPHER_GCMP BIT(6) 28 #define WPA_CIPHER_SMS4 BIT(7) 29 #define WPA_CIPHER_GCMP_256 BIT(8) 30 #define WPA_CIPHER_CCMP_256 BIT(9) [all …]
|
D | wpa_ctrl.h | 261 #define WPA_BSS_MASK_ID BIT(0) 262 #define WPA_BSS_MASK_BSSID BIT(1) 263 #define WPA_BSS_MASK_FREQ BIT(2) 264 #define WPA_BSS_MASK_BEACON_INT BIT(3) 265 #define WPA_BSS_MASK_CAPABILITIES BIT(4) 266 #define WPA_BSS_MASK_QUAL BIT(5) 267 #define WPA_BSS_MASK_NOISE BIT(6) 268 #define WPA_BSS_MASK_LEVEL BIT(7) 269 #define WPA_BSS_MASK_TSF BIT(8) 270 #define WPA_BSS_MASK_AGE BIT(9) [all …]
|
D | wpa_common.h | 127 #define WPA_CAPABILITY_PREAUTH BIT(0) 128 #define WPA_CAPABILITY_NO_PAIRWISE BIT(1) 131 #define WPA_CAPABILITY_MFPR BIT(6) 132 #define WPA_CAPABILITY_MFPC BIT(7) 134 #define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9) 135 #define WPA_CAPABILITY_SPP_A_MSDU_CAPABLE BIT(10) 136 #define WPA_CAPABILITY_SPP_A_MSDU_REQUIRED BIT(11) 137 #define WPA_CAPABILITY_PBAC BIT(12) 138 #define WPA_CAPABILITY_EXT_KEY_ID_FOR_UNICAST BIT(13) 150 #define WPA_KEY_INFO_TYPE_MASK ((u16) (BIT(0) | BIT(1) | BIT(2))) [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 3addr-16bit.ll | 1 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -asm-verbose=false | FileCheck %s -check-prefix=64BIT 8 ; 32BIT-LABEL: t1: 9 ; 32BIT: movw 20(%esp), %ax 10 ; 32BIT-NOT: movw %ax, %cx 11 ; 32BIT: leal 1(%eax), %ecx 13 ; 64BIT-LABEL: t1: 14 ; 64BIT-NOT: movw %si, %ax 15 ; 64BIT: leal 1(%rsi), %eax 30 ; 32BIT-LABEL: t2: 31 ; 32BIT: movw 20(%esp), %ax [all …]
|
/external/mksh/src/ |
D | sh.h | 455 #define BIT(i) (1 << (i)) macro 736 #define EF_BRKCONT_PASS BIT(1) /* set if E_LOOP must pass break/continue on */ 737 #define EF_FAKE_SIGDIE BIT(2) /* hack to get info from unwind to quitenv */ 874 #define TF_SHELL_USES BIT(0) /* shell uses signal, user can't change */ 875 #define TF_USER_SET BIT(1) /* user has (tried to) set trap */ 876 #define TF_ORIG_IGN BIT(2) /* original action was SIG_IGN */ 877 #define TF_ORIG_DFL BIT(3) /* original action was SIG_DFL */ 878 #define TF_EXEC_IGN BIT(4) /* restore SIG_IGN just before exec */ 879 #define TF_EXEC_DFL BIT(5) /* restore SIG_DFL just before exec */ 880 #define TF_DFL_INTR BIT(6) /* when received, default action is LINTR */ [all …]
|
/external/wpa_supplicant_8/src/ap/ |
D | sta_info.h | 20 #define WLAN_STA_AUTH BIT(0) 21 #define WLAN_STA_ASSOC BIT(1) 22 #define WLAN_STA_AUTHORIZED BIT(5) 23 #define WLAN_STA_PENDING_POLL BIT(6) /* pending activity poll not ACKed */ 24 #define WLAN_STA_SHORT_PREAMBLE BIT(7) 25 #define WLAN_STA_PREAUTH BIT(8) 26 #define WLAN_STA_WMM BIT(9) 27 #define WLAN_STA_MFP BIT(10) 28 #define WLAN_STA_HT BIT(11) 29 #define WLAN_STA_WPS BIT(12) [all …]
|
D | ap_config.h | 37 #define MESH_CONF_SEC_NONE BIT(0) 38 #define MESH_CONF_SEC_AUTH BIT(1) 39 #define MESH_CONF_SEC_AMPE BIT(2) 415 #define P2P_ENABLED BIT(0) 416 #define P2P_GROUP_OWNER BIT(1) 417 #define P2P_GROUP_FORMATION BIT(2) 418 #define P2P_MANAGE BIT(3) 419 #define P2P_ALLOW_CROSS_CONNECTION BIT(4) 431 #define TDLS_PROHIBIT BIT(0) 432 #define TDLS_PROHIBIT_CHAN_SWITCH BIT(1) [all …]
|
/external/llvm/test/CodeGen/Mips/ |
D | inlineasm_constraint_ZC.ll | 1 ; RUN: llc -march=mipsel -mcpu=mips32r6 < %s | FileCheck %s -check-prefix=ALL -check-prefix=09BIT 2 ; RUN: llc -march=mipsel -mattr=+micromips < %s | FileCheck %s -check-prefix=ALL -check-prefix=12BIT 3 ; RUN: llc -march=mipsel < %s | FileCheck %s -check-prefix=ALL -check-prefix=16BIT 71 ; 09BIT: addiu $[[BASEPTR2:[0-9]+]], $[[BASEPTR]], 256 75 ; 09BIT: lw $1, 0($[[BASEPTR2]]) 76 ; 12BIT: lw $1, 256($[[BASEPTR]]) 77 ; 16BIT: lw $1, 256($[[BASEPTR]]) 92 ; 09BIT: addiu $[[BASEPTR2:[0-9]+]], $[[BASEPTR]], 2044 96 ; 09BIT: lw $1, 0($[[BASEPTR2]]) 97 ; 12BIT: lw $1, 2044($[[BASEPTR]]) [all …]
|
/external/ltrace/sysdeps/linux-gnu/arm/ |
D | trace.c | 208 if (BIT(this_instr, 25)) { in arm_get_next_pcs() 289 if (!BIT(this_instr, 20) in arm_get_next_pcs() 293 if (BIT(this_instr, 22)) in arm_get_next_pcs() 302 if (BIT(this_instr, 24)) { in arm_get_next_pcs() 306 if (BIT(this_instr, 25)) { in arm_get_next_pcs() 315 if (BIT(this_instr, 23)) in arm_get_next_pcs() 330 if (!BIT(this_instr, 20)) in arm_get_next_pcs() 333 if (BIT(this_instr, 15)) { in arm_get_next_pcs() 341 int pre = BIT(this_instr, 24); in arm_get_next_pcs() 342 if (BIT(this_instr, 23)) { in arm_get_next_pcs() [all …]
|
D | regs.h | 22 #define BIT(obj,st) (((obj) >> (st)) & 1) macro 25 ((long) (BITS(obj,st,fn) | ((long) BIT(obj,fn) * ~ SUBMASK(fn - st))))
|
/external/wpa_supplicant_8/src/crypto/ |
D | tls.h | 88 #define TLS_CONN_ALLOW_SIGN_RSA_MD5 BIT(0) 89 #define TLS_CONN_DISABLE_TIME_CHECKS BIT(1) 90 #define TLS_CONN_DISABLE_SESSION_TICKET BIT(2) 91 #define TLS_CONN_REQUEST_OCSP BIT(3) 92 #define TLS_CONN_REQUIRE_OCSP BIT(4) 93 #define TLS_CONN_DISABLE_TLSv1_1 BIT(5) 94 #define TLS_CONN_DISABLE_TLSv1_2 BIT(6) 95 #define TLS_CONN_EAP_FAST BIT(7) 554 #define TLS_BREAK_VERIFY_DATA BIT(0) 555 #define TLS_BREAK_SRV_KEY_X_HASH BIT(1) [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | config.h | 312 #define CFG_CHANGED_DEVICE_NAME BIT(0) 313 #define CFG_CHANGED_CONFIG_METHODS BIT(1) 314 #define CFG_CHANGED_DEVICE_TYPE BIT(2) 315 #define CFG_CHANGED_OS_VERSION BIT(3) 316 #define CFG_CHANGED_UUID BIT(4) 317 #define CFG_CHANGED_COUNTRY BIT(5) 318 #define CFG_CHANGED_SEC_DEVICE_TYPE BIT(6) 319 #define CFG_CHANGED_P2P_SSID_POSTFIX BIT(7) 320 #define CFG_CHANGED_WPS_STRING BIT(8) 321 #define CFG_CHANGED_P2P_INTRA_BSS BIT(9) [all …]
|
D | bss.h | 14 #define WPA_BSS_QUAL_INVALID BIT(0) 15 #define WPA_BSS_NOISE_INVALID BIT(1) 16 #define WPA_BSS_LEVEL_INVALID BIT(2) 17 #define WPA_BSS_LEVEL_DBM BIT(3) 18 #define WPA_BSS_AUTHENTICATED BIT(4) 19 #define WPA_BSS_ASSOCIATED BIT(5) 20 #define WPA_BSS_ANQP_FETCH_TRIED BIT(6)
|
/external/libvpx/libvpx/vpx_ports/ |
D | x86.h | 154 #ifndef BIT 155 #define BIT(n) (1<<n) macro 186 if (reg_edx & BIT(23)) flags |= HAS_MMX; in x86_simd_caps() 188 if (reg_edx & BIT(25)) flags |= HAS_SSE; /* aka xmm */ in x86_simd_caps() 190 if (reg_edx & BIT(26)) flags |= HAS_SSE2; /* aka wmt */ in x86_simd_caps() 192 if (reg_ecx & BIT(0)) flags |= HAS_SSE3; in x86_simd_caps() 194 if (reg_ecx & BIT(9)) flags |= HAS_SSSE3; in x86_simd_caps() 196 if (reg_ecx & BIT(19)) flags |= HAS_SSE4_1; in x86_simd_caps() 199 if ((reg_ecx & (BIT(27) | BIT(28))) == (BIT(27) | BIT(28))) { in x86_simd_caps() 207 if (reg_ebx & BIT(5)) flags |= HAS_AVX2; in x86_simd_caps()
|
/external/llvm/test/Instrumentation/SanitizerCoverage/ |
D | coverage.ll | 9 …r-coverage-level=3 -sanitizer-coverage-8bit-counters=1 -S | FileCheck %s --check-prefix=CHECK-8BIT 85 ; CHECK-8BIT-LABEL: define void @foo 87 ; CHECK-8BIT: [[V11:%[0-9]*]] = load i8{{.*}}!nosanitize 88 ; CHECK-8BIT: [[V12:%[0-9]*]] = add i8 [[V11]], 1 89 ; CHECK-8BIT: store i8 [[V12]]{{.*}}!nosanitize 90 ; CHECK-8BIT: [[V21:%[0-9]*]] = load i8{{.*}}!nosanitize 91 ; CHECK-8BIT: [[V22:%[0-9]*]] = add i8 [[V21]], 1 92 ; CHECK-8BIT: store i8 [[V22]]{{.*}}!nosanitize 93 ; CHECK-8BIT: [[V31:%[0-9]*]] = load i8{{.*}}!nosanitize 94 ; CHECK-8BIT: [[V32:%[0-9]*]] = add i8 [[V31]], 1 [all …]
|
/external/webp/src/enc/ |
D | iterator.c | 228 #define BIT(nz, n) (!!((nz) & (1 << (n)))) macro 236 top_nz[0] = BIT(tnz, 12); in VP8IteratorNzToBytes() 237 top_nz[1] = BIT(tnz, 13); in VP8IteratorNzToBytes() 238 top_nz[2] = BIT(tnz, 14); in VP8IteratorNzToBytes() 239 top_nz[3] = BIT(tnz, 15); in VP8IteratorNzToBytes() 241 top_nz[4] = BIT(tnz, 18); in VP8IteratorNzToBytes() 242 top_nz[5] = BIT(tnz, 19); in VP8IteratorNzToBytes() 244 top_nz[6] = BIT(tnz, 22); in VP8IteratorNzToBytes() 245 top_nz[7] = BIT(tnz, 23); in VP8IteratorNzToBytes() 247 top_nz[8] = BIT(tnz, 24); in VP8IteratorNzToBytes() [all …]
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_i.h | 96 #define P2P_DEV_PROBE_REQ_ONLY BIT(0) 97 #define P2P_DEV_REPORTED BIT(1) 98 #define P2P_DEV_NOT_YET_READY BIT(2) 99 #define P2P_DEV_PD_PEER_DISPLAY BIT(5) 100 #define P2P_DEV_PD_PEER_KEYPAD BIT(6) 101 #define P2P_DEV_USER_REJECTED BIT(7) 102 #define P2P_DEV_PEER_WAITING_RESPONSE BIT(8) 103 #define P2P_DEV_PREFER_PERSISTENT_GROUP BIT(9) 104 #define P2P_DEV_WAIT_GO_NEG_RESPONSE BIT(10) 105 #define P2P_DEV_WAIT_GO_NEG_CONFIRM BIT(11) [all …]
|
/external/wpa_supplicant_8/src/eapol_auth/ |
D | eapol_auth_sm.h | 12 #define EAPOL_SM_PREAUTH BIT(0) 13 #define EAPOL_SM_WAIT_START BIT(1) 14 #define EAPOL_SM_USES_WPA BIT(2) 15 #define EAPOL_SM_FROM_PMKSA_CACHE BIT(3)
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver.h | 120 #define HOSTAPD_MODE_FLAG_HT_INFO_KNOWN BIT(0) 121 #define HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN BIT(1) 198 #define WPA_SCAN_QUAL_INVALID BIT(0) 199 #define WPA_SCAN_NOISE_INVALID BIT(1) 200 #define WPA_SCAN_LEVEL_INVALID BIT(2) 201 #define WPA_SCAN_LEVEL_DBM BIT(3) 202 #define WPA_SCAN_ASSOCIATED BIT(5) 1430 #define WPA_STA_AUTHORIZED BIT(0) 1431 #define WPA_STA_WMM BIT(1) 1432 #define WPA_STA_SHORT_PREAMBLE BIT(2) [all …]
|
/external/libunwind/tests/ |
D | Gia64-test-nat.c | 505 # define BIT(n) ((unw_word_t) 1 << (n)) in check_pr() macro 506 # define DONTCARE (BIT( 6) | BIT( 7) | BIT( 8) | BIT( 9) | BIT(10) \ in check_pr() 507 | BIT(11) | BIT(12) | BIT(13) | BIT(14) | BIT(15)) in check_pr()
|
/external/ppp/pppd/ |
D | ipxcp.c | 226 #define BIT(num) (1 << (num)) macro 238 if (internal & BIT(IPX_NONE) ) 572 ao->router |= BIT(RIP_SAP); 573 wo->router |= BIT(RIP_SAP); 826 s = BIT(s); 854 try.router &= (ao->router | BIT(IPX_NONE)); 856 try.router = BIT(IPX_NONE); 1154 wo->router = BIT(IPX_NONE); 1158 (ho->router & BIT(IPX_NONE))) { 1163 cishort = BIT(cishort); [all …]
|
/external/wpa_supplicant_8/src/utils/ |
D | bitfield.c | 44 bf->bits[bit / 8] |= BIT(bit % 8); in bitfield_set() 52 bf->bits[bit / 8] &= ~BIT(bit % 8); in bitfield_clear() 60 return !!(bf->bits[bit / 8] & BIT(bit % 8)); in bitfield_is_set()
|
/external/lzma/ |
D | 7zFormat.txt | 210 BIT Defined 380 BIT IsEmptyStream 384 BIT IsEmptyFile 388 BIT IsAntiFile 397 BIT TimeDefined 424 BIT AttributesAreDefined
|
/external/wpa_supplicant_8/src/eapol_supp/ |
D | eapol_supp_sm.h | 31 #define EAPOL_REQUIRE_KEY_UNICAST BIT(0) 32 #define EAPOL_REQUIRE_KEY_BROADCAST BIT(1) 62 #define EAPOL_LOCAL_WPS_IN_USE BIT(0) 63 #define EAPOL_PEER_IS_WPS20_AP BIT(1)
|