/external/eigen/test/ |
D | inplace_decomposition.cpp | 17 template<typename DecType,typename MatrixType> void inplace(bool square = false, bool SPD = false) in inplace() function 86 CALL_SUBTEST_1(( inplace<LLT<Ref<MatrixXd> >, MatrixXd>(true,true) )); in test_inplace_decomposition() 87 CALL_SUBTEST_1(( inplace<LLT<Ref<Matrix4d> >, Matrix4d>(true,true) )); in test_inplace_decomposition() 89 CALL_SUBTEST_2(( inplace<LDLT<Ref<MatrixXd> >, MatrixXd>(true,true) )); in test_inplace_decomposition() 90 CALL_SUBTEST_2(( inplace<LDLT<Ref<Matrix4d> >, Matrix4d>(true,true) )); in test_inplace_decomposition() 92 CALL_SUBTEST_3(( inplace<PartialPivLU<Ref<MatrixXd> >, MatrixXd>(true,false) )); in test_inplace_decomposition() 93 CALL_SUBTEST_3(( inplace<PartialPivLU<Ref<Matrix4d> >, Matrix4d>(true,false) )); in test_inplace_decomposition() 95 CALL_SUBTEST_4(( inplace<FullPivLU<Ref<MatrixXd> >, MatrixXd>(true,false) )); in test_inplace_decomposition() 96 CALL_SUBTEST_4(( inplace<FullPivLU<Ref<Matrix4d> >, Matrix4d>(true,false) )); in test_inplace_decomposition() 98 CALL_SUBTEST_5(( inplace<HouseholderQR<Ref<MatrixXd> >, MatrixXd>(false,false) )); in test_inplace_decomposition() [all …]
|
/external/elfutils/tests/ |
D | run-unstrip-test.sh | 25 tempfiles testfile.unstrip testfile.inplace 38 rm -f testfile.inplace 39 cp $debugfile testfile.inplace 40 chmod 644 testfile.inplace 41 testrun ${abs_top_builddir}/src/unstrip $stripped testfile.inplace 43 testrun ${abs_top_builddir}/src/elfcmp --hash-inexact $original testfile.inplace
|
/external/python/cpython2/Lib/ |
D | fileinput.py | 85 def input(files=None, inplace=0, backup="", bufsize=0, argument 96 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 190 def __init__(self, files=None, inplace=0, backup="", bufsize=0, argument 202 self._inplace = inplace 217 if inplace and openhook: 391 inplace = 0 395 if o == '-i': inplace = 1 397 for line in input(args, inplace=inplace, backup=backup):
|
/external/python/cpython3/Lib/ |
D | fileinput.py | 83 def input(files=None, inplace=False, backup="", bufsize=0, argument 94 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 188 def __init__(self, files=None, inplace=False, backup="", bufsize=0, argument 202 self._inplace = inplace 226 if inplace: 413 inplace = False 417 if o == '-i': inplace = True 419 for line in input(args, inplace=inplace, backup=backup):
|
/external/autotest/client/site_tests/kernel_fs_Inplace/ |
D | control.regression | 14 Does inplace preads and pwrites. 17 job.run_test('kernel_fs_Inplace', tag='inplace', 18 dir='/tmp', scratch='/tmp/.inplace')
|
D | control | 8 Does inplace preads and pwrites.
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_build_ext.py | 292 cmd.inplace = 1 303 cmd.inplace = 0 321 cmd.inplace = 1 338 cmd.inplace = 1 347 cmd.inplace = 0 363 cmd.inplace = 1 374 cmd.inplace = 1 399 cmd.inplace = 1
|
D | setuptools_build_ext.py | 47 old_inplace, self.inplace = self.inplace, 0 49 self.inplace = old_inplace
|
/external/python/cpython3/Lib/test/ |
D | test_fileinput.py | 158 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs) 272 fi = FileInput(inplace=1, openhook=lambda f, m: None) 392 with FileInput(files=[t], inplace=True) as fi: 411 with FileInput(files=[t], inplace=True) as fi: 430 with FileInput(files=[t], inplace=True) as fi: 506 with FileInput(t1, inplace=True) as fi: 517 def __init__(self, files=None, inplace=False, backup="", bufsize=0, argument 520 self.inplace = inplace 623 inplace = object() 630 result = fileinput.input(files=files, inplace=inplace, backup=backup, [all …]
|
/external/skqp/infra/bots/assets/armhf_sysroot/ |
D | create.py | 52 for line in fileinput.input(bad_libpthread, inplace=True): 59 for line in fileinput.input(bad_libc, inplace=True):
|
/external/skia/infra/bots/assets/armhf_sysroot/ |
D | create.py | 52 for line in fileinput.input(bad_libpthread, inplace=True): 59 for line in fileinput.input(bad_libc, inplace=True):
|
/external/python/cpython3/Doc/distutils/ |
D | configfile.rst | 65 --inplace (-i) ignore build-lib and put compiled extensions into the 76 .. _distutils-build-ext-inplace: 82 :option:`!--inplace` option on the command-line to ensure this: 86 python setup.py build_ext --inplace 89 explicitly, and remember to provide :option:`!--inplace`. An easier way is to 96 inplace=1
|
/external/python/cpython2/Doc/distutils/ |
D | configfile.rst | 61 --inplace (-i) ignore build-lib and put compiled extensions into the 72 .. _distutils-build-ext-inplace: 78 :option:`!--inplace` option on the command-line to ensure this:: 80 python setup.py build_ext --inplace 83 explicitly, and remember to provide :option:`!--inplace`. An easier way is to 88 inplace=1
|
/external/v8/tools/ |
D | disasm.py | 59 def GetDisasmLines(filename, offset, size, arch, inplace, arch_flags=""): argument 61 if not inplace:
|
/external/eigen/doc/ |
D | InplaceDecomposition.dox | 5 Starting from %Eigen 3.3, the LU, Cholesky, and QR decompositions can operate \em inplace, that is,… 8 …ted with the input matrix as argument. As an example, let us consider an inplace LU decomposition … 22 No surprise here! Then, let's declare our inplace LU object \c lu, and check the content of the mat… 102 Here is the list of matrix decompositions supporting this inplace mechanism:
|
/external/eigen/unsupported/Eigen/src/FFT/ |
D | ei_fftw_impl.h | 241 bool inplace = (dst==src); 243 int64_t key = ( (nfft<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1; 250 bool inplace = (dst==src); 252 …int64_t key = ( ( (((int64_t)n0) << 30)|(n1<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1 ) …
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_build_ext.py | 333 cmd.inplace = 1 344 cmd.inplace = 0 362 cmd.inplace = 1 383 cmd.inplace = 1 392 cmd.inplace = 0 408 cmd.inplace = 1
|
/external/python/setuptools/setuptools/command/ |
D | develop.py | 112 self.reinitialize_command('build_py', inplace=0) 121 self.reinitialize_command('build_ext', inplace=0) 135 self.reinitialize_command('build_ext', inplace=1)
|
D | test.py | 135 self.reinitialize_command('build_py', inplace=0) 144 self.reinitialize_command('build_ext', inplace=0) 151 self.reinitialize_command('build_ext', inplace=1)
|
D | build_ext.py | 77 old_inplace, self.inplace = self.inplace, 0 79 self.inplace = old_inplace
|
/external/fonttools/Snippets/ |
D | rename-fonts.py | 140 if options.rename_files and (options.inplace or options.output_file): 149 if options.inplace:
|
/external/grpc-grpc/ |
D | setup.cfg | 10 inplace=1
|
/external/python/cpython2/Doc/library/ |
D | fileinput.rst | 53 .. function:: input([files[, inplace[, backup[, bufsize[, mode[, openhook]]]]]]) 128 .. class:: FileInput([files[, inplace[, backup[,bufsize[, mode[, openhook]]]]]]) 144 cannot use *inplace* and *openhook* together. 152 **Optional in-place filtering:** if the keyword argument ``inplace=1`` is passed
|
/external/dtc/pylibfdt/ |
D | Makefile.pylibfdt | 16 $(call run_setup, $^, build_ext --inplace)
|
/external/u-boot/scripts/dtc/pylibfdt/ |
D | Makefile | 24 $(PYTHON) $< --quiet build_ext --inplace
|