Home
last modified time | relevance | path

Searched refs:kl (Results 1 – 25 of 564) sorted by relevance

12345678910>>...23

/third_party/openssl/crypto/evp/
Dp5_crpt.c31 int i, ivl, kl; in PKCS5_PBE_keyivgen() local
57 kl = EVP_CIPHER_key_length(cipher); in PKCS5_PBE_keyivgen()
58 if (kl < 0 || kl > (int)sizeof(md_tmp)) { in PKCS5_PBE_keyivgen()
103 memcpy(key, md_tmp, kl); in PKCS5_PBE_keyivgen()
/third_party/mindspore/mindspore/nn/probability/bnn_layers/
Dconv_variational.py125 kl = self.weight_prior("kl_loss", weight_type, *weight_args_list)
126 kl_loss = self.sum(kl)
131 kl = self.bias_prior("kl_loss", bias_type, *bias_args_list)
132 kl = self.sum(kl)
133 kl_loss += kl
Ddense_variational.py102 kl = self.weight_prior("kl_loss", weight_type, *weight_args_list)
103 kl_loss = self.sum(kl)
108 kl = self.bias_prior("kl_loss", bias_type, *bias_args_list)
109 kl = self.sum(kl)
110 kl_loss += kl
/third_party/boost/libs/numeric/ublas/test/
Dtest_banded_storage_layout.cpp56 int kl = 2; in test_band_storage() local
59 banded_matrix< int, Orientation > test_matrix( m, n, kl, ku ); in test_band_storage()
111 int kl = 2; in test_band_storage_6_by_5() local
115 banded_matrix< int, Orientation > test_matrix( m, n, kl, ku ); in test_band_storage_6_by_5()
169 int kl = 2; in test_band_storage_5_by_6() local
172 banded_matrix< int, Orientation > test_matrix( m, n, kl, ku ); in test_band_storage_5_by_6()
/third_party/pulseaudio/src/pulsecore/
Dproplist-util.c120 size_t kl, skip; in pa_init_proplist() local
132 kl = strcspn(*e+skip, "="); in pa_init_proplist()
134 if ((*e)[skip+kl] != '=') in pa_init_proplist()
137 k = pa_xstrndup(*e+skip, kl); in pa_init_proplist()
141 pa_proplist_sets(p, k, *e+skip+kl+1); in pa_init_proplist()
/third_party/musl/src/crypt/
Dcrypt_des.c729 uint32_t kl, kr; in __des_setkey() local
736 kl = kr = 0; in __des_setkey()
739 kl |= comp_maskl0[i][(t0 >> ibit) & 7]; in __des_setkey()
742 kl |= comp_maskl1[i][(t0 >> ibit) & 0xf]; in __des_setkey()
746 ekey->l[round] = kl; in __des_setkey()
779 const uint32_t *kl = ekey->l; in __do_des() local
803 r48l ^= f ^ *kl++; in __do_des()
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/
Dkl.txt3 kl{
5 kl{"kalaallisut"}
/third_party/skia/third_party/externals/icu/source/data/lang/
Dkl.txt4 kl{
6 kl{"kalaallisut"}
/third_party/icu/icu4c/source/data/lang/
Dkl.txt4 kl{
6 kl{"kalaallisut"}
/third_party/flutter/skia/third_party/externals/icu/source/data/coll/
Dkl.txt3 kl{
9 "[import kl-u-co-standard]"
/third_party/skia/third_party/externals/icu/source/data/coll/
Dkl.txt4 kl{
9 "[import kl-u-co-standard]"
/third_party/icu/icu4c/source/data/coll/
Dkl.txt4 kl{
9 "[import kl-u-co-standard]"
/third_party/mindspore/tests/ut/python/nn/probability/distribution/
Dtest_logistic.py124 kl = self.logistic.kl_loss('Logistic', mu, s)
125 return kl
165 kl = KL()
166 ans = kl(mu, s)
/third_party/icu/icu4j/main/tests/packaging/src/com/ibm/icu/dev/test/
DTestLocaleNamePackaging.java198 ULocale kl = new ULocale("@collation=phonebook"); in testLocaleDisplayNameWithKeywords() local
203 String result = dn.localeDisplayName(kl); in testLocaleDisplayNameWithKeywords()
204 assertEquals(kl + " in " + displayLocale, expected[n++], result); in testLocaleDisplayNameWithKeywords()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
DTestLocaleNamePackaging.java201 ULocale kl = new ULocale("@collation=phonebook"); in testLocaleDisplayNameWithKeywords() local
206 String result = dn.localeDisplayName(kl); in testLocaleDisplayNameWithKeywords()
207 assertEquals(kl + " in " + displayLocale, expected[n++], result); in testLocaleDisplayNameWithKeywords()
/third_party/mindspore/mindspore/nn/probability/distribution/
Duniform.py299 kl = self.log(high_b - low_b) - self.log(high_a - low_a)
302 inf = self.fill(self.dtypeop(kl), self.shape(kl), np.inf)
303 return self.select(comp, kl, inf)
/third_party/openssl/crypto/cms/
Dcms_asn1.c386 unsigned char kl[4]; variable
390 kl[0] = (keylen >> 24) & 0xff;
391 kl[1] = (keylen >> 16) & 0xff;
392 kl[2] = (keylen >> 8) & 0xff;
393 kl[3] = keylen & 0xff;
395 oklen.data = kl;
/third_party/mindspore/mindspore/compression/quant/
Dquant_utils.py249 kl = []
272 kl = np.concatenate((kl, [kl_tmp]))
273 th_layer_out = threshold[np.argmin(kl)]
/third_party/libwebsockets/lib/misc/cache-ttl/
Dheap.c329 size_t kl = strlen(specific_key); in lws_cache_heap_write() local
383 lws_malloc(sizeof(*item) + kl + 1u + size, __func__); in lws_cache_heap_write()
401 memcpy(p + size, specific_key, kl + 1); in lws_cache_heap_write()
404 item->key_len = kl; in lws_cache_heap_write()
/third_party/flutter/skia/third_party/externals/icu/source/data/zone/
Dkl.txt3 kl{
/third_party/flutter/skia/third_party/externals/icu/source/data/region/
Dkl.txt3 kl{
/third_party/icu/icu4c/source/data/zone/
Dkl.txt4 kl{
/third_party/skia/third_party/externals/icu/source/data/zone/
Dkl.txt4 kl{
/third_party/flutter/skia/third_party/externals/icu/source/data/curr/
Dkl.txt3 kl{
/third_party/skia/third_party/externals/icu/source/data/region/
Dkl.txt4 kl{

12345678910>>...23