/external/fio/examples/ |
e4defrag2.fio | 20 inplace=0 30 inplace=0 35 inplace=0 43 inplace=1 54 inplace=1
|
e4defrag.fio | 15 inplace=0 27 inplace=0
|
/external/libcxx/test/utilities/optional/optional.inplace/ |
Android.mk | 17 test_makefile := external/libcxx/test/utilities/optional/optional.inplace/Android.mk 19 test_name := utilities/optional/optional.inplace/in_place_t
|
/external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/ |
vc98_swap.py | 13 for l in fileinput.input(sp, inplace = 1) :
25 for l in fileinput.input(sp, inplace = 1) :
|
/external/fio/engines/ |
e4defrag.c | 40 unsigned int inplace; member in struct:e4defrag_options 54 .name = "inplace", 56 .off1 = offsetof(struct e4defrag_options, inplace), 100 if (!o->inplace) { 152 if (o->inplace) { 178 if (o->inplace)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
fileinput.py | 56 Optional in-place filtering: if the keyword argument inplace=1 is 91 def input(files=None, inplace=0, backup="", bufsize=0, 93 """input([files[, inplace[, backup[, mode[, openhook]]]]]) 103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]]) 197 def __init__(self, files=None, inplace=0, backup="", bufsize=0, 209 self._inplace = inplace 227 if inplace and openhook: 228 raise ValueError("FileInput cannot use an opening hook in inplace mode") 399 inplace = [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
fileinput.py | 56 Optional in-place filtering: if the keyword argument inplace=1 is 91 def input(files=None, inplace=0, backup="", bufsize=0, 93 """input([files[, inplace[, backup[, mode[, openhook]]]]]) 103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]]) 197 def __init__(self, files=None, inplace=0, backup="", bufsize=0, 209 self._inplace = inplace 227 if inplace and openhook: 228 raise ValueError("FileInput cannot use an opening hook in inplace mode") 399 inplace = [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/ |
deps.py | 55 # inplace=1 creates a backup file and re-directs stdout to the file 56 for line in fileinput.FileInput(self._path, inplace=1):
|
/external/eigen/Eigen/src/Householder/ |
BlockHouseholder.h | 37 // FIXME add .noalias() once the triangular product can work inplace 59 // FIXME add .noalias() once the triangular product can work inplace
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 102 print '%s. Inplace (bs=%s)' % (start+5, bs) 105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs) 202 # cannot use openhook and inplace mode 203 fi = FileInput(inplace=1, openhook=lambda f,m: None) 204 self.fail("FileInput should raise if both inplace "
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 102 print '%s. Inplace (bs=%s)' % (start+5, bs) 105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs) 202 # cannot use openhook and inplace mode 203 fi = FileInput(inplace=1, openhook=lambda f,m: None) 204 self.fail("FileInput should raise if both inplace "
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_build_ext.py | 286 # returns wrong result with --inplace 297 cmd.inplace = 1 308 cmd.inplace = 0 317 # inplace = 0, cmd.package = 'bar' 325 # inplace = 1, cmd.package = 'bar' 326 cmd.inplace = 1 343 cmd.inplace = 1 351 # building lxml.etree not inplace 352 cmd.inplace = 0 358 # building twisted.runner.portmap not inplace [all...] |
setuptools_build_ext.py | 46 """Build extensions in build directory, then copy if --inplace""" 47 old_inplace, self.inplace = self.inplace, 0 49 self.inplace = old_inplace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_build_ext.py | 286 # returns wrong result with --inplace 297 cmd.inplace = 1 308 cmd.inplace = 0 317 # inplace = 0, cmd.package = 'bar' 325 # inplace = 1, cmd.package = 'bar' 326 cmd.inplace = 1 343 cmd.inplace = 1 351 # building lxml.etree not inplace 352 cmd.inplace = 0 358 # building twisted.runner.portmap not inplace [all...] |
setuptools_build_ext.py | 46 """Build extensions in build directory, then copy if --inplace""" 47 old_inplace, self.inplace = self.inplace, 0 49 self.inplace = old_inplace
|
/external/chromium_org/v8/tools/ |
disasm.py | 56 def GetDisasmLines(filename, offset, size, arch, inplace, arch_flags=""): 58 if not inplace:
|
/external/valgrind/main/mpi/ |
Makefile.am | 66 all-local: inplace-noinst_PROGRAMS inplace-noinst_DSYMS
|
/external/chromium_org/third_party/skia/third_party/harfbuzz/src/ |
harfbuzz-buffer.c | 43 * - replace_glyph() is called with inplace=TRUE 49 * As soon an add_output_glyph[s]() or replace_glyph() with inplace=FALSE is 354 HB_Bool inplace ) 359 if ( inplace )
|
harfbuzz-buffer-private.h | 67 HB_Bool inplace );
|
/external/eigen/unsupported/Eigen/src/FFT/ |
ei_fftw_impl.h | 241 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;
|
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/ |
LVCS_Process.c | 53 /* block. When processing is inplace a copy of the input signal is made in scratch */ 81 * Check if the processing is inplace 85 /* Processing inplace */
|
/frameworks/av/media/libeffects/lvm/lib/Bass/src/ |
LVDBE_Private.h | 67 #define LVDBE_SCRATCHBUFFERS_INPLACE 6 /* Number of buffers required for inplace processing */
|
/frameworks/av/media/libeffects/lvm/lib/Eq/src/ |
LVEQNB_Private.h | 49 #define LVEQNB_SCRATCHBUFFERS 4 /* Number of buffers required for inplace processing */
|
/prebuilts/misc/common/swig/include/2.0.11/ruby/ |
rubyopers.swg | 31 /* Ignored inplace operators */
|
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/ |
LVM_Buffers.c | 89 pBuffer->SamplesToOutput = 0; /* Samples to output is same as number read for inplace processing */ 322 *pProcessed = pDest; /* Process in the output buffer, now inplace */ 372 *pProcessed = pInstance->pOutputSamples; /* Process in the output buffer, now inplace */ 401 *pProcessed = pBuffer->pScratch; /* Process in the output buffer, now inplace */ 433 /* - Works with inplace or outplace processing automatically */ 448 /* To ensure correct operation with inplace buffering the number of samples to output*/ [all...] |