HomeSort by relevance Sort by last modified time
    Searched defs:fs (Results 126 - 150 of 704) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
AbstractProcessTask.java 37 FileSet fs = (FileSet)filesets.elementAt(i); local
38 DirectoryScanner ds = fs.getDirectoryScanner(p);
40 File dir = fs.getDir(p);
  /external/opencv3/modules/cudaimgproc/test/
test_mean_shift.cpp 99 cv::FileStorage fs; local
101 fs.open(std::string(cvtest::TS::ptr()->get_data_path()) + "meanshift/spmap.yaml", cv::FileStorage::READ);
103 fs.open(std::string(cvtest::TS::ptr()->get_data_path()) + "meanshift/spmap_CC1X.yaml", cv::FileStorage::READ);
104 ASSERT_TRUE(fs.isOpened());
107 fs["spmap"] >> spmap_template;
  /external/skia/tests/
Float16Test.cpp 58 const float fs[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0 }; local
62 SkOpts::float_to_half(hscratch, fs, 7);
67 REPORTER_ASSERT(reporter, 0 == memcmp(fscratch, fs, sizeof(fs)));
FontMgrTest.cpp 104 SkFontStyle fs; local
105 set->getStyle(j, &fs, &sname);
113 fs.weight(), fs.width(), fs.isItalic());
TextBlobCacheTest.cpp 99 SkFontStyle fs; local
100 set->getStyle(j, &fs, nullptr);
  /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));
expand_unittest.cc 28 int fs = 8000; local
34 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels);
38 int fs = 8000; local
46 &statistics, fs, channels);
  /external/webrtc/webrtc/tools/rtcbot/
main.js 18 var fs = require('fs'); variable
46 var script = vm.createScript(fs.readFileSync(filename), filename);
52 fs.readdir('test', function (error, list) {
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Control.c 134 /* 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 >> 1)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Directory.h 22 namespace fs { namespace in namespace:mcld::sys
32 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(
90 mcld::sys::fs::Path m_Path;
95 mcld::sys::fs::PathCache m_Cache;
110 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(
115 typedef mcld::sys::fs::PathCache DirCache;
151 } // namespace fs
FileSystem.h 9 // This file declares the mcld::sys::fs:: namespace. It follows TR2/boost
26 namespace fs { namespace in namespace:mcld::sys
89 mcld::sys::fs::PathCache::entry_type* bring_one_into_cache(DirIterator& pIter);
108 } // namespace fs
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 {
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 14 namespace fs { namespace in namespace:mcld::sys
57 : Directory(sys::fs::Path(pPath), st, symlink_st) {
236 } // namespace fs
Path.cpp 23 namespace fs { namespace in namespace:mcld::sys
200 mcld::sys::fs::Path result = pLHS;
205 } // namespace fs
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
FeatureAssembly.java 104 String fs = s; local
108 fs = fs + "+" + mAggregatorManager.getDataMap(f).get(f);
110 return fs;