OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FilterState
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/src/modules/audio_processing/
high_pass_filter_impl.cc
30
struct
FilterState
{
36
int InitializeFilter(
FilterState
* hpf, int sample_rate_hz) {
51
int Filter(
FilterState
* hpf, WebRtc_Word16* data, int length) {
106
typedef
FilterState
Handle;
154
return new
FilterState
;
/external/openfst/src/include/fst/
state-table.h
196
// typedef F
FilterState
;
217
typedef F
FilterState
;
221
filter_state(
FilterState
::NoState()) {}
223
ComposeStateTuple(StateId s1, StateId s2, const
FilterState
&f)
228
FilterState
filter_state; // State of composition filter
273
typedef F
FilterState
;
294
typedef F
FilterState
;
322
typedef F
FilterState
;
334
typedef F
FilterState
;
352
typedef F
FilterState
;
[
all
...]
compose-filter.h
36
// class
FilterState
{
39
//
FilterState
();
40
//
FilterState
(const
FilterState
&f);
42
// static const
FilterState
NoState();
46
// bool operator==(const
FilterState
&f) const;
48
// bool operator!=(const
FilterState
&f) const;
50
//
FilterState
& operator=(const
FilterState
& f);
156
// ComposeFilter::
FilterState
. The basic filters handle correc
[
all
...]
lookahead-filter.h
204
typedef typename F::
FilterState
FilterState
;
240
FilterState
Start() const {
244
void SetState(StateId s1, StateId s2, const
FilterState
&f) {
248
FilterState
FilterArc(Arc *arc1, Arc *arc2) const {
251
const
FilterState
&f = filter_.FilterArc(arc1, arc2);
252
if (f ==
FilterState
::NoState())
253
return
FilterState
::NoState();
294
FilterState
LookAheadFilterArc(Arc *arca, Arc *arcb,
295
const
FilterState
&f) const
[
all
...]
compose.h
51
class T = GenericComposeStateTable<A, typename F::
FilterState
> >
82
typename F::
FilterState
> >
211
typedef typename F::
FilterState
FilterState
;
219
typedef ComposeStateTuple<StateId,
FilterState
> StateTuple;
318
const
FilterState
&f = filter_->FilterArc(&arcb, &arca);
319
if (f !=
FilterState
::NoState())
322
const
FilterState
&f = filter_->FilterArc(&arca, &arcb);
323
if (f !=
FilterState
::NoState())
332
const
FilterState
&f)
[
all
...]
/external/openfst/src/include/fst/extensions/pdt/
compose.h
287
typedef typename F::
FilterState
FilterState1;
291
typedef PairFilterState<FilterState1, FilterState2>
FilterState
;
302
f_(
FilterState
::NoState()),
324
f_(
FilterState
::NoState()),
328
FilterState
Start() const {
329
return
FilterState
(filter_.Start(), FilterState2(0));
332
void SetState(StateId s1, StateId s2, const
FilterState
&f) {
352
FilterState
FilterArc(Arc *arc1, Arc *arc2) const {
356
return
FilterState
::NoState();
373
return
FilterState
(f1, f2)
[
all
...]
Completed in 161 milliseconds