Searched refs:release (Results 1 - 25 of 3225) sorted by path

1234567891011>>

/external/aac/libPCMutils/src/
H A Dlimiter.cpp123 unsigned int attack, release; local
127 /* calc attack and release time in samples */
129 release = (unsigned int)(releaseMs * maxSampleRate / 1000);
149 /* releaseConst = (float)pow(0.1, 1.0 / (release + 1)) */
150 exponent = invFixp(release + 1);
343 smoothState0 = -fMult(releaseConst,-(smoothState0 - cor)) + cor; /* release */
408 unsigned int attack, release; local
416 /* update attack and release time in samples */
418 release = (unsigned int)(limiter->releaseMs * sampleRate / 1000);
425 /* releaseConst = (float)pow(0.1, 1.0 / (release
470 unsigned int release; local
[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 DANTLRStringStream.as154 release(m);
161 public function release(marker:int):void { function
162 // unwind any other markers made after m and release m
164 // release this marker
H A DCommonTokenStream.as300 public function release(marker:int):void { function
301 // no resources to release
H A DIntStream.as60 * essentially calling release() and seek(). If there are markers
83 * argument. So if you're nested 5 levels of mark(), and then release(2)
84 * you have to release resources for depths 2..5.
86 function release(marker:int):void;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as41 * This stream knows how to mark/release for backtracking.
284 public function release(marker:int):void { function
285 // no resources to release
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3intstream.h142 * essentially calling release() and seek(). If there are markers
159 void (*release) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER mark); member in struct:ANTLR3_INT_STREAM_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontreenodestream.c70 static void release (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker);
210 stream->tnstream->istream->release = release;
352 stream->tnstream->istream->release = release;
677 release (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker) function
H A Dantlr3inputstream.c156 input->istream->release = antlr38BitRelease; // Reset marks after mark n
520 input->istream->release(input->istream, mark);
H A Dantlr3tokenstream.c72 static void release (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
313 stream->tstream->istream->release = release;
859 release (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) function
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas236 { The TDictionary class in the first release of Delphi 2009 is very buggy.
H A DAntlr.Runtime.Tree.pas606 /// After 3.0 release while building tree rewrite stuff, it became clear
696 /// This stream knows how to mark/release for backtracking.
3227 // no resources to release
4773 // unwind any other markers made after marker and release marker
4775 // release this marker
H A DAntlr.Runtime.pas137 /// you have to release resources for depths 2..5.
3278 // unwind any other markers made after m and release m
3280 // release this marker
4972 // no resources to release
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRStringStream.java177 release(m);
184 public void release(int marker) { method in class:ANTLRStringStream
185 // unwind any other markers made after m and release m
187 // release this marker
H A DBufferedTokenStream.java89 public void release(int marker) { method in class:BufferedTokenStream
90 // no resources to release
H A DIntStream.java61 * essentially calling release() and seek(). If there are markers
84 * argument. So if you're nested 5 levels of mark(), and then release(2)
85 * you have to release resources for depths 2..5.
87 void release(int marker); method in interface:IntStream
H A DLegacyCommonTokenStream.java322 public void release(int marker) { method in class:LegacyCommonTokenStream
323 // no resources to release
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTokenStream.java124 public void release(int marker) { method in class:DebugTokenStream
H A DDebugTreeNodeStream.java112 public void release(int marker) { method in class:DebugTreeNodeStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java34 /** A lookahead queue that knows how to mark/release locations
135 public void release(int marker) { method in class:LookaheadStream
136 // no resources to release
142 // release(marker); // waste of call; it does nothing in this class
146 seek(lastMarker); // rewind but do not release marker
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBufferedTreeNodeStream.java42 * This stream knows how to mark/release for backtracking.
317 public void release(int marker) { method in class:BufferedTreeNodeStream
318 // no resources to release
/external/antlr/antlr-3.4/runtime/JavaScript/build/
H A DREADME18 * jsdoc-toolkit: Download the latest release from here: http://code.google.com/p/jsdoc-toolkit/downloads/list
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DANTLRStringStream.js198 this.release(m);
207 * argument. So if you're nested 5 levels of mark(), and then release(2)
208 * you have to release resources for depths 2..5.
212 release: function(marker) {
213 // unwind any other markers made after m and release m
215 // release this marker
H A DCommonTokenStream.js250 release: function(marker) {
251 // no resources to release
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.js8 * This stream knows how to mark/release for backtracking.
241 release: function(marker) {
242 // no resources to release

Completed in 6851 milliseconds

1234567891011>>