Searched defs:fs (Results 1 - 25 of 458) sorted by path

1234567891011>>

/external/aac/libAACenc/src/
H A Daacenc_tns.cpp328 const INT fs,
336 lineNumber = (freq*bandStartOffset[numOfBands]*4/fs+1)/2;
338 /* freq > fs/2 */
326 FDKaacEnc_FreqToBandWithRounding( const INT freq, const INT fs, const INT numOfBands, const INT *bandStartOffset ) argument
/external/aac/libSBRdec/src/
H A Dlpp_tran.cpp768 UINT fs, /*!< Sample Frequency */
800 fs);
846 UINT fs /*!< SBR output sampling frequency */
878 /* ISO/IEC 14496-3 (Figure 4.48): goalSb = round( 2.048e6 / fs ) */
879 desiredBorder = (((2048000*2) / fs) + 1) >> 1;
970 startFreqHz = ( (lsb + xoverOffset)*fs ) >> 7; /* Shift does a division by 2*(64) */
758 createLppTransposer(HANDLE_SBR_LPP_TRANS hs, TRANSPOSER_SETTINGS *pSettings, const int highBandStartSb, UCHAR *v_k_master, const int numMaster, const int usb, const int timeSlots, const int nCols, UCHAR *noiseBandTable, const int noNoiseBands, UINT fs, const int chan, const int overlap ) argument
H A Dsbrdec_freq_sca.cpp117 getStartBand(UINT fs, /*!< Output sampling frequency */ argument
124 fsMapped = fs;
169 getStopBand(UINT fs, /*!< Output sampling frequency */ argument
182 if (fs < 32000) {
183 stopMin = (((2*6000*2*(64)) / fs) + 1) >> 1;
186 if (fs < 64000) {
187 stopMin = (((2*8000*2*(64)) / fs) + 1) >> 1;
190 stopMin = (((2*10000*2*(64)) / fs) + 1) >> 1;
215 /* 1 <= difference <= 48; 1 <= fs <= 96000 */
221 /* 1 <= difference <= 35; 42000 <= fs <
255 sbrdecUpdateFreqScale(UCHAR * v_k_master, UCHAR *numMaster, UINT fs, HANDLE_SBR_HEADER_DATA hHeaderData, UINT flags) argument
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_program_unittest.cc113 GLuint fs = GLTestHelper::LoadShader(GL_FRAGMENT_SHADER, f_red_shader_str); local
114 GLuint program = GLTestHelper::SetupProgram(vs, fs);
116 glShaderSource(fs, 1, &f_blue_shader_str, NULL);
117 glCompileShader(fs);
/external/chromium_org/gpu/tools/compositor_model_bench/
H A Dshaders.cc248 GLenum fs = glCreateShaderObjectARB(GL_FRAGMENT_SHADER); local
252 glShaderSourceARB(fs, 1, &fs_source, 0);
255 glCompileShaderARB(fs);
256 ReportAnyShaderCompilationErrors(fs, f);
258 glAttachObjectARB(g_program_objects[program_index], fs);
278 ShaderID fs = n->fragment_shader(); local
280 int program = ActivateShader(vs, fs, transform);
291 if (fs == FRAGMENT_SHADER_RGBA_TEX_FLIP_ALPHA) {
299 if (fs == FRAGMENT_SHADER_YUV_VIDEO) {
/external/chromium_org/media/audio/mac/
H A Daudio_low_latency_input_mac_unittest.cc130 int fs = static_cast<int>(AUAudioInputStream::HardwareSampleRate()); local
131 int samples_per_packet = fs / 100;
134 CHANNEL_LAYOUT_STEREO, fs, 16, samples_per_packet),
143 int fs = static_cast<int>(AUAudioInputStream::HardwareSampleRate()); local
144 int samples_per_packet = fs / 100;
147 channel_layout, fs, 16, samples_per_packet),
297 int fs = static_cast<int>(AUAudioInputStream::HardwareSampleRate()); local
302 fprintf(stderr, " Sample rate: %d\n", fs);
/external/chromium_org/media/audio/win/
H A Daudio_low_latency_output_win_unittest.cc253 int fs = static_cast<int>( local
255 EXPECT_GE(fs, 0);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_handle.cc23 KernelHandle::KernelHandle(const ScopedFilesystem& fs, const ScopedNode& node) argument
24 : filesystem_(fs), node_(node) {
H A Dkernel_object.cc34 Error KernelObject::AttachFsAtPath(const ScopedFilesystem& fs, argument
44 filesystems_[abs_path] = fs;
143 ScopedFilesystem fs; local
146 Error error = AcquireFsAndNode(abs_path, O_RDONLY, 0, &fs, &node);
H A Dkernel_proxy.cc89 ScopedFilesystem fs; local
90 rtn = MountInternal("", "/dev", "dev", 0, NULL, false, &fs);
93 dev_fs_ = sdk_util::static_scoped_ref_cast<DevFs>(fs);
172 ScopedFilesystem fs; local
175 Error error = AcquireFsAndRelPath(path, &fs, &rel);
182 error = fs->OpenResource(rel, &node);
185 error = fs->Open(rel, O_RDONLY, &node);
192 ScopedKernelHandle handle(new KernelHandle(fs, node));
203 ScopedFilesystem fs; local
206 Error error = AcquireFsAndNode(path, open_flags, mode, &fs,
349 ScopedFilesystem fs; local
368 ScopedFilesystem fs; local
401 ScopedFilesystem fs; local
455 ScopedFilesystem fs; local
487 CreateFsNode(const ScopedFilesystem& fs) argument
494 ScopedFilesystem fs; local
715 ScopedFilesystem fs; local
748 ScopedFilesystem fs; local
784 ScopedFilesystem fs; local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pipe/
H A Dpipe_node.cc22 PipeNode::PipeNode(Filesystem* fs) argument
23 : StreamNode(fs), pipe_(new PipeEventEmitter(kDefaultPipeSize)) {
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
H A Dstream_node.cc18 StreamNode::StreamNode(Filesystem* fs) argument
19 : Node(fs), read_timeout_(-1), write_timeout_(-1), stream_state_flags_(0) {
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dfilesystem_test.cc46 MemFsForTesting fs; local
58 EXPECT_EQ(1, fs.num_nodes());
61 EXPECT_EQ(ENOENT, fs.Open(Path("/foo"), O_RDWR, &result_node));
63 EXPECT_EQ(1, fs.num_nodes());
66 EXPECT_EQ(0, fs.Open(Path("/foo"), O_RDWR | O_CREAT, &file));
71 ASSERT_EQ(2, fs.num_nodes());
77 EXPECT_EQ(0, fs.Open(Path("/"), O_RDONLY, &root));
81 EXPECT_EQ(EISDIR, fs.Open(Path("/"), O_RDWR, &root));
82 EXPECT_EQ(2, fs.num_nodes());
85 EXPECT_EQ(0, fs
176 MemFsForTesting fs; local
197 MemFsForTesting fs; local
219 MemFsForTesting fs; local
249 MemFsForTesting fs; local
[all...]
H A Djspipe_test.cc222 ScopedFilesystem fs; local
224 factory.CreateFilesystem(args, &fs);
226 ASSERT_EQ(0, fs->Open(Path("/jspipe1"), O_RDWR, &pipe_dev));
H A Dkernel_object_test.cc26 explicit NodeForTesting(Filesystem* fs) : Node(fs) {} argument
49 KernelHandleForTesting(const ScopedFilesystem& fs, const ScopedNode& node) argument
50 : KernelHandle(fs, node) {}
56 fs.reset(new FilesystemForTesting());
57 node.reset(new NodeForTesting(fs.get()));
61 // fs is ref-counted, it doesn't need to be explicitly deleted.
63 fs.reset(NULL);
67 ScopedFilesystem fs; member in class:__anon8963::KernelObjectTest
75 EXPECT_EQ(1, fs
[all...]
H A Dkernel_proxy_test.cc45 ScopedFilesystem fs; local
48 AcquireFsAndRelPath("/", &fs, &path);
49 return fs.get();
637 snprintf(path, 100, "dev/fs/%d", g_fs_dev);
811 ScopedRef<MockFs> fs() { return fs_; } function in class:__anon8967::KernelProxyErrorTest_KernelProxy
831 ScopedRef<MockFs> fs() { return kp_.fs(); } function in class:__anon8967::KernelProxyErrorTest
840 ScopedRef<MockFs> mock_fs(fs());
862 ScopedRef<MockFs> mock_fs(fs());
/external/chromium_org/ppapi/proxy/
H A Disolated_file_system_private_resource.cc71 FileSystemResource* fs = new FileSystemResource( local
73 *file_system_resource = fs->GetReference();
76 fs->InitIsolatedFileSystem(
H A Dnacl_message_scanner_unittest.cc86 NaClMessageScanner::FileSystem* fs = FindFileSystem(test, kFileSystem); local
88 EXPECT_TRUE(fs);
89 EXPECT_EQ(0, fs->reserved_quota());
147 NaClMessageScanner::FileSystem* fs = FindFileSystem(test, kFileSystem); local
149 EXPECT_TRUE(fs);
150 EXPECT_EQ(0, fs->reserved_quota());
156 EXPECT_EQ(0, fs->reserved_quota());
173 EXPECT_EQ(kQuotaReservationAmount, fs->reserved_quota());
178 EXPECT_EQ(kQuotaReservationAmount - 1, fs->reserved_quota());
183 EXPECT_EQ(kQuotaReservationAmount - 1, fs
219 NaClMessageScanner::FileSystem* fs = FindFileSystem(test, kFileSystem); local
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-earley-boyer.js1111 "\034": "#\\fs",
1154 "fs": "\034",
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-earley-boyer.js1111 "\034": "#\\fs",
1154 "fs": "\034",
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-earley-boyer.js1111 "\034": "#\\fs",
1154 "fs": "\034",
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp1297 DOMFileSystem* fs = V8DOMFileSystem::toImpl(value.As<v8::Object>()); local
1298 if (!fs)
1300 if (!fs->clonable())
1302 m_writer.writeDOMFileSystem(fs->type(), fs->name(), fs->rootURL().string());
2193 DOMFileSystem* fs = DOMFileSystem::create(m_scriptState->executionContext(), name, static_cast<blink::FileSystemType>(type), KURL(ParsedURLString, url));
2194 *value = toV8(fs, m_scriptState->context()->Global(), isolate());
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jar ... SUB public static final byte ESC public static final byte FS public static final byte GS public static final byte RS ...
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py3501 header_file = CppChecker.fs.read_text_file(filename)
3771 header_file = CppChecker.fs.read_text_file(filename)
4039 fs = None variable in class:CppChecker
4042 min_confidence, fs=None):
4054 CppChecker.fs = fs or FileSystem()
4081 def process_file_data(filename, file_extension, lines, error, min_confidence, fs=None):
4082 checker = CppChecker(filename, file_extension, error, min_confidence, fs)

Completed in 2563 milliseconds

1234567891011>>