HomeSort by relevance Sort by last modified time
    Searched refs:fs (Results 301 - 325 of 1406) sorted by null

<<11121314151617181920>>

  /external/opencv/ml/src/
mlrtrees.cpp 161 void CvForestTree::read( CvFileStorage* fs, CvFileNode* fnode, CvRTrees* _forest, CvDTreeTrainData* _data )
163 CvDTree::read( fs, fnode, _data );
578 void CvRTrees::write( CvFileStorage* fs, const char* name )
589 cvStartWriteStruct( fs, name, CV_NODE_MAP, CV_TYPE_NAME_ML_RTREES );
591 cvWriteInt( fs, "nclasses", nclasses );
592 cvWriteInt( fs, "nsamples", nsamples );
593 cvWriteInt( fs, "nactive_vars", (int)cvSum(active_var_mask).val[0] );
594 cvWriteReal( fs, "oob_error", oob_error );
597 cvWrite( fs, "var_importance", var_importance );
599 cvWriteInt( fs, "ntrees", ntrees )
    [all...]
mlann_mlp.cpp     [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/valgrind/main/perf/
vg_perf.in 128 my @fs;
144 push(@fs, $arg);
153 (0 != @fs) or die "No test files or directories specified\n";
155 return @fs;
269 printf("%4.2fs", $tNative);
291 printf("%4.1fs (%4.1fx,", $tTool, $tTool/$tNative);
339 my @fs = glob "*";
340 my $found_tests = (0 != (grep { $_ =~ /\.vgperf$/ } @fs));
345 foreach my $f (@fs) {
375 my @fs = process_command_line()
    [all...]
  /external/chromium_org/content/test/data/fileapi/
quota_test.js 5 function truncateFailByQuota(fs) {
6 fs.root.getFile('fd', {create: false, exclusive: false}, function(fileEntry) {
24 function requestFileSystemSuccess(fs) {
25 fs.root.getFile('fd', {create: true, exclusive: false}, function(fileEntry) {
34 truncateFailByQuota(fs);
  /external/e2fsprogs/lib/ext2fs/
tst_badblocks.c 206 static void invalid_proc(ext2_filsys fs, blk_t blk)
221 ext2_filsys fs; local
224 fs = malloc(sizeof(struct struct_ext2_filsys));
225 memset(fs, 0, sizeof(struct struct_ext2_filsys));
226 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
227 fs->super = malloc(SUPERBLOCK_SIZE);
228 memset(fs->super, 0, SUPERBLOCK_SIZE);
229 fs->super->s_first_data_block = 1;
230 fs->super->s_blocks_count = 100;
247 retval = ext2fs_read_bb_FILE(fs, f, &new_bb, invalid_proc)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
finder_unittest.py 42 self.fs = MockFileSystem(files)
43 self.finder = Finder(self.fs)
78 self.assertTrue(self.fs.exists('/foo2/bar2/missing.pyc'))
80 self.assertFalse(self.fs.exists('/foo2/bar2/missing.pyc'))
93 self.fs.chdir('/foo/bar')
100 self.fs.chdir('/')
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerStressTest.java 155 StatFs fs = new StatFs(CACHE_DIR); local
156 int blockSize = fs.getBlockSize();
157 int availableBlocks = fs.getAvailableBlocks();
175 while (fs.getAvailableBlocks() >= remainderSizeBlocks) {
177 fs.restat(CACHE_DIR);
190 long spaceAvailable = fs.getAvailableBlocks() * blockSize;
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 83 FileOutputStream fs = local
87 fs.write(buf);
88 fs.flush();
93 fs.write(buf);
94 fs.flush();
95 fs.close();
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 9 // This file declares the mcld::sys::fs::Path. It follows TR2/boost
29 namespace fs { namespace in namespace:mcld::sys
155 } // namespace of fs
165 struct less<mcld::sys::fs::Path> : public binary_function<mcld::sys::fs::Path,
166 mcld::sys::fs::Path,
169 bool operator() (const mcld::sys::fs::Path& pX,const mcld::sys::fs::Path& pY) const {
FileHandle.h 79 bool open(const sys::fs::Path& pPath,
103 const sys::fs::Path& path() const
134 sys::fs::Path m_Path;
HandleToArea.h 82 bool erase(const sys::fs::Path& pPath);
84 Result findFirst(const sys::fs::Path& pPath);
86 ConstResult findFirst(const sys::fs::Path& pPath) const;
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 78 bool FileHandle::open(const sys::fs::Path& pPath,
89 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
91 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm);
155 if (-1 == sys::fs::detail::ftruncate(m_Handler, pSize)) {
174 ssize_t read_bytes = sys::fs::detail::pread(m_Handler,
198 ssize_t write_bytes = sys::fs::detail::pwrite(m_Handler,
  /frameworks/compile/mclinker/unittests/
FileHandleTest.cpp 46 mcld::sys::fs::Path path(TOPDIR);
63 mcld::sys::fs::Path path(TOPDIR);
87 mcld::sys::fs::Path path(TOPDIR);
  /bionic/libc/kernel/common/linux/
pagemap.h 22 #include <linux/fs.h>
  /development/ndk/platforms/android-3/include/linux/
pagemap.h 16 #include <linux/fs.h>
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_exa_tgsi.h 46 void *fs; member in struct:xorg_shader
  /external/e2fsprogs/e2fsck/
ehandler.c 32 ext2_filsys fs = (ext2_filsys) channel->app_data; local
35 ctx = (e2fsck_t) fs->priv_data;
79 ext2_filsys fs = (ext2_filsys) channel->app_data; local
82 ctx = (e2fsck_t) fs->priv_data;
iscan.c 99 ext2_filsys fs; local
110 0, 0, unix_io_manager, &fs);
117 ehandler_init(fs->io);
119 retval = ext2fs_open_inode_scan(fs, inode_buffer_blocks, &scan);
scantest.c 95 ext2_filsys fs; local
107 0, 0, unix_io_manager, &fs);
114 retval = ext2fs_open_inode_scan(fs, 0, &scan);
138 ext2fs_close(fs);
  /external/e2fsprogs/resize/
resize2fs.h 125 extern errcode_t resize_fs(ext2_filsys fs, blk_t *new_size, int flags,
130 extern errcode_t adjust_fs_info(ext2_filsys fs, ext2_filsys old_fs,
133 extern blk_t calculate_minimum_resize_size(ext2_filsys fs);
148 extern errcode_t online_resize_fs(ext2_filsys fs, const char *mtpt,
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 21 raw_fd_ostream OS(Path, ErrorInfo, sys::fs::F_Binary);
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa_tgsi.h 46 void *fs; member in struct:xorg_shader
  /external/oprofile/module/
compat.c 30 struct dentry * root = current->fs->root;
  /external/webrtc/src/common_audio/vad/include/
webrtc_vad.h 139 * - fs : sampling frequency (Hz): 8000, 16000, or 32000
151 WebRtc_Word16 fs,

Completed in 3096 milliseconds

<<11121314151617181920>>