Searched defs:channel (Results 1 - 25 of 602) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Daacdec_pns.cpp134 /* save pointer to inter channel data */
138 same, left and right channel ! */
163 The function activates the noise correlation between the channel pair
179 The function indicates if the noise correlation between the channel pair
198 The function indicates if the noise correlation between the channel pair
339 const int channel)
359 if (channel > 0 && CPns_IsCorrelated(pPnsData, group, band))
332 CPns_Apply(const CPnsData *pPnsData, const CIcsInfo *pIcsInfo, SPECTRAL_PTR pSpectrum, const SHORT *pSpecScale, const SHORT *pScaleFactor, const SamplingRateInfo *pSamplingRateInfo, const INT granuleLength, const int channel) argument
/external/aac/libSBRenc/src/
H A Dcode_env.cpp336 const UCHAR * hufftableBalance, INT coupling, INT channel)
346 const UCHAR * hufftableBalance, INT coupling, INT channel)
352 if (channel == 1)
407 INT *directionVec, INT scalable, INT nEnvelopes, INT channel,
424 INT channel,
477 if(coupling == 1 && channel == 1)
504 if (coupling && channel == 1)
518 hufftableBalanceTimeL, coupling, channel);
525 if ( coupling && channel == 1 ) {
564 hufftableBalanceFreqL, coupling, channel);
342 computeBits(SCHAR *delta, INT codeBookScfLavLevel, INT codeBookScfLavBalance, const UCHAR * hufftableLevel, const UCHAR * hufftableBalance, INT coupling, INT channel) argument
418 FDKsbrEnc_codeEnvelope(SCHAR *sfb_nrg, const FREQ_RES *freq_res, SBR_CODE_ENVELOPE *h_sbrCodeEnvelope, INT *directionVec, INT coupling, INT nEnvelopes, INT channel, INT headerActive) 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/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as81 /** The channel number for the current token */
82 public var channel:int; variable
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontoken.h75 /** Default channel for a token
79 /** Reserved channel number for a HIDDEN token - a token that
138 /** The virtual channel that this token exists in.
140 ANTLR3_UINT32 channel; member in struct:ANTLR3_COMMON_TOKEN_struct
268 /** Pointer to a function that gets the channel that this token was placed in (parsers
273 /** Pointer to a function that sets the channel that this token should belong to
275 void (*setChannel) (struct ANTLR3_COMMON_TOKEN_struct * token, ANTLR3_UINT32 channel);
H A Dantlr3recognizersharedstate.h155 /** The channel number for the current token
157 ANTLR3_UINT32 channel; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
H A Dantlr3tokenstream.h214 * the pointer in the table points to an int, being the override channel number
224 /* The channel number that this token stream is tuned to. For instance, whitespace
225 * is usually tuned to channel 99, which no token stream would normally tune to and
228 ANTLR3_UINT32 channel; member in struct:ANTLR3_COMMON_TOKEN_STREAM_struct
231 * in the channel that this stream is tuned to, are not tracked in the
242 * to force all tokens of type ttype to be on channel. For example,
245 * channel.
248 ANTLR3_UINT32 ttype, ANTLR3_UINT32 channel);
255 /** Signal to discard off channel tokens from here on in.
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontoken.c50 static void setChannel (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 channel);
496 return token->channel;
499 static void setChannel (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 channel) argument
501 token->channel = channel;
573 outtext->append8(outtext, "(channel = ");
H A Dantlr3tokenstream.c42 static void setTokenTypeChannel (pANTLR3_COMMON_TOKEN_STREAM cts, ANTLR3_UINT32 ttype, ANTLR3_UINT32 channel);
201 cts->channel = ANTLR3_TOKEN_DEFAULT_CHANNEL;
241 stream->channel = ANTLR3_TOKEN_DEFAULT_CHANNEL;
387 /* Need to find k good tokens, skipping ones that are off channel
391 /* Skip off-channel tokens */
412 /// Debug only method to flag consumption of initial off-channel
475 /* Need to find k good tokens, going backwards, skipping ones that are off channel
479 /* Skip off-channel tokens
597 * Walk past any token not on the channel the parser is listening to.
639 b = is->index(is); // Where are we after consuming 1 on channel toke
666 setTokenTypeChannel(pANTLR3_COMMON_TOKEN_STREAM tokenStream, ANTLR3_UINT32 ttype, ANTLR3_UINT32 channel) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs52 Socket channel = null; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener
70 int channel; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
77 public ProxyToken(int index, int type, int channel, argument
81 this.channel = channel;
126 return channel;
129 channel = value;
170 if (channel != TokenChannels.Default) {
171 channelStr = ",channel=" + channel;
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DClassicToken.cs49 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
63 channel = oldToken.Channel;
71 public ClassicToken(int type, string text, int channel) { argument
74 this.channel = channel;
116 return channel;
119 channel = value;
160 if (channel > 0) {
161 channelStr = ",channel=" + channel;
[all...]
H A DCommonToken.cs43 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
71 public CommonToken(ICharStream input, int type, int channel, int start, int stop) { argument
74 this.channel = channel;
81 this.channel = TokenChannels.Default;
91 channel = oldToken.Channel;
153 return channel;
156 channel = value;
200 if (channel > 0) {
201 channelStr = ",channel
[all...]
H A DCommonTokenStream.cs41 * and tokens are prefiltered for a certain channel (the parser will only
42 * see these tokens and cannot change the filter channel number during the
50 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
60 public CommonTokenStream(ITokenSource tokenSource, int channel) argument
62 this._channel = channel;
82 /** Always leave p on an on-channel token. */
102 // skip off-channel tokens
122 // skip off-channel tokens
133 /** Given a starting index, return the index of the first on-channel
139 // also stops at EOF (it's on channel)
[all...]
H A DLegacyCommonTokenStream.cs44 * and tokens are prefiltered for a certain channel (the parser will only
45 * see these tokens and cannot change the filter channel number during the
63 /** <summary>Map<tokentype, channel> to override some Tokens' channel numbers</summary> */
69 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */
70 protected int channel = TokenChannels.Default; field in class:Antlr.Runtime.LegacyCommonTokenStream
94 public LegacyCommonTokenStream(ITokenSource tokenSource, int channel) argument
96 this.channel = channel;
118 channel
209 SetTokenTypeChannel(int ttype, int channel) argument
[all...]
H A DRecognizerSharedState.cs138 /** <summary>The channel number for the current token</summary> */
139 public int channel; field in class:Antlr.Runtime.RecognizerSharedState
177 channel = state.channel;
H A DTokenRewriteStream.cs202 public TokenRewriteStream(ITokenSource tokenSource, int channel) argument
203 : base(tokenSource, channel) {
H A DUnbufferedTokenStream.cs44 * You can't use this stream if you pass whitespace or other off-channel
45 * tokens to the parser. The stream can't ignore off-channel tokens.
59 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
60 protected int channel = TokenChannels.Default; field in class:Antlr.Runtime.UnbufferedTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs55 Socket channel = null; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener
74 int channel; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
82 public ProxyToken( int index, int type, int channel, argument
87 this.channel = channel;
146 return channel;
150 channel = value;
204 if ( channel != TokenChannels.Default )
206 channelStr = ",channel=" + channel;
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimTokenStream.cs59 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */
60 protected int channel = TokenChannels.Default; field in class:Antlr.Runtime.FastTokenStream
83 public FastTokenStream( ITokenSource<SlimToken> tokenSource, int channel )
86 this.channel = channel;
103 channel = TokenChannels.Default;
109 * set some token type / channel overrides before filling buffer.
128 // leave p pointing at first token on channel
141 * Walk past any token not on the channel the parser is listening to.
153 /** <summary>Given a starting index, return the index of the first on-channel toke
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DClassicToken.cs51 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
67 channel = oldToken.Channel;
76 public ClassicToken( int type, string text, int channel )
80 this.channel = channel;
136 return channel;
140 channel = value;
194 if ( channel > 0 )
196 channelStr = ",channel=" + channel;
[all...]
H A DCommonToken.cs45 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
75 public CommonToken( ICharStream input, int type, int channel, int start, int stop ) argument
79 this.channel = channel;
87 this.channel = TokenChannels.Default;
98 channel = oldToken.Channel;
174 return channel;
178 channel = value;
235 if ( channel > 0 )
237 channelStr = ",channel
[all...]
H A DCommonTokenStream.cs42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
52 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
64 public CommonTokenStream(ITokenSource tokenSource, int channel) argument
67 this._channel = channel;
92 /** Always leave p on an on-channel token. */
111 // skip off-channel tokens
133 // skip off-channel tokens
144 /** Given a starting index, return the index of the first on-channel
152 // also stops at EOF (it's on channel)
[all...]
H A DLegacyCommonTokenStream.cs42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
62 /** <summary>Map<tokentype, channel> to override some Tokens' channel numbers</summary> */
68 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */
69 protected int channel = TokenChannels.Default; field in class:Antlr.Runtime.LegacyCommonTokenStream
95 public LegacyCommonTokenStream( ITokenSource tokenSource, int channel )
98 this.channel = channel;
124 channel
[all...]
H A DRecognizerSharedState.cs140 /** <summary>The channel number for the current token</summary> */
141 public int channel; field in class:Antlr.Runtime.RecognizerSharedState
181 channel = state.channel;
H A DUnbufferedTokenStream.cs45 * You can't use this stream if you pass whitespace or other off-channel
46 * tokens to the parser. The stream can't ignore off-channel tokens.
61 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
62 protected int channel = TokenChannels.Default; field in class:Antlr.Runtime.UnbufferedTokenStream

Completed in 1066 milliseconds

1234567891011>>