/third_party/openssl/crypto/bn/asm/ |
D | vis3-mont.pl | 45 ($n0,$m0,$m1,$lo0,$hi0, $lo1,$hi1,$aj,$alo,$nj,$nlo,$tj)= 110 sllx $t1, 32, $aj 112 or $t0, $aj, $aj 114 stx $aj, [$anp] ! converted ap[0] 116 mulx $aj, $m0, $lo0 ! ap[0]*bp[0] 117 umulxhi $aj, $m0, $hi0 120 sllx $t3, 32, $aj 122 or $t2, $aj, $aj 132 stx $aj, [$anp+16] ! converted ap[1] 134 mulx $aj, $m0, $alo ! ap[1]*bp[0] [all …]
|
D | alpha-mont.pl | 40 $aj="t4"; 90 ldq $aj,8($ap) 111 mulq $aj,$bi,$alo 113 umulh $aj,$bi,$ahi 117 s8addq $j,$ap,$aj 123 ldq $aj,0($aj) 129 mulq $aj,$bi,$alo 138 umulh $aj,$bi,$ahi 141 s8addq $j,$ap,$aj 177 ldq $aj,8($ap) [all …]
|
D | sparct4-mont.pl | 669 ($n0,$m0,$m1,$lo0,$hi0, $lo1,$hi1,$aj,$alo,$nj,$nlo,$tj)= 715 ldx [$ap+0], $aj ! ap[0] 717 mulx $aj, $m0, $lo0 ! ap[0]*bp[0] 718 umulxhi $aj, $m0, $hi0 720 ldx [$ap+8], $aj ! ap[1] 726 mulx $aj, $m0, $alo ! ap[1]*bp[0] 727 umulxhi $aj, $m0, $aj ! ahi=aj 747 addxc $aj, %g0, $hi0 749 ldx [$ap+0], $aj ! ap[j] 755 mulx $aj, $m0, $alo ! ap[j]*bp[0] [all …]
|
D | mips-mont.pl | 108 $aj=$s0; 179 $LD $aj,0($ap) # ap[0] 188 $MULTU ($aj,$bi) 191 mflo ($lo0,$aj,$bi) 192 mfhi ($hi0,$aj,$bi) 215 $PTR_ADD $aj,$ap,$j 217 $LD $aj,($aj) 220 $MULTU ($aj,$bi) 227 mflo ($alo,$aj,$bi) 228 mfhi ($ahi,$aj,$bi) [all …]
|
D | armv4-mont.pl | 77 $aj="r5"; 159 ldr $aj,[$ap],#4 @ ap[0],ap++ 164 umull $alo,$ahi,$aj,$bi @ ap[0]*bp[0] 172 ldr $aj,[$ap],#4 @ ap[j],ap++ 176 umlal $alo,$ahi,$aj,$bi @ ap[j]*bp[0] 199 ldr $aj,[$ap,#-4] @ ap[0] 205 umlal $alo,$ahi,$aj,$bi @ ap[0]*bp[i]+tp[0] 213 ldr $aj,[$ap],#4 @ ap[j],ap++ 217 umlal $alo,$ahi,$aj,$bi @ ap[j]*bp[i] 247 mov $aj,sp [all …]
|
D | armv8-mont.pl | 54 ($lo0,$hi0,$aj,$m0,$alo,$ahi, 86 ldp $hi0,$aj,[$ap],#16 // ap[0..1] 95 mul $alo,$aj,$m0 // ap[1]*bp[0] 96 umulh $ahi,$aj,$m0 120 ldr $aj,[$ap],#8 127 mul $alo,$aj,$m0 // ap[j]*bp[0] 129 umulh $ahi,$aj,$m0 156 ldp $hi0,$aj,[$ap],#16 164 mul $alo,$aj,$m0 // ap[1]*bp[i] 166 umulh $ahi,$aj,$m0 [all …]
|
D | ppc-mont.pl | 111 my $aj="r10"; 172 $LD $aj,0($ap) ; ap[0] 174 $UMULL $lo0,$aj,$m0 ; ap[0]*bp[0] 175 $UMULH $hi0,$aj,$m0 177 $LD $aj,$BNSZ($ap) ; ap[1] 182 $UMULL $alo,$aj,$m0 ; ap[1]*bp[0] 183 $UMULH $ahi,$aj,$m0 198 $LDX $aj,$ap,$j ; ap[j] 202 $UMULL $alo,$aj,$m0 ; ap[j]*bp[0] 204 $UMULH $ahi,$aj,$m0 [all …]
|
/third_party/boost/boost/math/special_functions/ |
D | hypergeometric_pFq.hpp | 52 …e_args<Real, typename Seq::value_type>::type hypergeometric_pFq(const Seq& aj, const Seq& bj, cons… in hypergeometric_pFq() argument 66 …alue_type> r = boost::math::detail::hypergeometric_pFq_checked_series_impl(aj, bj, value_type(z), … in hypergeometric_pFq() 75 …e_args<Real, typename Seq::value_type>::type hypergeometric_pFq(const Seq& aj, const Seq& bj, cons… in hypergeometric_pFq() argument 77 return hypergeometric_pFq(aj, bj, z, p_abs_error, boost::math::policies::policy<>()); in hypergeometric_pFq() 81 …ote_args<Real, R>::type hypergeometric_pFq(const std::initializer_list<R>& aj, const std::initiali… in hypergeometric_pFq() argument 83 … return hypergeometric_pFq<std::initializer_list<R>, Real, Policy>(aj, bj, z, p_abs_error, pol); in hypergeometric_pFq() 87 …te_args<Real, R>::type hypergeometric_pFq(const std::initializer_list<R>& aj, const std::initiali… in hypergeometric_pFq() argument 89 return hypergeometric_pFq<std::initializer_list<R>, Real>(aj, bj, z, p_abs_error); in hypergeometric_pFq() 108 …Real hypergeometric_pFq_precision(const Seq& aj, const Seq& bj, Real z, unsigned digits10, double … in hypergeometric_pFq_precision() argument 112 for (auto ai = aj.begin(); ai != aj.end(); ++ai) in hypergeometric_pFq_precision() [all …]
|
/third_party/boost/boost/math/special_functions/detail/ |
D | hypergeometric_pFq_checked_series.hpp | 20 …unsigned set_crossover_locations(const Seq& aj, const Seq& bj, const Real& z, unsigned int* crosso… in set_crossover_locations() argument 25 if(aj.size() == 1 && bj.size() == 1) in set_crossover_locations() 47 Real a = *aj.begin(); in set_crossover_locations() 119 …std::pair<Real, Real> hypergeometric_pFq_checked_series_impl(const Seq& aj, const Seq& bj, const R… in hypergeometric_pFq_checked_series_impl() argument 135 if ((aj.size() == 1) && (bj.size() == 0)) in hypergeometric_pFq_checked_series_impl() 139 if ((z > 0) && (floor(*aj.begin()) != *aj.begin())) in hypergeometric_pFq_checked_series_impl() 144 …std::pair<Real, Real> r = hypergeometric_pFq_checked_series_impl(aj, bj, Real(1 / z), pol, termina… in hypergeometric_pFq_checked_series_impl() 145 Real mul = pow(-z, -*aj.begin()); in hypergeometric_pFq_checked_series_impl() 152 if (aj.size() > bj.size()) in hypergeometric_pFq_checked_series_impl() 154 if (aj.size() == bj.size() + 1) in hypergeometric_pFq_checked_series_impl() [all …]
|
/third_party/node/deps/npm/node_modules/unique-filename/coverage/ |
D | prettify.js | 1 …aj=aq.length;ar<aj;++ar){var ah=aq[ar];if(/\\[bdsw]/i.test(ah)){ak.push(ah)}else{var ag=ab(ah);var…
|
/third_party/node/deps/npm/node_modules/mute-stream/coverage/lcov-report/ |
D | prettify.js | 1 …aj=aq.length;ar<aj;++ar){var ah=aq[ar];if(/\\[bdsw]/i.test(ah)){ak.push(ah)}else{var ag=ab(ah);var…
|
/third_party/gstreamer/gstplugins_good/po/ |
D | hr.po | 131 "Audiouređaj nije moguće otvoriti za reprodukciju jer ga koristi neka druga " 138 "Audiouređaj nije moguće otvoriti za reprodukciju jer nemate dopuštenje za " 142 msgstr "Audiouređaj nije moguće otvoriti za reprodukciju." 148 "Audiouređaj nije moguće otvoriti za reprodukciju jer ovaj element ne " 152 msgstr "Ovaj audiouređaj ne podržava reprodukciju." 158 msgstr "Ovaj audiouređaj ne podržava snimanje." 167 "Audiouređaj nije moguće otvoriti za snimanje jer nemate dopuštenje za " 171 msgstr "Audiouređaj nije moguće otvoriti za snimanje." 174 msgstr "CoreAudio uređaj nije pronađen" 177 msgstr "CoreAudio uređaj nije moguće otvoriti" [all …]
|
/third_party/icu/icu4c/source/data/locales/ |
D | lv.txt | 1513 "-1"{"pagājušajā piektdienā"} 1514 "0"{"šajā piektdienā"} 1533 "0"{"šajā piektd."} 1552 "0"{"šajā piektd."} 1571 "0"{"šajā stundā"} 1619 "0"{"šajā minūtē"} 1666 "-1"{"pagājušajā pirmdienā"} 1667 "0"{"šajā pirmdienā"} 1686 "0"{"šajā pirmd."} 1705 "0"{"šajā pirmd."} [all …]
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | lv.txt | 1513 "-1"{"pagājušajā piektdienā"} 1514 "0"{"šajā piektdienā"} 1533 "0"{"šajā piektd."} 1552 "0"{"šajā piektd."} 1571 "0"{"šajā stundā"} 1619 "0"{"šajā minūtē"} 1666 "-1"{"pagājušajā pirmdienā"} 1667 "0"{"šajā pirmdienā"} 1686 "0"{"šajā pirmd."} 1705 "0"{"šajā pirmd."} [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/ |
D | lv.txt | 1532 "-1"{"pagājušajā piektdienā"} 1533 "0"{"šajā piektdienā"} 1552 "0"{"šajā piektd."} 1571 "0"{"šajā piektd."} 1590 "0"{"šajā stundā"} 1638 "0"{"šajā minūtē"} 1685 "-1"{"pagājušajā pirmdienā"} 1686 "0"{"šajā pirmdienā"} 1705 "0"{"šajā pirmd."} 1724 "0"{"šajā pirmd."} [all …]
|
/third_party/boost/boost/pfr/detail/ |
D | core17_generated.hpp | 433 aa,ab,ac,ad,ae,af,ag,ah,aj in tie_as_tuple() 438 aa,ab,ac,ad,ae,af,ag,ah,aj in tie_as_tuple() 446 aa,ab,ac,ad,ae,af,ag,ah,aj,ak in tie_as_tuple() 451 aa,ab,ac,ad,ae,af,ag,ah,aj,ak in tie_as_tuple() 459 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al in tie_as_tuple() 464 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al in tie_as_tuple() 472 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al,am in tie_as_tuple() 477 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al,am in tie_as_tuple() 485 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al,am,an in tie_as_tuple() 490 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al,am,an in tie_as_tuple() [all …]
|
/third_party/boost/libs/pfr/include/boost/pfr/detail/ |
D | core17_generated.hpp | 433 aa,ab,ac,ad,ae,af,ag,ah,aj in tie_as_tuple() 438 aa,ab,ac,ad,ae,af,ag,ah,aj in tie_as_tuple() 446 aa,ab,ac,ad,ae,af,ag,ah,aj,ak in tie_as_tuple() 451 aa,ab,ac,ad,ae,af,ag,ah,aj,ak in tie_as_tuple() 459 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al in tie_as_tuple() 464 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al in tie_as_tuple() 472 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al,am in tie_as_tuple() 477 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al,am in tie_as_tuple() 485 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al,am,an in tie_as_tuple() 490 aa,ab,ac,ad,ae,af,ag,ah,aj,ak,al,am,an in tie_as_tuple() [all …]
|
/third_party/gstreamer/gstplugins_base/po/ |
D | hr.po | 26 msgstr "Uređaj za reprodukciju nije moguće otvoriti u mono načinu." 29 msgstr "Uređaj za reprodukciju nije moguće otvoriti u stereo načinu." 33 msgstr "Uređaj za reprodukciju nije moguće otvoriti u %d-kanalnom načinu." 39 "Audiouređaj nije moguće otvoriti za reprodukciju jer ga koristi neka druga " 43 msgstr "Audiouređaj nije moguće otvoriti za reprodukciju." 46 msgstr "Greška na ulazu audiouređaja. Uređaj nije spojen." 49 msgstr "Uređaj za snimanje nije moguće otvoriti u mono načinu." 52 msgstr "Uređaj za snimanje nije moguće otvoriti u stereo načinu." 56 msgstr "Uređaj za snimanje nije moguće otvoriti u %d-kanalnom načinu" 62 "Uređaj nije moguće otvoriti za snimanje. Uređaj trenutno koristi neka druga " [all …]
|
/third_party/icu/icu4c/source/data/translit/ |
D | la_la_FONIPA.txt | 21 ae → aj; 23 æ → aj; # 19th century English orthography
|
D | si_si_FONIPA.txt | 58 ඓ → aj; 114 ෛ → aj; 161 əji → aj;
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | la_la_FONIPA.txt | 21 ae → aj; 23 æ → aj; # 19th century English orthography
|
D | si_si_FONIPA.txt | 58 ඓ → aj; 114 ෛ → aj; 161 əji → aj;
|
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/ |
D | la_la_FONIPA.txt | 20 ae → aj; 22 æ → aj; # 19th century English orthography
|
D | si_si_FONIPA.txt | 57 ඓ → aj; 113 ෛ → aj; 160 əji → aj;
|
/third_party/typescript/tests/baselines/reference/ |
D | hugeDeclarationOutputGTruncatedWithError.ts.types | 6 >manyprops : "aa" | "ab" | "ac" | "ad" | "ae" | "af" | "ag" | "ah" | "ai" | "aj" | "ak" | "al" | "a… 9 …aj: "aa.aj"; ak: "aa.ak"; al: "aa.al"; am: "aa.am"; an: "aa.an"; ao: "aa.ao"; ap: "aa.ap"; aq: "aa… 10 …aj: "aa.aj"; ak: "aa.ak"; al: "aa.al"; am: "aa.am"; an: "aa.an"; ao: "aa.ao"; ap: "aa.ap"; aq: "aa…
|