Searched refs:inplace (Results 1 - 25 of 56) sorted by relevance

123

/external/elfutils/tests/
H A 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/eigen/test/
H A Dinplace_decomposition.cpp15 // This file test inplace decomposition through Ref<>, as supported by Cholesky, LU, and QR decompositions.
17 template<typename DecType,typename MatrixType> void inplace(bool square = false, bool SPD = false) function
86 CALL_SUBTEST_1(( inplace<LLT<Ref<MatrixXd> >, MatrixXd>(true,true) ));
87 CALL_SUBTEST_1(( inplace<LLT<Ref<Matrix4d> >, Matrix4d>(true,true) ));
89 CALL_SUBTEST_2(( inplace<LDLT<Ref<MatrixXd> >, MatrixXd>(true,true) ));
90 CALL_SUBTEST_2(( inplace<LDLT<Ref<Matrix4d> >, Matrix4d>(true,true) ));
92 CALL_SUBTEST_3(( inplace<PartialPivLU<Ref<MatrixXd> >, MatrixXd>(true,false) ));
93 CALL_SUBTEST_3(( inplace<PartialPivLU<Ref<Matrix4d> >, Matrix4d>(true,false) ));
95 CALL_SUBTEST_4(( inplace<FullPivLU<Ref<MatrixXd> >, MatrixXd>(true,false) ));
96 CALL_SUBTEST_4(( inplace<FullPivL
[all...]
/external/fio/examples/
H A De4defrag2.fio20 inplace=0
30 inplace=0
35 inplace=0
43 inplace=1
54 inplace=1
/external/trappy/tests/trappy/
H A Didle.py29 self.data_frame.replace(uint32_max, -1, inplace=True)
H A Dsched.py88 self.data_frame.rename(columns={'cpu_id':'cpu'}, inplace=True)
89 self.data_frame.rename(columns={'state' :'capacity'}, inplace=True)
134 self.data_frame.rename(columns={'cpu_id':'cpu'}, inplace=True)
135 self.data_frame.rename(columns={'state' :'frequency'}, inplace=True)
H A Dcommon_clk.py56 self.data_frame.rename(columns={'state':'rate'}, inplace=True)
H A Dfilesystem.py33 self.data_frame.rename(columns={'ino':'inode'}, inplace=True)
/external/trappy/trappy/
H A Didle.py29 self.data_frame.replace(uint32_max, -1, inplace=True)
H A Dsched.py88 self.data_frame.rename(columns={'cpu_id':'cpu'}, inplace=True)
89 self.data_frame.rename(columns={'state' :'capacity'}, inplace=True)
134 self.data_frame.rename(columns={'cpu_id':'cpu'}, inplace=True)
135 self.data_frame.rename(columns={'state' :'frequency'}, inplace=True)
H A Dcommon_clk.py56 self.data_frame.rename(columns={'state':'rate'}, inplace=True)
H A Dfilesystem.py33 self.data_frame.rename(columns={'ino':'inode'}, inplace=True)
/external/python/cpython2/Lib/
H A Dfileinput.py56 Optional in-place filtering: if the keyword argument inplace=1 is
85 def input(files=None, inplace=0, backup="", bufsize=0,
96 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
178 """FileInput([files[, inplace[, backup[, bufsize[, mode[, openhook]]]]]])
190 def __init__(self, files=None, inplace=0, backup="", bufsize=0,
202 self._inplace = inplace
217 if inplace and openhook:
218 raise ValueError("FileInput cannot use an opening hook in inplace mode")
391 inplace = 0
395 if o == '-i': inplace
[all...]
/external/skia/infra/bots/assets/armhf_sysroot/
H A Dcreate.py52 for line in fileinput.input(bad_libpthread, inplace=True):
59 for line in fileinput.input(bad_libc, inplace=True):
/external/skqp/infra/bots/assets/armhf_sysroot/
H A Dcreate.py52 for line in fileinput.input(bad_libpthread, inplace=True):
59 for line in fileinput.input(bad_libc, inplace=True):
/external/v8/tools/
H A Ddisasm.py57 def GetDisasmLines(filename, offset, size, arch, inplace, arch_flags=""):
59 if not inplace:
/external/python/cpython3/Lib/
H A Dfileinput.py56 Optional in-place filtering: if the keyword argument inplace=1 is
83 def input(files=None, inplace=False, backup="", bufsize=0,
94 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
176 """FileInput([files[, inplace[, backup[, bufsize, [, mode[, openhook]]]]]])
188 def __init__(self, files=None, inplace=False, backup="", bufsize=0,
200 self._inplace = inplace
224 if inplace:
225 raise ValueError("FileInput cannot use an opening hook in inplace mode")
411 inplace = False
415 if o == '-i': inplace
[all...]
/external/clang/www/
H A Dbuiltins.py153 for line in fileinput.input(inplace=1):
/external/lisa/tools/scripts/power/
H A Dpower_average.py53 df.drop(df.index[end_idx:], inplace=True)
58 df.drop(df.index[:start_idx], inplace=True)
/external/lisa/libs/utils/
H A Dtrace.py363 inplace=True)
535 df.dropna(inplace=True, how='any')
565 fdf.rename(columns = { 'child_pid': 'pid' }, inplace=True)
568 fdf.dropna(inplace=True, how='any')
586 ret_df.rename(columns = { 'pid': direction + '_pid' }, inplace=True)
588 ret_df.drop('controller', axis=1, inplace=True)
589 ret_df.rename(columns = { 'cgroup': direction + '_' + controller }, inplace=True)
656 df.rename(columns={'utilization': 'util_avg'}, inplace=True)
657 df.rename(columns={'load': 'load_avg'}, inplace=True)
667 df.rename(columns={'utilization': 'util_avg'}, inplace
[all...]
/external/fio/engines/
H A De4defrag.c41 unsigned int inplace; member in struct:e4defrag_options
56 .name = "inplace",
59 .off1 = offsetof(struct e4defrag_options, inplace),
103 if (!o->inplace) {
155 if (o->inplace) {
186 if (o->inplace)
/external/brotli/python/
H A DMakefile36 @cd .. && $(PYTHON) setup.py build_ext --inplace
/external/python/cpython2/Lib/distutils/tests/
H A Dtest_build_ext.py286 # returns wrong result with --inplace
291 cmd.inplace = 1
302 cmd.inplace = 0
311 # inplace = 0, cmd.package = 'bar'
319 # inplace = 1, cmd.package = 'bar'
320 cmd.inplace = 1
337 cmd.inplace = 1
345 # building lxml.etree not inplace
346 cmd.inplace = 0
352 # building twisted.runner.portmap not inplace
[all...]
/external/trappy/tests/
H A Dtest_results.py77 res1.drop('step_wise', axis=1, level=1, inplace=True)
78 res2.drop('power_allocator', axis=1, level=1, inplace=True)
/external/eigen/unsupported/Eigen/src/FFT/
H A Dei_fftw_impl.h241 bool inplace = (dst==src); local
243 int64_t key = ( (nfft<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1;
250 bool inplace = (dst==src); local
252 int64_t key = ( ( (((int64_t)n0) << 30)|(n1<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1 ) + 1;
/external/lisa/tools/scripts/
H A Dcompare_janbench.py72 fdf.set_index('test_name', inplace=True)

Completed in 814 milliseconds

123