HomeSort by relevance Sort by last modified time
    Searched defs:BIT (Results 1 - 25 of 26) sorted by null

1 2

  /external/wpa_supplicant/
hostapd.h 28 #ifndef BIT
29 #define BIT(n) (1 << (n))
32 #define HOSTAPD_MODULE_IEEE80211 BIT(0)
33 #define HOSTAPD_MODULE_IEEE8021X BIT(1)
34 #define HOSTAPD_MODULE_RADIUS BIT(2)
35 #define HOSTAPD_MODULE_WPA BIT(3)
36 #define HOSTAPD_MODULE_DRIVER BIT(4)
37 #define HOSTAPD_MODULE_IAPP BIT(5)
wpa.h 21 #ifndef BIT
22 #define BIT(n) (1 << (n))
25 #define WPA_CAPABILITY_PREAUTH BIT(0)
26 #define WPA_CAPABILITY_MGMT_FRAME_PROTECTION BIT(6)
27 #define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9)
config_ssid.h 18 #ifndef BIT
19 #define BIT(n) (1 << (n))
22 #define WPA_CIPHER_NONE BIT(0)
23 #define WPA_CIPHER_WEP40 BIT(1)
24 #define WPA_CIPHER_WEP104 BIT(2)
25 #define WPA_CIPHER_TKIP BIT(3)
26 #define WPA_CIPHER_CCMP BIT(4)
28 #define WPA_CIPHER_AES_128_CMAC BIT(5)
31 #define WPA_KEY_MGMT_IEEE8021X BIT(0)
32 #define WPA_KEY_MGMT_PSK BIT(1
    [all...]
  /external/webkit/Source/WebCore/platform/
Arena.cpp 69 #define BIT(n) ((unsigned int)1 << (n))
70 #define BITMASK(n) (BIT(n) - 1)
  /external/ipsec-tools/src/racoon/
vendorid.h 37 #ifndef BIT
38 #define BIT(x) (1 << (x))
54 #define VENDORID_GSSAPI_MASK (BIT(VENDORID_GSSAPI_LONG) | \
55 BIT(VENDORID_GSSAPI) | \
56 BIT(VENDORID_MS_NT5))
  /external/libvpx/vpx_ports/
x86.h 78 #ifndef BIT
79 #define BIT(n) (1<<n)
111 if (reg_edx & BIT(23)) flags |= HAS_MMX;
113 if (reg_edx & BIT(25)) flags |= HAS_SSE; /* aka xmm */
115 if (reg_edx & BIT(26)) flags |= HAS_SSE2; /* aka wmt */
117 if (reg_ecx & BIT(0)) flags |= HAS_SSE3;
119 if (reg_ecx & BIT(9)) flags |= HAS_SSSE3;
121 if (reg_ecx & BIT(19)) flags |= HAS_SSE4_1;
  /external/webp/src/enc/
iterator.c 177 #define BIT(nz, n) (!!((nz) & (1 << (n))))
183 it->top_nz_[0] = BIT(tnz, 12);
184 it->top_nz_[1] = BIT(tnz, 13);
185 it->top_nz_[2] = BIT(tnz, 14);
186 it->top_nz_[3] = BIT(tnz, 15);
188 it->top_nz_[4] = BIT(tnz, 18);
189 it->top_nz_[5] = BIT(tnz, 19);
191 it->top_nz_[6] = BIT(tnz, 22);
192 it->top_nz_[7] = BIT(tnz, 23);
194 it->top_nz_[8] = BIT(tnz, 24)
    [all...]
  /libcore/luni/src/main/java/java/sql/
Types.java 49 * The type code that identifies the SQL type {@code BIT}.
51 public static final int BIT = -7;
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
3dfx_regs.h 65 #define BIT(x) (1UL << (x))
71 #define COMMAND_2D_INITIATE BIT(8)
72 #define COMMAND_2D_REVERSELINE BIT(9)
73 #define COMMAND_2D_STIPPLELINE BIT(12)
74 #define COMMAND_2D_MONOCHROME_PATT BIT(13)
75 #define COMMAND_2D_MONOCHROME_TRANSP BIT(16)
79 #define STATUS_RETRACE BIT(6)
80 #define STATUS_BUSY BIT(9)
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
common.h 130 * TODO: 64-bit variable not available. Using long as a workaround to test the
389 #ifndef BIT
390 #define BIT(x) (1 << (x))
  /external/wpa_supplicant_8/src/utils/
common.h 130 * TODO: 64-bit variable not available. Using long as a workaround to test the
416 #ifndef BIT
417 #define BIT(x) (1 << (x))
  /external/tcpdump/
print-802_11.c 962 /* There may be a problem w/ AP not having this bit set */
1006 print_radiotap_field(struct cpack_state *s, u_int32_t bit, int *pad)
1018 switch (bit) {
1055 /* this bit indicates a field whose
1059 printf("[0x%08x] ", bit);
1068 switch (bit) {
1134 #define BIT(n) (1 << n)
1136 (EXTRACT_LE_32BITS(__p) & BIT(IEEE80211_RADIOTAP_EXT)) != 0
1142 enum ieee80211_radiotap_type bit; local
1186 /* clear the least significant bit that is set *
    [all...]
  /external/ppp/pppd/
ipxcp.c 225 /* Used to generate the proper bit mask */
226 #define BIT(num) (1 << (num))
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);
941 #define REJCIPROTO(opt, neg, val, bit) \
1154 wo->router = BIT(IPX_NONE)
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 271 There are a few helper macros to make the coding process a bit easier. The first set are related to loading and storing
272 32/64-bit words in little/big endian format. The macros are:
296 There are 32 and 64-bit cyclic rotations as well:
377 /* make a 1024-bit RSA key with the system RNG */
394 lower eight bits contain data. For example, if you want to pass a 256 bit key to a symmetric ciphers setup routine, you
398 For the purposes of this library, the term \textit{byte} will refer to an octet or eight bit word. Typically an array of
546 keys (mainly for test vectors anyways). Ideally, your application should be making at least 256 bit keys. This is not
550 were $0.25$ (a severe bias) a 256-bit string would have about 106 bits of entropy whereas a 128-bit string would have
    [all...]
  /external/mksh/src/
sh.h 352 #define BIT(i) (1 << (i)) /* define bit in flag */
371 * not a char that is used often. Also, can't use the high bit as it causes
552 #define EF_FUNC_PARSE BIT(0) /* function being parsed */
553 #define EF_BRKCONT_PASS BIT(1) /* set if E_LOOP must pass break/continue on */
554 #define EF_FAKE_SIGDIE BIT(2) /* hack to get info from unwind to quitenv */
675 #define TF_SHELL_USES BIT(0) /* shell uses signal, user can't change */
676 #define TF_USER_SET BIT(1) /* user has (tried to) set trap */
677 #define TF_ORIG_IGN BIT(2) /* original action was SIG_IGN */
678 #define TF_ORIG_DFL BIT(3) /* original action was SIG_DFL *
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 252 milliseconds

1 2