Home
last modified time | relevance | path

Searched refs:keyBits (Results 1 - 10 of 10) sorted by relevance

/third_party/glfw/src/
H A Dlinux_joystick.c143 char keyBits[(KEY_CNT + 7) / 8] = {0}; in openJoystickDevice() local
148 ioctl(linjs.fd, EVIOCGBIT(EV_KEY, sizeof(keyBits)), keyBits) < 0 || in openJoystickDevice()
195 if (!isBitSet(code, keyBits)) in openJoystickDevice()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUResourceBundleReader.java1253 int keyBits = maxOffsetBits + 2; // +2 for mini type: at most 30 bits used in a key in ResourceCache()
1255 if(keyBits <= ROOT_BITS) { in ResourceCache()
1256 levelBitsList = keyBits; in ResourceCache()
1257 } else if(keyBits < (ROOT_BITS + 3)) { in ResourceCache()
1258 levelBitsList = 0x30 | (keyBits - 3); in ResourceCache()
1261 keyBits -= ROOT_BITS; in ResourceCache()
1264 if(keyBits <= NEXT_BITS) { in ResourceCache()
1265 levelBitsList |= keyBits << shift; in ResourceCache()
1267 } else if(keyBits < (NEXT_BITS + 3)) { in ResourceCache()
1268 levelBitsList |= (0x30 | (keyBits in ResourceCache()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DICUResourceBundleReader.java1255 int keyBits = maxOffsetBits + 2; // +2 for mini type: at most 30 bits used in a key in ResourceCache()
1257 if(keyBits <= ROOT_BITS) { in ResourceCache()
1258 levelBitsList = keyBits; in ResourceCache()
1259 } else if(keyBits < (ROOT_BITS + 3)) { in ResourceCache()
1260 levelBitsList = 0x30 | (keyBits - 3); in ResourceCache()
1263 keyBits -= ROOT_BITS; in ResourceCache()
1266 if(keyBits <= NEXT_BITS) { in ResourceCache()
1267 levelBitsList |= keyBits << shift; in ResourceCache()
1269 } else if(keyBits < (NEXT_BITS + 3)) { in ResourceCache()
1270 levelBitsList |= (0x30 | (keyBits in ResourceCache()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Daes-internal-dec.c28 static int rijndaelKeySetupDec(u32 rk[], const u8 cipherKey[], int keyBits) in rijndaelKeySetupDec() argument
34 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits); in rijndaelKeySetupDec()
H A Daes_i.h123 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits);
H A Daes-internal.c779 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits) in rijndaelKeySetupEnc() argument
789 if (keyBits == 128) { in rijndaelKeySetupEnc()
805 if (keyBits == 192) { in rijndaelKeySetupEnc()
824 if (keyBits == 256) { in rijndaelKeySetupEnc()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Daes-internal-dec.c28 static int rijndaelKeySetupDec(u32 rk[], const u8 cipherKey[], int keyBits) in rijndaelKeySetupDec() argument
34 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits); in rijndaelKeySetupDec()
H A Daes_i.h123 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits);
H A Daes-internal.c779 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits) in rijndaelKeySetupEnc() argument
789 if (keyBits == 128) { in rijndaelKeySetupEnc()
805 if (keyBits == 192) { in rijndaelKeySetupEnc()
824 if (keyBits == 256) { in rijndaelKeySetupEnc()
/third_party/FreeBSD/sys/crypto/rijndael/
H A Drijndael-alg-fst.c733 int rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits) { in rijndaelKeySetupEnc() argument
737 KASSERT(keyBits == 128 || keyBits == 192 || keyBits == 256, in rijndaelKeySetupEnc()
738 ("Invalid key size (%d).", keyBits)); in rijndaelKeySetupEnc()
743 if (keyBits == 128) { in rijndaelKeySetupEnc()
763 if (keyBits == 192) { in rijndaelKeySetupEnc()
785 if (keyBits == 256) { in rijndaelKeySetupEnc()
821 int rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits) { in rijndaelKeySetupDec() argument
826 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits); in rijndaelKeySetupDec()
[all...]

Completed in 12 milliseconds