/external/opencv/ml/src/ |
mlann_mlp.cpp | [all...] |
/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 ext2fs_blocks_count_set(fs->super, 100); 247 retval = ext2fs_read_bb_FILE(fs, f, &new_bb, invalid_proc) [all...] |
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
WindowsFakeFileSystemTest.groovy | 175 WindowsFakeFileSystem fs = new WindowsFakeFileSystem() 176 fs.add(new DirectoryEntry(EXISTING_DIR)) 177 fs.add(new FileEntry(EXISTING_FILE, EXISTING_FILE_CONTENTS)) 178 fs.createParentDirectoriesAutomatically = false 179 return fs
|
/external/clang/include/clang/Basic/ |
VirtualFileSystem.h | 34 llvm::sys::fs::UniqueID UID; 39 llvm::sys::fs::file_type Type; 40 llvm::sys::fs::perms Perms; 46 Status() : Type(llvm::sys::fs::file_type::status_error) {} 47 Status(const llvm::sys::fs::file_status &Status); 48 Status(StringRef Name, llvm::sys::fs::UniqueID UID, 50 uint64_t Size, llvm::sys::fs::file_type Type, 51 llvm::sys::fs::perms Perms); 55 static Status copyWithNewName(const llvm::sys::fs::file_status &In, 61 /// @name Status interface from llvm::sys::fs [all...] |
/external/v8/src/mips/ |
disasm-mips.cc | 500 if (format[1] == 's') { // 'fs: fs register. 518 if (format[1] == 's') { // 'fs: fs register. 782 Format(instr, "rint.'t 'fd, 'fs"); 785 Format(instr, "min.'t 'fd, 'fs, 'ft"); 788 Format(instr, "max.'t 'fd, 'fs, 'ft"); 791 Format(instr, "mina.'t 'fd, 'fs, 'ft"); 794 Format(instr, "maxa.'t 'fd, 'fs, 'ft"); 797 Format(instr, "sel.'t 'fd, 'fs, 'ft") [all...] |
/art/compiler/utils/mips64/ |
assembler_mips64.cc | 156 void Mips64Assembler::EmitFR(int opcode, int fmt, FpuRegister ft, FpuRegister fs, FpuRegister fd, 159 CHECK_NE(fs, kNoFpuRegister); 164 static_cast<uint32_t>(fs) << kFsShift | 701 void Mips64Assembler::AddS(FpuRegister fd, FpuRegister fs, FpuRegister ft) { 702 EmitFR(0x11, 0x10, ft, fs, fd, 0x0); 705 void Mips64Assembler::SubS(FpuRegister fd, FpuRegister fs, FpuRegister ft) { 706 EmitFR(0x11, 0x10, ft, fs, fd, 0x1); 709 void Mips64Assembler::MulS(FpuRegister fd, FpuRegister fs, FpuRegister ft) { 710 EmitFR(0x11, 0x10, ft, fs, fd, 0x2); 713 void Mips64Assembler::DivS(FpuRegister fd, FpuRegister fs, FpuRegister ft) [all...] |
/external/fio/lib/ |
rand.c | 97 unsigned long fill_random_buf(struct frand_state *fs, void *buf, 100 unsigned long r = __rand(fs); 103 r *= (unsigned long) __rand(fs); 183 unsigned long fill_random_buf_percentage(struct frand_state *fs, void *buf, 188 unsigned long r = __rand(fs); 191 r *= (unsigned long) __rand(fs);
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
dtmf_tone_generator_unittest.cc | 156 const int fs = 16000; // Valid sample rate. local 161 tone_gen.Init(fs, -1, attenuation)); 164 tone_gen.Init(fs, 16, attenuation)); 166 EXPECT_EQ(DtmfToneGenerator::kParameterError, tone_gen.Init(fs, event, -1)); 168 EXPECT_EQ(DtmfToneGenerator::kParameterError, tone_gen.Init(fs, event, 37)); 172 ASSERT_EQ(0, tone_gen.Init(fs, event, attenuation));
|
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerStressTest.java | 157 StatFs fs = new StatFs(CACHE_DIR); local 158 int blockSize = fs.getBlockSize(); 159 int availableBlocks = fs.getAvailableBlocks(); 177 while (fs.getAvailableBlocks() >= remainderSizeBlocks) { 179 fs.restat(CACHE_DIR); 192 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 27 namespace fs { namespace in namespace:mcld::sys 149 } // namespace fs 159 struct less<mcld::sys::fs::Path> 160 : public binary_function<mcld::sys::fs::Path, mcld::sys::fs::Path, bool> { 161 bool operator()(const mcld::sys::fs::Path& pX, 162 const mcld::sys::fs::Path& pY) const {
|
FileHandle.h | 72 bool open(const sys::fs::Path& pPath, OpenMode pMode, Permission pPerm); 94 const sys::fs::Path& path() const { return m_Path; } 121 sys::fs::Path m_Path;
|
/frameworks/compile/mclinker/lib/Support/ |
FileHandle.cpp | 76 bool FileHandle::open(const sys::fs::Path& pPath, 86 m_Handler = sys::fs::detail::open(pPath, oflag(pMode)); 88 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), 150 if (sys::fs::detail::ftruncate(m_Handler, pSize) == -1) { 169 sys::fs::detail::pread(m_Handler, pMemBuffer, pLength, pStartOffset); 191 sys::fs::detail::pwrite(m_Handler, pMemBuffer, pLength, pStartOffset);
|
/external/caliper/caliper/src/test/java/com/google/caliper/config/ |
CaliperConfigLoaderTest.java | 52 FileOutputStream fs = new FileOutputStream(tempConfigFile); local 53 userProperties.store(fs, null); 54 fs.close();
|
/external/compiler-rt/lib/asan/ |
asan_fake_stack.cc | 180 void SetTLSFakeStack(FakeStack *fs) { 181 fake_stack_tls = fs; 185 void SetTLSFakeStack(FakeStack *fs) { } 195 if (FakeStack *fs = GetTLSFakeStack()) 196 return fs; 203 FakeStack *fs = GetFakeStackFast(); local 204 if (!fs) return 0; 207 FakeFrame *ff = fs->Allocate(fs->stack_size_log(), class_id, real_stack); 251 FakeStack *fs = reinterpret_cast<FakeStack*>(fake_stack) local [all...] |
/external/opencv3/apps/traincascade/ |
HOGfeatures.cpp | 42 //void CvHOGEvaluator::writeFeatures( FileStorage &fs, const Mat& featureMap ) const 44 // _writeFeatures( features, fs, featureMap ); 47 void CvHOGEvaluator::writeFeatures( FileStorage &fs, const Mat& featureMap ) const 52 fs << FEATURES << "["; 56 fs << "{"; 59 features[featIdx].write( fs, componentIdx ); 60 fs << "}"; 62 fs << "]"; 127 void CvHOGEvaluator::Feature::write(FileStorage &fs) const 129 fs << CC_RECTS << "[" [all...] |
/frameworks/compile/mclinker/unittests/ |
FileHandleTest.cpp | 41 mcld::sys::fs::Path path(TOPDIR); 59 mcld::sys::fs::Path path(TOPDIR); 83 mcld::sys::fs::Path path(TOPDIR);
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/ |
tlspie1.s | 12 movl %fs:foo2@TPOFF, %ebx 13 addl %fs:foo1@TPOFF, %ebx 14 addl %fs:(%rax), %ebx
|
/cts/tests/tests/security/src/android/security/cts/ |
BannedFilesTest.java | 149 FileUtils.FileStatus fs = new FileUtils.FileStatus(); local 150 if (!FileUtils.getFileStatus(file, fs, false)) { 153 assertTrue("File \"" + file + "\" is setUID", (fs.mode & FileUtils.S_ISUID) == 0); 154 assertTrue("File \"" + file + "\" is setGID", (fs.mode & FileUtils.S_ISGID) == 0);
|
/development/ndk/platforms/android-3/include/linux/ |
pagemap.h | 16 #include <linux/fs.h>
|
/external/clang/test/Sema/ |
ms-inline-asm.c | 98 __asm { mov eax, fs:[0] A.a } 99 __asm { mov eax, fs:[0].A.a } 100 __asm { mov eax, fs:[0].a } // expected-error {{Unable to lookup field reference!}} 101 __asm { mov eax, fs:[0]. A.a } // expected-error {{Unexpected token type!}}
|
/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;
|
scantest.c | 92 ext2_filsys fs; local 104 0, 0, unix_io_manager, &fs); 111 retval = ext2fs_open_inode_scan(fs, 0, &scan); 135 ext2fs_close(fs);
|
/external/e2fsprogs/lib/quota/ |
quotaio.h | 64 ext2_filsys fs; member in struct:quota_file 137 errcode_t quota_file_open(struct quota_handle *h, ext2_filsys fs, 142 errcode_t quota_file_create(struct quota_handle *h, ext2_filsys fs, 151 errcode_t quota_inode_truncate(ext2_filsys fs, ext2_ino_t ino);
|
/external/e2fsprogs/resize/ |
resize2fs.h | 141 extern errcode_t resize_fs(ext2_filsys fs, blk64_t *new_size, int flags, 146 extern errcode_t adjust_fs_info(ext2_filsys fs, ext2_filsys old_fs, 149 extern blk64_t calculate_minimum_resize_size(ext2_filsys fs, int flags); 167 extern errcode_t online_resize_fs(ext2_filsys fs, const char *mtpt,
|