Home
last modified time | relevance | path

Searched refs:inplace (Results 1 – 25 of 64) sorted by relevance

123

/external/eigen/test/
Dinplace_decomposition.cpp17 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/
Drun-unstrip-test.sh25 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/
Dfileinput.py85 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/
Dfileinput.py83 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/
Dcontrol.regression14 Does inplace preads and pwrites.
17 job.run_test('kernel_fs_Inplace', tag='inplace',
18 dir='/tmp', scratch='/tmp/.inplace')
Dcontrol8 Does inplace preads and pwrites.
/external/python/cpython2/Lib/distutils/tests/
Dtest_build_ext.py292 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
Dsetuptools_build_ext.py47 old_inplace, self.inplace = self.inplace, 0
49 self.inplace = old_inplace
/external/python/cpython3/Lib/test/
Dtest_fileinput.py158 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/
Dcreate.py52 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/
Dcreate.py52 for line in fileinput.input(bad_libpthread, inplace=True):
59 for line in fileinput.input(bad_libc, inplace=True):
/external/python/cpython3/Doc/distutils/
Dconfigfile.rst65 --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/
Dconfigfile.rst61 --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/
Ddisasm.py59 def GetDisasmLines(filename, offset, size, arch, inplace, arch_flags=""): argument
61 if not inplace:
/external/eigen/doc/
DInplaceDecomposition.dox5 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/
Dei_fftw_impl.h241 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/
Dtest_build_ext.py333 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/
Ddevelop.py112 self.reinitialize_command('build_py', inplace=0)
121 self.reinitialize_command('build_ext', inplace=0)
135 self.reinitialize_command('build_ext', inplace=1)
Dtest.py135 self.reinitialize_command('build_py', inplace=0)
144 self.reinitialize_command('build_ext', inplace=0)
151 self.reinitialize_command('build_ext', inplace=1)
Dbuild_ext.py77 old_inplace, self.inplace = self.inplace, 0
79 self.inplace = old_inplace
/external/fonttools/Snippets/
Drename-fonts.py140 if options.rename_files and (options.inplace or options.output_file):
149 if options.inplace:
/external/grpc-grpc/
Dsetup.cfg10 inplace=1
/external/python/cpython2/Doc/library/
Dfileinput.rst53 .. 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/
DMakefile.pylibfdt16 $(call run_setup, $^, build_ext --inplace)
/external/u-boot/scripts/dtc/pylibfdt/
DMakefile24 $(PYTHON) $< --quiet build_ext --inplace

123