/external/eigen/Eigen/src/Eigenvalues/ |
D | RealSchur.h | 239 Index findSmallSubdiagEntry(Index iu); 240 void splitOffTwoRows(Index iu, bool computeU, const Scalar& exshift); 241 void computeShift(Index iu, Index iter, Scalar& exshift, Vector3s& shiftInfo); 242 …void initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHo… 243 …void performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseh… 300 Index iu = m_matT.cols() - 1; in computeFromHessenberg() local 308 while (iu >= 0) in computeFromHessenberg() 310 Index il = findSmallSubdiagEntry(iu); in computeFromHessenberg() 313 if (il == iu) // One root found in computeFromHessenberg() 315 m_matT.coeffRef(iu,iu) = m_matT.coeff(iu,iu) + exshift; in computeFromHessenberg() [all …]
|
D | ComplexSchur.h | 257 ComplexScalar computeShift(Index iu, Index iter); 281 typename ComplexSchur<MatrixType>::ComplexScalar ComplexSchur<MatrixType>::computeShift(Index iu, I… 287 return abs(numext::real(m_matT.coeff(iu,iu-1))) + abs(numext::real(m_matT.coeff(iu-1,iu-2))); 292 Matrix<ComplexScalar,2,2> t = m_matT.template block<2,2>(iu-1,iu-1); 397 Index iu = m_matT.cols() - 1; 405 while(iu > 0) 407 if(!subdiagonalEntryIsNeglegible(iu-1)) break; 409 --iu; 413 if(iu==0) break; 421 il = iu-1; [all …]
|
/external/rust/crates/libm/src/math/ |
D | log1pf.rs | 37 let mut iu: u32; in log1pf() localVariable 70 iu = ui; in log1pf() 71 iu += 0x3f800000 - 0x3f3504f3; in log1pf() 72 k = (iu >> 23) as i32 - 0x7f; in log1pf() 85 iu = (iu & 0x007fffff) + 0x3f3504f3; in log1pf() 86 ui = iu; in log1pf()
|
/external/tensorflow/tensorflow/core/common_runtime/gpu/ |
D | gpu_event_mgr.cc | 212 for (auto& iu : used_events_) { in PollEvents() local 213 if (iu.event == nullptr) continue; in PollEvents() 214 se::Event::Status s = iu.event->PollForStatus(); in PollEvents() 228 to_free->push_back(iu); in PollEvents() 229 free_events_.push_back(iu.event); in PollEvents() 231 iu.event = nullptr; in PollEvents() 236 InUse& iu = used_events_.front(); in PollEvents() local 237 if (iu.event == nullptr) { in PollEvents()
|
/external/tensorflow/tensorflow/core/common_runtime/device/ |
D | device_event_mgr.cc | 213 for (auto& iu : used_events_) { in PollEvents() local 214 if (iu.event == nullptr) continue; in PollEvents() 215 se::Event::Status s = iu.event->PollForStatus(); in PollEvents() 229 to_free->push_back(iu); in PollEvents() 230 free_events_.push_back(iu.event); in PollEvents() 232 iu.event = nullptr; in PollEvents() 237 InUse& iu = used_events_.front(); in PollEvents() local 238 if (iu.event == nullptr) { in PollEvents()
|
D | device_event_mgr.h | 102 for (const auto& iu : to_free) { in FreeMemory() local 104 if (iu.func != nullptr) threadpool_.Schedule(iu.func); in FreeMemory()
|
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/osx/ |
D | osx-locales.csv | 65 Inuktitut-Nunavut,iu, 66 Inuktitut-Nutaaq,iu,nutaaq 67 Inuktitut-QWERTY,iu,qwerty 68 Inuttitut Nunavik,iu,var
|
/external/skqp/samplecode/ |
D | SamplePatch.cpp | 80 static void eval_sheet(const SkPoint edge[], int nu, int nv, int iu, int iv, in eval_sheet() argument 87 SkScalar u = SkIntToScalar(iu) / nu; in eval_sheet() 98 SkScalar x = (1 - v) * edge[TL+iu].fX + u * edge[TR+iv].fX + in eval_sheet() 99 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0; in eval_sheet() 100 SkScalar y = (1 - v) * edge[TL+iu].fY + u * edge[TR+iv].fY + in eval_sheet() 101 v * edge[BR+nu-iu].fY + (1 - u) * edge[BL+nv-iv].fY - y0; in eval_sheet()
|
/external/skia/samplecode/ |
D | SamplePatch.cpp | 78 static void eval_sheet(const SkPoint edge[], int nu, int nv, int iu, int iv, in eval_sheet() argument 85 SkScalar u = SkIntToScalar(iu) / nu; in eval_sheet() 96 SkScalar x = (1 - v) * edge[TL+iu].fX + u * edge[TR+iv].fX + in eval_sheet() 97 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0; in eval_sheet() 98 SkScalar y = (1 - v) * edge[TL+iu].fY + u * edge[TR+iv].fY + in eval_sheet() 99 v * edge[BR+nu-iu].fY + (1 - u) * edge[BL+nv-iv].fY - y0; in eval_sheet()
|
/external/icu/icu4c/source/test/cintltst/ |
D | utf8tst.c | 1250 int32_t i, j, k, iu, is, il, length; in TestSurrogates() local 1257 iu=j; in TestSurrogates() 1282 if(U_IS_SURROGATE(cu) ? is!=(i+1) : is!=iu) { in TestSurrogates() 1285 if(il!=iu) { in TestSurrogates() 1290 i=iu; /* advance by one UTF-8 sequence */ in TestSurrogates() 1298 iu=j; in TestSurrogates() 1323 if(U_IS_SURROGATE(cu) ? is!=(i-1) : is!=iu) { in TestSurrogates() 1326 if(il !=iu) { in TestSurrogates() 1330 i=iu; /* go back by one UTF-8 sequence */ in TestSurrogates()
|
/external/icu/icu4c/source/data/translit/ |
D | ro_FONIPA_ja.txt | 163 tʃiu → チュ ; 208 ʒiu → ジュ ;
|
D | ro_ro_FONIPA.txt | 58 iu} [$Vowel $Boundary] → iw ; 59 iu → ju ;
|
D | sk_FONIPA_ja.txt | 194 tʃiu → チュ ; 248 ʒiu → ジュ ;
|
/external/toybox/kconfig/ |
D | README | 9 and 2006 http://lkml.iu.edu/hypermail/linux/kernel/0607.0/1805.html 10 and 2007 http://lkml.iu.edu/hypermail/linux/kernel/0707.1/1741.html
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/ |
D | scratch-buffer.ll | 53 ; GCN-DAG: v_add_{{[iu]}}32_e32 [[OFFSET:v[0-9]+]], vcc, [[K8000]] 90 ; GCN: v_add_{{[iu]}}32_e32 [[ADD:v[0-9]+]], vcc, 16, v{{[0-9]+}} 102 ; GCN: v_add_{{[iu]}}32_e32 [[ADD:v[0-9]+]], vcc, 16, v{{[0-9]+}}
|
D | shl_add_ptr.ll | 39 ; GCN: v_add_{{[iu]}}32_e32 [[PTR:v[0-9]+]], vcc, lds0@abs32@lo, [[OFS]] 42 ; GCN: v_add_{{[iu]}}32_e32 [[ADDUSE:v[0-9]+]], vcc, 8, v{{[0-9]+}} 79 ; GCN-DAG: v_add_{{[iu]}}32_e32 [[PTR0:v[0-9]+]], vcc, lds0@abs32@lo, [[OFS]] 80 ; GCN-DAG: v_add_{{[iu]}}32_e32 [[PTR1:v[0-9]+]], vcc, lds1@abs32@lo, [[OFS]] 316 ; GCN-DAG: v_add_{{[iu]}}32_e32 [[ADD1:v[0-9]+]], vcc, 0x1fff0, [[SCALE1]] 330 ; GCN: v_add_{{[iu]}}32_e32 [[ADD:v[0-9]+]], vcc, 0x1000, v0 368 ; GCN-DAG: v_add_{{[iu]}}32_e32 [[ADD:v[0-9]+]], vcc, 0x1ff0, [[SCALE1]] 382 ; GCN: v_add_{{[iu]}}32_e32 [[ADD:v[0-9]+]], vcc, 0x100, v0
|
D | amdgpu-shader-calling-convention.ll | 6 ; GCN: v_add_{{[iu]}}32_e32 v0, vcc, s8, v0
|
D | urem.ll | 24 ; SI: v_subrev_{{[iu]}}32 26 ; SI: v_sub_{{[iu]}}32
|
D | sgpr-copy-duplicate-operand.ll | 8 ; SI: v_add_{{[iu]}}32_e32
|
D | uint_to_fp.i64.ll | 24 ; GCN: v_add_{{[iu]}}32_e32 [[VR:v[0-9]+]] 55 ; GCN: v_add_{{[iu]}}32_e32 [[VR:v[0-9]+]]
|
/external/libxkbcommon/test/data/rules/ |
D | evdev-xkbcommon | 180 * iu basic = pc+ca(ike) 231 * iu = pc+ca(ike) 262 * iu(basic) = pc+ca(ike) 350 * iu = pc+ca(ike) 381 * iu(basic) = pc+ca(ike) 447 * iu basic = pc+ca(ike) 494 * iu = +ca(ike):2 525 * iu(basic) = +ca(ike):2 575 * iu = +ca(ike):3 606 * iu(basic) = +ca(ike):3 [all …]
|
D | evdev | 168 * iu basic = pc+ca(ike) 220 * iu = pc+ca(ike) 250 * iu(basic) = pc+ca(ike) 335 * iu = pc+ca(ike) 365 * iu(basic) = pc+ca(ike) 431 * iu basic = pc+ca(ike) 478 * iu = +ca(ike):2 508 * iu(basic) = +ca(ike):2 559 * iu = +ca(ike):3 589 * iu(basic) = +ca(ike):3 [all …]
|
D | base | 230 * iu basic = pc+ca(ike) 282 * iu = pc+ca(ike) 312 * iu(basic) = pc+ca(ike) 397 * iu = pc+ca(ike) 427 * iu(basic) = pc+ca(ike) 493 * iu basic = pc+ca(ike) 540 * iu = +ca(ike):2 570 * iu(basic) = +ca(ike):2 621 * iu = +ca(ike):3 651 * iu(basic) = +ca(ike):3 [all …]
|
/external/vboot_reference/tests/testkeys/ |
D | key_rsa4096.crt | 28 kbWgeABGQGaoAnFJYhjqBROGdVb4V3vbsjbCi8k2r4IIcqOzp6OIJxha2LvkZ+iu
|
/external/llvm-project/clang/test/SemaObjC/ |
D | id.m | 27 typedef union U{ int iu; } *id; // expected-error {{typedef redefinition with different types ('uni…
|