Searched refs:fs (Results 26 - 50 of 80) sorted by relevance

1234

/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h9 // This file declares the mcld::sys::fs:: namespace. It follows TR2/boost
28 namespace fs { namespace in namespace:mcld::sys
158 } // namespace of fs
168 struct less<mcld::sys::fs::Path> : public binary_function<mcld::sys::fs::Path,
169 mcld::sys::fs::Path,
172 bool operator() (const mcld::sys::fs::Path& pX,const mcld::sys::fs::Path& pY) const {
H A DHandleToArea.h83 bool erase(const sys::fs::Path& pPath);
85 Result findFirst(const sys::fs::Path& pPath);
87 ConstResult findFirst(const sys::fs::Path& pPath) const;
H A DMemoryAreaFactory.h50 MemoryArea* produce(const sys::fs::Path& pPath,
54 MemoryArea* produce(const sys::fs::Path& pPath,
H A DFileSystem.h9 // This file declares the mcld::sys::fs:: namespace. It follows TR2/boost
29 namespace fs { namespace in namespace:mcld::sys
88 return f.type() == mcld::sys::fs::DirectoryFile;
105 mcld::sys::fs::PathCache::entry_type* bring_one_into_cache(DirIterator& pIter);
117 } // namespace of fs
/frameworks/compile/mclinker/lib/MC/
H A DSearchDirs.cpp45 mcld::sys::fs::Path* SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType)
62 if(mcld::sys::fs::detail::shared_library_extension == entry.path()->extension().native()) {
75 mcld::sys::fs::detail::static_library_extension == entry.path()->extension().native()) {
H A DInputFactory.cpp25 const sys::fs::Path& pPath,
H A DMCLDInput.cpp24 const sys::fs::Path& pPath,
H A DMCLDDirectory.cpp13 using namespace mcld::sys::fs;
92 void MCLDDirectory::setSysroot(const sys::fs::Path& pSysroot)
/frameworks/compile/mclinker/unittests/
H A DFileHandleTest.cpp48 mcld::sys::fs::Path path(TOPDIR);
64 mcld::sys::fs::Path path(TOPDIR);
88 mcld::sys::fs::Path path(TOPDIR);
H A DFragmentRefTest.cpp18 using namespace mcld::sys::fs;
19 using namespace mcld::sys::fs::detail;
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputFactory.h45 const sys::fs::Path& pPath,
H A DMCLDOutput.h43 explicit Output(const sys::fs::Path& pRealPath,
H A DMCLDOptions.h69 const sys::fs::Path& sysroot() const
72 void setSysroot(const sys::fs::Path &pPath);
233 sys::fs::RealPath m_Sysroot;
H A DMCLDInput.h52 const sys::fs::Path& pPath,
/frameworks/compile/libbcc/include/bcc/
H A DLinker.h31 namespace sys { namespace fs { namespace in namespace:mcld::sys
35 } } // end namespace sys::fs
100 enum ErrorCode openFile(const mcld::sys::fs::Path& pPath,
/frameworks/compile/mclinker/tools/mcld/include/alone/
H A DLinker.h24 namespace sys { namespace fs { namespace in namespace:mcld::sys
28 } } // end namespace sys::fs
93 enum ErrorCode openFile(const mcld::sys::fs::Path& pPath,
/frameworks/compile/mclinker/lib/Support/
H A DHandleToArea.cpp41 bool HandleToArea::erase(const sys::fs::Path& pPath)
59 HandleToArea::Result HandleToArea::findFirst(const sys::fs::Path& pPath)
77 HandleToArea::ConstResult HandleToArea::findFirst(const sys::fs::Path& pPath) const
H A DRealPath.cpp12 using namespace mcld::sys::fs;
H A DCommandLine.cpp20 // parser<mcld::sys::fs::Path>
22 bool parser<mcld::sys::fs::Path>::parse(llvm::cl::Option &O,
25 mcld::sys::fs::Path &Val)
33 void parser<mcld::sys::fs::Path>::printOptionDiff(const llvm::cl::Option &O,
34 const mcld::sys::fs::Path &V,
35 parser<mcld::sys::fs::Path>::OptVal Default,
50 void parser<mcld::sys::fs::Path>::anchor()
H A DFileHandle.cpp70 bool FileHandle::open(const sys::fs::Path& pPath,
95 bool FileHandle::open(const sys::fs::Path& pPath,
105 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm);
166 if (-1 == sys::fs::detail::ftruncate(m_Handler, pSize)) {
185 ssize_t read_bytes = sys::fs::detail::pread(m_Handler,
209 ssize_t write_bytes = sys::fs::detail::pwrite(m_Handler,
H A DDirectory.cpp13 using namespace mcld::sys::fs;
52 mcld::sys::fs::detail::open_dir(*this);
62 mcld::sys::fs::detail::open_dir(*this);
H A DMemoryAreaFactory.cpp41 MemoryAreaFactory::produce(const sys::fs::Path& pPath,
64 MemoryAreaFactory::produce(const sys::fs::Path& pPath,
/frameworks/compile/mclinker/unittests/Linker/
H A DTestLinker.h55 void setSysRoot(const mcld::sys::fs::Path &pPath);
60 void addObject(const mcld::sys::fs::Path &pPath)
73 bool setOutput(const sys::fs::Path &pPath);
/frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
H A DShadersTestRS.java113 ProgramFragment.Builder fs;
115 fs = new ProgramFragment.Builder(mRS);
116 fs.setShader(mRes, R.raw.vignette_fs);
117 fs.addConstant(mFSVignetteConst.getAllocation().getType());
118 fs.addTexture(Program.TextureType.TEXTURE_2D);
119 mPFVignette = fs.create();
/frameworks/av/media/libeffects/lvm/lib/Eq/src/
H A DLVEQNB_Control.c134 /* Double precision if (fc <= fs/110) */
135 /* Double precision if (fs/110 < fc < fs/85) & (Q>3) */
146 LVM_UINT32 fs = (LVM_UINT32)LVEQNB_SampleRateTab[(LVM_UINT16)pParams->SampleRate]; /* Sample rate */ local
166 if ((fc << 15) <= (LOW_FREQ * fs))
169 * fc <= fs/110
173 else if (((fc << 15) <= (HIGH_FREQ * fs)) && (QFactor > 300))
176 * (fs/110 < fc < fs/85) & (Q>3)
185 if (fc > (fs >>
[all...]

Completed in 2568 milliseconds

1234