Searched defs:fs (Results 1 - 15 of 15) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
H A DPathCache.h23 namespace fs { namespace in namespace:mcld::sys
27 mcld::sys::fs::Path*,
33 } // namespace of fs
H A DRealPath.h19 namespace fs { namespace in namespace:mcld::sys
45 } // namespace of fs
55 struct less<mcld::sys::fs::RealPath> : public binary_function<
56 mcld::sys::fs::RealPath,
57 mcld::sys::fs::RealPath,
60 bool operator() (const mcld::sys::fs::RealPath& pX,
61 const mcld::sys::fs::RealPath& pY) const {
H A DDirectory.h25 namespace fs { namespace in namespace:mcld::sys
36 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(DirIterator& pIter);
89 mcld::sys::fs::Path m_Path;
94 mcld::sys::fs::PathCache m_Cache;
110 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(DirIterator& pIter);
113 typedef mcld::sys::fs::PathCache DirCache;
150 } // namespace of fs
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 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/unittests/
H A DDirIteratorTest.h16 namespace fs { namespace in namespace:mcld::sys
46 mcld::sys::fs::Directory *m_pDir;
/frameworks/compile/mclinker/include/mcld/MC/
H A DSearchDirs.h25 namespace fs { namespace in namespace:mcld::sys
27 } // namespace of fs
52 sys::fs::Path* find(const std::string& pNamespec, mcld::Input::Type pPreferType);
/frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
H A DpredictorHist.java65 public void pushSample( String fs) { argument
67 if (mCountHist.get(fs) != null )
68 histValue = histValue + mCountHist.get(fs);
69 mCountHist.put(fs,histValue);
76 public float getProbability(String fs) { argument
78 if (mCountHist.get(fs) != null )
79 res = ((float) mCountHist.get(fs)) / ((float)mSampleCount);
/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...]
/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/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_Control.c262 /* Double precision if (fc <= fs/110) */
263 /* Double precision if (fs/110 < fc < fs/85) & (Q>3) */
273 LVM_UINT32 fs = (LVM_UINT32)LVPSA_SampleRateTab[(LVM_UINT16)pParams->Fs]; /* Sample rate */ local
290 if ((LOW_FREQ * fs) >= (fc << 15))
293 * fc <= fs/110
299 if (((LOW_FREQ * fs) < (fc << 15)) && ((fc << 15) < (HIGH_FREQ * fs)) && (QFactor > 300))
302 * (fs/110 < fc < fs/8
[all...]
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddpb.cpp35 dpb->fs[num_fs] = NULL;
82 /* fs is an array pointers to AVCDecPicture */
83 dpb->fs[num_fs] = (AVCFrameStore*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCFrameStore), 101/*DEFAULT_ATTR*/);
84 if (dpb->fs[num_fs] == NULL)
90 dpb->fs[num_fs]->base_dpb = dpb->decoded_picture_buffer + dpb->used_size;
92 dpb->fs[num_fs]->IsReference = 0;
93 dpb->fs[num_fs]->IsLongTerm = 0;
94 dpb->fs[num_fs]->IsOutputted = 3;
95 dpb->fs[num_fs]->frame.RefIdx = refIdx++; /* this value will remain unchanged through out the encoding session */
96 dpb->fs[num_f
694 AVCFrameStore *fs = dpb->fs[idx]; local
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtns.c93 Word32 fs, /*!< Sampling frequency in Hertz */
101 shift = norm_l(fs);
102 lineNumber = (extract_l(fixmul((bandStartOffset[numOfBands] << 2),Div_32(freq << shift,fs << shift))) + 1) >> 1;
104 /* freq > fs/2 */
92 FreqToBandWithRounding(Word32 freq, Word32 fs, Word16 numOfBands, const Word16 *bandStartOffset) argument
/frameworks/av/media/libstagefright/codecs/avc/common/include/
H A Davcint_common.h557 struct tagFrameStore *fs[MAX_FS]; /* list of frame stored, actual buffer */ member in struct:tagDecPicBuffer
558 int num_fs; /* size of fs */

Completed in 4623 milliseconds