Home
last modified time | relevance | path

Searched refs:dna (Results 1 – 20 of 20) sorted by relevance

/third_party/openssl/crypto/bn/
Dbn_mul.c176 int dna, int dnb, BN_ULONG *t) in bn_mul_recursive() argument
179 int tna = n + dna, tnb = n + dnb; in bn_mul_recursive()
194 if (n2 == 8 && dna == 0 && dnb == 0) { in bn_mul_recursive()
201 bn_mul_normal(r, a, n2 + dna, b, n2 + dnb); in bn_mul_recursive()
202 if ((dna + dnb) < 0) in bn_mul_recursive()
203 memset(&r[2 * n2 + dna + dnb], 0, in bn_mul_recursive()
204 sizeof(BN_ULONG) * -(dna + dnb)); in bn_mul_recursive()
244 if (n == 4 && dna == 0 && dnb == 0) { /* XXX: bn_mul_comba4 could take in bn_mul_recursive()
253 } else if (n == 8 && dna == 0 && dnb == 0) { /* XXX: bn_mul_comba8 could in bn_mul_recursive()
272 bn_mul_recursive(&(r[n2]), &(a[n]), &(b[n]), n, dna, dnb, p); in bn_mul_recursive()
DREADME.pod39 int dna, int dnb, BN_ULONG *tmp);
165 bn_mul_recursive(B<r>, B<a>, B<b>, B<n2>, B<dna>, B<dnb>, B<t>) operates
166 on the word arrays B<a> and B<b> of length B<n2>+B<dna> and B<n2>+B<dnb>
167 (B<dna> and B<dnb> are currently allowed to be 0 or negative) and the 2*B<n2>
Dbn_local.h655 int dna, int dnb, BN_ULONG *t);
/third_party/boost/libs/date_time/example/local_time/
Dseconds_since_epoch.cpp27 }catch(const data_not_accessible& dna) { in main() local
28 std::cerr << "Error with time zone data file: " << dna.what() << std::endl; in main()
Dlocal_date_time.cpp15 }catch(data_not_accessible dna) { in main() local
16 std::cerr << "Error with time zone data file: " << dna.what() << std::endl; in main()
Dflight.cpp25 }catch(const data_not_accessible& dna) { in main() local
26 std::cerr << "Error with time zone data file: " << dna.what() << std::endl; in main()
/third_party/e2fsprogs/po/
Dpl.po547 msgstr "błędna mapa i-węzłów"
1373 msgstr "@B @bów grupy %g (%b) jest błędna. "
1378 msgstr "@B i-węzłów grupy %g (%b) jest błędna. "
1670 msgstr "@b rozszerzonych atrybutów %b jest uszkodzony (błędna nazwa). "
1675 msgstr "@b rozszerzonych atrybutów %b jest uszkodzony (błędna wartość). "
1815 "\t(@b logiczny %c, @b fizyczny %b, błędna długość %N)\n"
2939 msgstr "Błędna liczba wolnych i-węzłów dla grupy #%g (%i, naliczono %j).\n"
2944 msgstr "Błędna liczba katalogów dla grupy #%g (%i, naliczono %j).\n"
2949 msgstr "Błędna liczba wolnych i-węzłów (%i, naliczono %j).\n"
2954 msgstr "Błędna liczba wolnych @bów dla grupy #%g (%b, naliczono %c).\n"
[all …]
/third_party/popt/po/
Dpl.po53 msgstr "błędna wartość liczbowa"
/third_party/gettext/gettext-tools/po/
Dpl.po151 msgstr "%s: błędna opcja -- „%c”\n"
607 msgstr "W dyrektywie numer %u jest błędna specyfikacja dokładności."
759 msgstr "W dyrektywie numer %u jest błędna specyfikacja dokładności."
765 msgstr "W dyrektywie numer %u jest błędna specyfikacja dokładności."
1225 msgstr "błędna wartośc atrybutu „%s” dla „%s”"
2173 msgstr "błędna endianness: %s"
3079 msgstr "błędna wartość nplurals"
3623 msgstr "błędna sekwencja wielobajtowa"
3647 msgstr "błędna sekwencja sterująca"
3692 msgstr "błędna niepusta linia"
[all …]
/third_party/gettext/gettext-runtime/po/
Dpl.po59 msgstr "%s: błędna opcja -- „%c”\n"
/third_party/python/Lib/test/
Dmime.types318 application/vnd.dna dna
/third_party/glib/po/
Dpl.po1390 msgstr "Błędna liczba elementów (%d) w kodowaniu GEmblem"
1400 msgstr "Błędna liczba elementów (%d) w kodowaniu GEmblemedIcon"
1529 msgstr "Błędna odpowiedź pośrednika HTTP"
1559 msgstr "Błędna liczba elementów (%d)"
5616 msgstr "błędna liczba lub nazwa za (?("
5675 msgstr "błędna sekwencja \\P lub \\p"
/third_party/gstreamer/gstreamer/po/
Dpl.po951 msgstr "Konstrukcja potoku błędna, proszę dodać kolejki."
/third_party/libexif/po/
Dpl.po32 msgstr "Błędna liczba składowych (%i, a oczekiwano %i)."
39 msgstr "Błędna liczba składowych (%i, a oczekiwano %i lub %i)."
/third_party/mindspore/tests/ut/data/mindrecord/testAclImdbData/
Dvocab.txt6065 dna
28912 ##dna
/third_party/skia/third_party/externals/icu/source/data/misc/
DsupplementalData.txt5320 "dna",
/third_party/icu/icu4c/source/data/misc/
DsupplementalData.txt5320 "dna",
/third_party/flutter/skia/third_party/externals/icu/source/data/misc/
DsupplementalData.txt5124 "dna",
/third_party/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt21387 脫氧核糖核酸 < dna;
21658 脫氧核糖核酸 > dna;
/third_party/openssl/
DCHANGES7792 *) Check the values of dna and dnb in bn_mul_recursive before calling