/external/webrtc/webrtc/modules/audio_coding/neteq/mock/ |
mock_dtmf_tone_generator.h | 25 int(int fs, int event, int attenuation));
|
/external/webrtc/webrtc/modules/audio_processing/ns/ |
noise_suppression_x.h | 41 * - fs : sampling frequency 49 int WebRtcNsx_Init(NsxHandle* nsxInst, uint32_t fs);
|
/hardware/bsp/intel/peripheral/bluetooth/bcm43340/ |
bt_bcm43340.rc | 5 on fs 12 on post-fs-data
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
FindFirstOpTest.java | 67 void exerciseStream(TestData.OfRef<Integer> data, Function<Stream<Integer>, Stream<Integer>> fs) { 68 Optional<Integer> r = exerciseTerminalOps(data, fs, s -> s.findFirst()); 70 Iterator<Integer> i = fs.apply(data.stream()).iterator(); 75 assertFalse(fs.apply(data.stream()).iterator().hasNext()); 87 void exerciseIntStream(TestData.OfInt data, Function<IntStream, IntStream> fs) { 88 OptionalInt r = exerciseTerminalOps(data, fs, s -> s.findFirst()); 90 PrimitiveIterator.OfInt i = fs.apply(data.stream()).iterator(); 95 assertFalse(fs.apply(data.stream()).iterator().hasNext()); 107 void exerciseLongStream(TestData.OfLong data, Function<LongStream, LongStream> fs) { 108 OptionalLong r = exerciseTerminalOps(data, fs, s -> s.findFirst()) [all...] |
InfiniteStreamWithLimitOpTest.java | 180 public void testSubsizedWithRange(String description, UnaryOperator<Stream<Long>> fs) { 185 stream(s -> fs.apply(s)). 191 public void testIntSubsizedWithRange(String description, UnaryOperator<IntStream> fs) { 196 stream(s -> fs.apply(s)). 202 public void testLongSubsizedWithRange(String description, UnaryOperator<LongStream> fs) { 207 stream(s -> fs.apply(s)). 213 public void testDoubleSubsizedWithRange(String description, UnaryOperator<DoubleStream> fs) { 218 stream(s -> fs.apply(s)). 227 public void testUnorderedFinite(String description, UnaryOperator<Stream<Long>> fs) { 232 stream(s -> fs.apply(s.filter(i -> true).unordered().boxed())) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
fsusequery.py | 36 fs The criteria to match the file system type. 60 fs = CriteriaDescriptor("fs_regex") variable in class:FSUseQuery 67 self.log.debug("FS: {0.fs!r}, regex: {0.fs_regex}".format(self)) 78 if self.fs and not self._match_regex( 79 fsu.fs, 80 self.fs,
|
genfsconquery.py | 35 fs The criteria to match the file system type. 62 fs = CriteriaDescriptor("fs_regex") variable in class:GenfsconQuery 70 self.log.debug("FS: {0.fs!r}, regex: {0.fs_regex}".format(self)) 80 if self.fs and not self._match_regex( 81 genfs.fs, 82 self.fs,
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
AbstractFsObject.java | 20 package de.waldheinz.fs;
|
BlockDevice.java | 20 package de.waldheinz.fs;
|
FileSystem.java | 20 package de.waldheinz.fs;
|
FsFile.java | 20 package de.waldheinz.fs;
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
DirectoryFullException.java | 19 package de.waldheinz.fs.fat;
|
/external/e2fsprogs/lib/ext2fs/ |
ext2fsP.h | 39 ext2_filsys fs; member in struct:ext2_struct_dblist 83 extern int ext2fs_process_dir_block(ext2_filsys fs, 98 extern void ext2fs_numeric_progress_init(ext2_filsys fs, 101 extern void ext2fs_numeric_progress_update(ext2_filsys fs, 104 extern void ext2fs_numeric_progress_close(ext2_filsys fs, 112 extern errcode_t ext2fs_alloc_generic_bmap(ext2_filsys fs, errcode_t magic, 145 extern int ext2fs_file_block_offset_too_big(ext2_filsys fs,
|
/external/opencv3/modules/features2d/src/ |
kaze.cpp | 153 void write(FileStorage& fs) const 155 fs << "extended" << (int)extended; 156 fs << "upright" << (int)upright; 157 fs << "threshold" << threshold; 158 fs << "octaves" << octaves; 159 fs << "sublevels" << sublevels; 160 fs << "diffusivity" << diffusivity;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/ |
id_policy.hpp | 52 virtual void usage_info( format_stream& fs ) const; 103 virtual void usage_info( format_stream& fs ) const 105 fs << BOOST_RT_PARAM_LITERAL( '{' ); 106 m_primary.usage_info( fs ); 107 fs << BOOST_RT_PARAM_LITERAL( '|' ); 108 m_secondary.usage_info( fs ); 109 fs << BOOST_RT_PARAM_LITERAL( '}' );
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
decoder_database.h | 41 DecoderInfo(NetEqDecoder ct, int fs, AudioDecoder* dec, bool ext) 42 : DecoderInfo(ct, "", fs, dec, ext) {} 45 int fs, 50 fs_hz(fs), 51 rtp_sample_rate_hz(fs),
|
dtmf_tone_generator.cc | 14 // a = 2*cos(2*pi*f/fs). The recursion is started with x[-1] = 0 and 15 // x[-2] = sin(2*pi*f/fs). (Note that with this initialization, the resulting 16 // sinusoid gets a "negative" rotation; x[n] = sin(-2*pi*f/fs * n + phi), but 37 // The filter coefficient a = 2*cos(2*pi*f/fs) for the low frequency tone, for 38 // sample rates fs = {8000, 16000, 32000, 48000} Hz, and events 0 through 15. 50 // The filter coefficient a = 2*cos(2*pi*f/fs) for the high frequency tone, for 51 // sample rates fs = {8000, 16000, 32000, 48000} Hz, and events 0 through 15. 63 // The initialization value x[-2] = sin(2*pi*f/fs) for the low frequency tone, 64 // for sample rates fs = {8000, 16000, 32000, 48000} Hz, and events 0-15. 76 // The initialization value x[-2] = sin(2*pi*f/fs) for the high frequency tone [all...] |
/frameworks/compile/mclinker/include/mcld/MC/ |
Input.h | 51 const sys::fs::Path& pPath, 56 const sys::fs::Path& pPath, 67 const sys::fs::Path& path() const { return m_Path; } 69 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; } 112 sys::fs::Path m_Path;
|
/external/autotest/client/tests/parallel_dd/ |
parallel_dd.py | 9 def initialize(self, fs, fstype = 'ext2', megabytes = 1000, streams = 2, 14 self.fs = fs 32 dd = 'dd if=/dev/zero of=%s bs=4k count=%d' % (self.fs.device, 40 dd = 'dd if=%s of=/dev/null bs=4k count=%d' % (self.fs.device, 85 device = self.fs.device 99 self.fs.unmount() 113 self.fs.mkfs(self.fstype) 114 self.fs.mount(None) 116 logging.info('------------- Timing fs operations ------------------' [all...] |
/system/core/libpixelflinger/codeflinger/ |
blending.cpp | 72 int fs = component==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc; local 74 if (fs==GGL_SRC_ALPHA_SATURATE && component==GGLFormat::ALPHA) 75 fs = GGL_ONE; 76 const int blending = blending_codes(fs, fd); 101 (fs==GGL_DST_COLOR && fd==GGL_ONE_MINUS_DST_COLOR) || 102 (fs==GGL_SRC_COLOR && fd==GGL_ONE_MINUS_SRC_COLOR) || 103 (fs==GGL_DST_ALPHA && fd==GGL_ONE_MINUS_DST_ALPHA) || 104 (fs==GGL_SRC_ALPHA && fd==GGL_ONE_MINUS_SRC_ALPHA); 107 (fs==GGL_ONE_MINUS_DST_COLOR && fd==GGL_DST_COLOR) || 108 (fs==GGL_ONE_MINUS_SRC_COLOR && fd==GGL_SRC_COLOR) || [all...] |
/external/e2fsprogs/debugfs/ |
htree.c | 31 static void htree_dump_leaf_node(ext2_filsys fs, ext2_ino_t ino, 47 errcode = ext2fs_bmap2(fs, ino, inode, buf, 0, blk, 0, &pblk); 64 (fs->super->s_flags & EXT2_FLAGS_UNSIGNED_HASH)) 67 while (offset < fs->blocksize) { 69 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len); 76 if (((offset + rec_len) > fs->blocksize) || 88 thislen, fs->super->s_hash_seed, 108 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino, 114 static void htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino, 147 htree_dump_int_block(fs, ino, inode, rootnode [all...] |
/art/compiler/utils/mips64/ |
assembler_mips64.h | 236 void AddS(FpuRegister fd, FpuRegister fs, FpuRegister ft); 237 void SubS(FpuRegister fd, FpuRegister fs, FpuRegister ft); 238 void MulS(FpuRegister fd, FpuRegister fs, FpuRegister ft); 239 void DivS(FpuRegister fd, FpuRegister fs, FpuRegister ft); 240 void AddD(FpuRegister fd, FpuRegister fs, FpuRegister ft); 241 void SubD(FpuRegister fd, FpuRegister fs, FpuRegister ft); 242 void MulD(FpuRegister fd, FpuRegister fs, FpuRegister ft); 243 void DivD(FpuRegister fd, FpuRegister fs, FpuRegister ft); 244 void SqrtS(FpuRegister fd, FpuRegister fs); 245 void SqrtD(FpuRegister fd, FpuRegister fs); [all...] |
/external/v8/src/mips64/ |
assembler-mips64.h | 861 void sel(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft); 862 void sel_s(FPURegister fd, FPURegister fs, FPURegister ft); 863 void sel_d(FPURegister fd, FPURegister fs, FPURegister ft); 865 void seleqz(SecondaryField fmt, FPURegister fd, FPURegister fs, 868 void selnez(SecondaryField fmt, FPURegister fd, FPURegister fs, 870 void seleqz_d(FPURegister fd, FPURegister fs, FPURegister ft); 871 void seleqz_s(FPURegister fd, FPURegister fs, FPURegister ft); 872 void selnez_d(FPURegister fd, FPURegister fs, FPURegister ft); 873 void selnez_s(FPURegister fd, FPURegister fs, FPURegister ft); 875 void movz_s(FPURegister fd, FPURegister fs, Register rt) [all...] |
/external/llvm/lib/Object/ |
FunctionIndexObjectFile.cpp | 54 sys::fs::file_magic Type = sys::fs::identify_magic(Object.getBuffer()); 56 case sys::fs::file_magic::bitcode: 58 case sys::fs::file_magic::elf_relocatable: 59 case sys::fs::file_magic::macho_object: 60 case sys::fs::file_magic::coff_object: { 113 sys::fs::file_magic Type = sys::fs::identify_magic(Object.getBuffer()); 115 case sys::fs::file_magic::bitcode: {
|
/external/opencv3/apps/traincascade/ |
traincascade_features.h | 33 void _writeFeatures( const std::vector<Feature> features, cv::FileStorage &fs, const cv::Mat& featureMap ) 35 fs << FEATURES << "["; 40 fs << "{"; 41 features[fi].write( fs ); 42 fs << "}"; 44 fs << "]"; 53 virtual void write( cv::FileStorage &fs ) const = 0; 68 virtual void write( cv::FileStorage &fs ) const; 82 virtual void writeFeatures( cv::FileStorage &fs, const cv::Mat& featureMap ) const = 0;
|