/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
D | warpers_inl.hpp | 218 float z_ = r_kinv[6] * x + r_kinv[7] * y + r_kinv[8]; in mapForward() local 220 x_ = t[0] + x_ / z_ * (1 - t[2]); in mapForward() 221 y_ = t[1] + y_ / z_ * (1 - t[2]); in mapForward() 249 float z_ = r_kinv[6] * x + r_kinv[7] * y + r_kinv[8]; in mapForward() local 251 u = scale * atan2f(x_, z_); in mapForward() 252 float w = y_ / sqrtf(x_ * x_ + y_ * y_ + z_ * z_); in mapForward() 266 float z_ = sinv * cosf(u); in mapBackward() local 269 x = k_rinv[0] * x_ + k_rinv[1] * y_ + k_rinv[2] * z_; in mapBackward() 270 y = k_rinv[3] * x_ + k_rinv[4] * y_ + k_rinv[5] * z_; in mapBackward() 271 z = k_rinv[6] * x_ + k_rinv[7] * y_ + k_rinv[8] * z_; in mapBackward() [all …]
|
/external/ceres-solver/internal/ceres/ |
D | cgnr_linear_operator.h | 83 : A_(A), D_(D), z_(new double[A.num_rows()]) { in CgnrLinearOperator() 88 std::fill(z_.get(), z_.get() + A_.num_rows(), 0.0); in RightMultiply() 91 A_.RightMultiply(x, z_.get()); in RightMultiply() 94 A_.LeftMultiply(z_.get(), y); in RightMultiply() 114 scoped_array<double> z_; variable
|
D | parameter_block_ordering_test.cc | 68 problem_.AddParameterBlock(z_, 5); in SetUp() 72 problem_.AddResidualBlock(new DummyCostFunction<6, 5, 4>, NULL, z_, y_); in SetUp() 73 problem_.AddResidualBlock(new DummyCostFunction<3, 3, 5>, NULL, x_, z_); in SetUp() 74 problem_.AddResidualBlock(new DummyCostFunction<7, 5, 3>, NULL, z_, x_); in SetUp() 76 z_, x_, w_); in SetUp() 80 double x_[3], y_[4], z_[5], w_[6]; member in ceres::internal::SchurOrderingTest 127 problem_.SetParameterBlockConstant(z_); in TEST_F()
|
D | dynamic_numeric_diff_cost_function_test.cc | 320 z_.resize(3); in SetUp() 321 z_[0] = 2.0; in SetUp() 322 z_[1] = 4.0; in SetUp() 323 z_[2] = 6.0; in SetUp() 328 parameter_blocks_[2] = &z_[0]; in SetUp() 347 jacobian_vect_[2].resize(7 * z_.size(), -100000); in SetUp() 352 const double sum_z = z_[0] + 3.0 * z_[1] + 6.0 * z_[2]; in SetUp() 416 vector<double> z_; member in ceres::internal::ThreeParameterCostFunctorTest
|
D | dynamic_autodiff_cost_function_test.cc | 319 z_.resize(3); in SetUp() 320 z_[0] = 2.0; in SetUp() 321 z_[1] = 4.0; in SetUp() 322 z_[2] = 6.0; in SetUp() 327 parameter_blocks_[2] = &z_[0]; in SetUp() 346 jacobian_vect_[2].resize(7 * z_.size(), -100000); in SetUp() 351 const double sum_z = z_[0] + 3.0 * z_[1] + 6.0 * z_[2]; in SetUp() 415 vector<double> z_; member in ceres::internal::ThreeParameterCostFunctorTest
|
/external/bzip2/ |
D | bzip2.1.preformatted | 19 _b_z_i_p_2 compresses files using the Burrows‐Wheeler block 27 those of _G_N_U _g_z_i_p_, but they are not identical. 29 _b_z_i_p_2 expects a list of file names to accompany the com 41 _b_z_i_p_2 and _b_u_n_z_i_p_2 will by default not overwrite existing 44 If no file names are specified, _b_z_i_p_2 compresses from 45 standard input to standard output. In this case, _b_z_i_p_2 50 _b_u_n_z_i_p_2 (or _b_z_i_p_2 _−_d_) decompresses all specified files. 51 Files which were not created by _b_z_i_p_2 will be detected and 52 ignored, and a warning issued. _b_z_i_p_2 attempts to guess 63 …_._b_z_2_, _._b_z_, _._t_b_z_2 or _._t_b_z_, _b_z_i_p_2 complains that i… [all …]
|
/external/opencv3/modules/stitching/src/cuda/ |
D | build_warp_maps.cu | 98 float z_ = ::cosf(u); in mapBackward() local 101 x = ck_rinv[0] * x_ + ck_rinv[1] * y_ + ck_rinv[2] * z_; in mapBackward() 102 y = ck_rinv[3] * x_ + ck_rinv[4] * y_ + ck_rinv[5] * z_; in mapBackward() 103 z = ck_rinv[6] * x_ + ck_rinv[7] * y_ + ck_rinv[8] * z_; in mapBackward() 124 float z_ = sinv * ::cosf(u); in mapBackward() local 127 x = ck_rinv[0] * x_ + ck_rinv[1] * y_ + ck_rinv[2] * z_; in mapBackward() 128 y = ck_rinv[3] * x_ + ck_rinv[4] * y_ + ck_rinv[5] * z_; in mapBackward() 129 z = ck_rinv[6] * x_ + ck_rinv[7] * y_ + ck_rinv[8] * z_; in mapBackward()
|
/external/opencv3/modules/stitching/src/opencl/ |
D | warpers.cl | 100 float x_, z_; 101 x_ = sincos(u, &z_); 112 x = fma(ck_rinv[0], x_, fma(ck_rinv[1], y_, ck_rinv[2] * z_)); 113 y = fma(ck_rinv[3], x_, fma(ck_rinv[4], y_, ck_rinv[5] * z_)); 114 z = fma(ck_rinv[6], x_, fma(ck_rinv[7], y_, ck_rinv[8] * z_)); 153 float z_ = sinv * cosu; 156 x = fma(ck_rinv[0], x_, fma(ck_rinv[1], y_, ck_rinv[2] * z_)); 157 y = fma(ck_rinv[3], x_, fma(ck_rinv[4], y_, ck_rinv[5] * z_)); 158 z = fma(ck_rinv[6], x_, fma(ck_rinv[7], y_, ck_rinv[8] * z_));
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/ |
D | pylintrc | 146 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ 155 function-rgx=[a-z_][a-z0-9_]{2,30}$ 158 method-rgx=[a-z_][a-z0-9_]{2,30}$ 161 attr-rgx=[a-z_][a-z0-9_]{2,30}$ 164 argument-rgx=[a-z_][a-z0-9_]{2,30}$ 167 variable-rgx=[a-z_][a-z0-9_]{2,30}$ 171 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
|
/external/chromium-trace/catapult/third_party/coverage/ |
D | pylintrc | 80 # C0103:256:coverage.morf_filename: Invalid name "f" (should match [a-z_][a-z0-9_]{2,30}$) 140 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ 149 function-rgx=[a-z_][a-z0-9_]{2,30}$ 152 method-rgx=[a-z_][a-z0-9_]{2,30}$|setUp|tearDown|test_.* 155 attr-rgx=[a-z_][a-z0-9_]{2,30}$ 158 argument-rgx=[a-z_][a-z0-9_]{2,30}$ 161 variable-rgx=[a-z_][a-z0-9_]{2,30}$ 165 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
|
/external/gmock/test/ |
D | gmock_stress_test.cc | 87 Derived2(int a_x, int a_z) : Base(a_x), z_(a_z) {} in Derived2() 88 int z() const { return z_; } in z() 90 int z_; member in testing::__anon49cc54130111::Derived2
|
/external/google-breakpad/src/testing/test/ |
D | gmock_stress_test.cc | 87 Derived2(int a_x, int a_z) : Base(a_x), z_(a_z) {} in Derived2() 88 int z() const { return z_; } in z() 90 int z_; member in testing::__anon1a1041ea0111::Derived2
|
/external/antlr/antlr-3.4/runtime/Python/ |
D | pylintrc | 166 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ 175 function-rgx=[a-z_][a-z0-9_]{2,30}$ 178 method-rgx=[a-z_][a-z0-9_]{2,30}$ 181 attr-rgx=[a-z_][a-z0-9_]{2,30}$ 184 argument-rgx=[a-z_][a-z0-9_]{2,30}$ 187 variable-rgx=[a-z_][a-z0-9_]{2,30}$ 191 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
|
/external/llvm/test/Instrumentation/MemorySanitizer/ |
D | atomics.ll | 86 ; CHECK: [[SHADOW:%[01-9a-z_]+]] = load i32, i32* {{.*}}, align 16 101 ; CHECK: [[SHADOW:%[01-9a-z_]+]] = load i32, i32* {{.*}}, align 16 116 ; CHECK: [[SHADOW:%[01-9a-z_]+]] = load i32, i32* {{.*}}, align 16 131 ; CHECK: [[SHADOW:%[01-9a-z_]+]] = load i32, i32* {{.*}}, align 16
|
/external/chromium-trace/catapult/third_party/typ/ |
D | pylintrc | 164 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ 173 function-rgx=[a-z_][a-z0-9_]{0,40}$ 176 method-rgx=[a-z_][a-z0-9_]{0,48}$ 179 attr-rgx=[a-z_][a-z0-9_]{0,30}$ 182 argument-rgx=[a-z_][a-z0-9_]{0,30}$ 189 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
|
/external/deqp/framework/common/ |
D | tcuVector.hpp | 108 Vector (T x_, T y_, T z_); 109 Vector (T x_, T y_, T z_, T w_); 195 inline Vector<T, Size>::Vector (T x_, T y_, T z_) in Vector() argument 200 m_data[2] = z_; in Vector() 204 inline Vector<T, Size>::Vector (T x_, T y_, T z_, T w_) in Vector() argument 209 m_data[2] = z_; in Vector()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Image.h | 695 void chromaBluePrimary(const double x_,const double y_,const double z_); 696 void chromaBluePrimary(double *x_,double *y_,double *z_) const; 699 void chromaGreenPrimary(const double x_,const double y_,const double z_); 700 void chromaGreenPrimary(double *x_,double *y_,double *z_) const; 703 void chromaRedPrimary(const double x_,const double y_,const double z_); 704 void chromaRedPrimary(double *x_,double *y_,double *z_) const; 707 void chromaWhitePoint(const double x_,const double y_,const double z_); 708 void chromaWhitePoint(double *x_,double *y_,double *z_) const;
|
/external/autotest/utils/ |
D | pylintrc | 152 #module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ 182 #attr-rgx=[a-z_][a-z0-9_]{2,30}$ 185 #argument-rgx=[a-z_][a-z0-9_]{2,30}$ 188 #variable-rgx=[a-z_][a-z0-9_]{2,30}$ 192 #inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
|
/external/ImageMagick/Magick++/lib/ |
D | STL.cpp | 1209 const double y_,const double z_) in chromaBluePrimaryImage() argument 1212 _z(z_) in chromaBluePrimaryImage() 1222 const double y_,const double z_) in chromaGreenPrimaryImage() argument 1225 _z(z_) in chromaGreenPrimaryImage() 1235 const double y_,const double z_) in chromaRedPrimaryImage() argument 1238 _z(z_) in chromaRedPrimaryImage() 1248 const double y_,const double z_) in chromaWhitePointImage() argument 1251 _z(z_) in chromaWhitePointImage()
|
/external/webrtc/data/voice_engine/stereo_rtp_files/ |
D | stereo_pcmu.rtp | 34 …z_{`z]y[xYxZ{`|h{`z]xXy[z^|f~v��������������������������~r}k~s}i~q�~�����������������z}k}jy[uQrLoI… 36 …z_{a{��������������`{������|k~Yxg|j|��p~����m~w~��g|l}h|����k}��h}��n}j|w~��������h|y��m}Zyq~q~o… 43 …z_��}k}oy[����{uRy[��������|e������}l��}l��|h}my[��|h��wW��~r�����~v����~o{c{a���������~���~}kt…
|
D | stereo_pcmu_vad_jitter.rtp | 5 …~�zx�����������������������������������~���|�x�s~n}l}i}f|f|b|`{^z^z^z^z_{`{f|~��������������… 40 …^wWtOmDlAmCwW��������������{cxYxXtOoIoGrMy\}p��TLX�}[� �I��X~r~n|gz^z_{b{bz^{`{az^}m}h~s��~… 41 …z_{`z]y[xYxZ{`|h{`z]xXy[z^|f~v��������������������������~r}k~s}i~q�~�����������������z}k}jy[uQrLoI… 44 …z_{a{��������������`{������|k~Yxg|j|��p~����m~w~��g|l}h|����k}��h}��n}j|w~��������h|y��m}Zyq~q~o… 45 …z_{q~��������_{UvOtNsKpMsGnBl@lAlFnYx�����������������������������h|MrHoFnOti}TL+��}��l�I��X… 47 …yRv}��Pu\y`{]z��k|f|���g|��TL/,�}���I��X����]z����^z������c|h}��^z_{����Sv����c{Zyl}��Ww… 57 …�rLk?k@qLoIk>c5_0]-^.[*f9ا͛Оئצ���i<[*V$b4|jwXwX�������y[wU��vTza�������|�}z_}iwWxWy~nnFi<k?mDk?h…
|
D | stereo_pcmu_vad.rtp | 41 …z_{`z]y[xYxZ{`|h{`z]xXy[z^|f~v��������������������������~r}k~s}i~q�~�����������������z}k}jy[uQrLoI… 45 …RuWxYx\yTv��������Ns?kGnUw������������g|UvPtk}��������m}������q~b{Wxi|��o~^z_{������x]zKqRuQuOtMs… 52 …�����������������{^rLmDlBnFsN|g��������������������y[uQtOqLoGpJsNxW|h}iy[y[z_~k��~tvUoImDoIz^�����… 55 …z_��}k}oy[����{uRy[��������|e������}l��}l��|h}my[��|h��wW��~r�����~v����~o{c{a���������~���~}kt… 70 …z_����~{����{b}n��{_nE��xYl?����wX������vS��}pwU��~q{cvR����pJ����{a{c��}mlB����j=����nF����|h����…
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | endcf-loop-header.ll | 12 ; CHECK: [[LOOP_LABEL:[0-9A-Za-z_]+]]: ; %loop{{$}}
|
/external/llvm/utils/vim/syntax/ |
D | llvm.vim | 81 syn match llvmConstant /\<DW_TAG_[a-z_]\+\>/ 85 syn match llvmConstant /\<DW_VIRTUALITY_[a-z_]\+\>/
|
/external/llvm/test/Instrumentation/AddressSanitizer/X86/ |
D | asm_cfi.ll | 45 ; CHECK-NOT: .cfi{{[a-z_]+}}
|