Home
last modified time | relevance | path

Searched refs:KC (Results 1 - 15 of 15) sorted by relevance

/third_party/node/deps/openssl/openssl/crypto/seed/
H A Dseed_local.h57 # define KEYSCHEDULE_UPDATE0(T0, T1, X1, X2, X3, X4, KC) \
61 (T0) = ((X1) + (X3) - (KC)) & 0xffffffff; \
62 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
64 # define KEYSCHEDULE_UPDATE1(T0, T1, X1, X2, X3, X4, KC) \
68 (T0) = ((X1) + (X3) - (KC)) & 0xffffffff; \
69 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
H A Dseed.c440 static const seed_word KC[] = { variable
496 KEYSCHEDULE_UPDATE0(t0, t1, x1, x2, x3, x4, KC[i]); in SEED_set_key()
498 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC[i + 1]); in SEED_set_key()
/third_party/openssl/crypto/seed/
H A Dseed_local.h57 # define KEYSCHEDULE_UPDATE0(T0, T1, X1, X2, X3, X4, KC) \
61 (T0) = ((X1) + (X3) - (KC)) & 0xffffffff; \
62 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
64 # define KEYSCHEDULE_UPDATE1(T0, T1, X1, X2, X3, X4, KC) \
68 (T0) = ((X1) + (X3) - (KC)) & 0xffffffff; \
69 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
H A Dseed.c440 static const seed_word KC[] = { variable
496 KEYSCHEDULE_UPDATE0(t0, t1, x1, x2, x3, x4, KC[i]); in SEED_set_key()
498 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC[i + 1]); in SEED_set_key()
/third_party/mbedtls/library/
H A Dcamellia.c234 TK[0] = KC[(OFFSET) * 4 + 0]; \
235 TK[1] = KC[(OFFSET) * 4 + 1]; \
236 TK[2] = KC[(OFFSET) * 4 + 2]; \
237 TK[3] = KC[(OFFSET) * 4 + 3]; \
300 uint32_t KC[16]; in mbedtls_camellia_setkey_enc() local
334 * Key storage in KC in mbedtls_camellia_setkey_enc()
337 memset(KC, 0, sizeof(KC)); in mbedtls_camellia_setkey_enc()
341 KC[i] = MBEDTLS_GET_UINT32_BE(t, i * 4); in mbedtls_camellia_setkey_enc()
346 KC[ in mbedtls_camellia_setkey_enc()
[all...]
/third_party/ffmpeg/libavutil/
H A Daes.c203 int KC = key_bits >> 5; in av_aes_init() local
204 int rounds = KC + 6; in av_aes_init()
237 memcpy(tk, key, KC * 4); in av_aes_init()
238 memcpy(a->round_key[0].u8, key, KC * 4); in av_aes_init()
240 for (t = KC * 4; t < (rounds + 1) * 16; t += KC * 4) { in av_aes_init()
242 tk[0][i] ^= sbox[tk[KC - 1][(i + 1) & 3]]; in av_aes_init()
245 for (j = 1; j < KC; j++) { in av_aes_init()
246 if (KC != 8 || j != KC >> in av_aes_init()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp606 if (Constant *KC = getKnownConstant(V, Preference)) { in ComputeValueKnownInPredecessorsImpl()
608 Result.push_back(std::make_pair(KC, Pred)); in ComputeValueKnownInPredecessorsImpl()
639 if (Constant *KC = getKnownConstant(PredCst, Preference)) in ComputeValueKnownInPredecessorsImpl()
640 Result.push_back(std::make_pair(KC, P)); in ComputeValueKnownInPredecessorsImpl()
654 if (Constant *KC = getKnownConstant(InVal, Preference)) { in ComputeValueKnownInPredecessorsImpl()
655 Result.push_back(std::make_pair(KC, PN->getIncomingBlock(i))); in ComputeValueKnownInPredecessorsImpl()
660 if (Constant *KC = getKnownConstant(CI, Preference)) in ComputeValueKnownInPredecessorsImpl()
661 Result.push_back(std::make_pair(KC, PN->getIncomingBlock(i))); in ComputeValueKnownInPredecessorsImpl()
759 if (Constant *KC = getKnownConstant(Folded, WantInteger)) in ComputeValueKnownInPredecessorsImpl()
760 Result.push_back(std::make_pair(KC, LHSVa in ComputeValueKnownInPredecessorsImpl()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java19 * Implements Unicode Normalization Forms C, D, KC, KD.<br>
51 KC = (byte)(COMPATIBILITY_MASK + COMPOSITION_MASK); field in UnicodeNormalizer
H A DNormalizationMonkeyTest.java48 unicode_NFKC = new UnicodeNormalizer(UnicodeNormalizer.KC, true); in TestNormalize()
H A DUnicodeNormalizerConformanceTest.java39 normalizer_KC = new UnicodeNormalizer(UnicodeNormalizer.KC, false); in UnicodeNormalizerConformanceTest()
166 pass &= assertEqual("KC", field[i], out, field[3], "c4!=KC(c" + (i+1)); in checkConformance()
181 * @param op name of normalization form, e.g., "KC"
H A DBasicTest.java2363 static final int D = 0, C = 1, KD= 2, KC = 3, FCD=4, NONE=5; field in BasicTest
2369 skipSets[KC].applyPattern("[[:NFKC_QC=Yes:]&[:ccc=0:]-[:HST=LV:]]", false); in initSkippables()
2411 skipSets[KC].remove(c); in initSkippables()
2422 "D", "C", "KD", "KC"
2445 skipSets[KC].applyPattern("[:NFKC_Inert:]"); in TestSkippable()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DNormalizationMonkeyTest.java45 unicode_NFKC = new UnicodeNormalizer(UnicodeNormalizer.KC, true); in TestNormalize()
H A DUnicodeNormalizer.java17 * Implements Unicode Normalization Forms C, D, KC, KD.<br>
48 KC = (byte)(COMPATIBILITY_MASK + COMPOSITION_MASK); field in UnicodeNormalizer
H A DUnicodeNormalizerConformanceTest.java36 normalizer_KC = new UnicodeNormalizer(UnicodeNormalizer.KC, false); in UnicodeNormalizerConformanceTest()
163 pass &= assertEqual("KC", field[i], out, field[3], "c4!=KC(c" + (i+1)); in checkConformance()
178 * @param op name of normalization form, e.g., "KC"
H A DBasicTest.java2360 static final int D = 0, C = 1, KD= 2, KC = 3, FCD=4, NONE=5; field in BasicTest
2366 skipSets[KC].applyPattern("[[:NFKC_QC=Yes:]&[:ccc=0:]-[:HST=LV:]]", false); in initSkippables()
2408 skipSets[KC].remove(c); in initSkippables()
2419 "D", "C", "KD", "KC"
2442 skipSets[KC].applyPattern("[:NFKC_Inert:]"); in TestSkippable()

Completed in 18 milliseconds