HomeSort by relevance Sort by last modified time
    Searched refs:amp (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
XMLEntities.properties 27 amp=38
  /external/libvorbis/lib/
tone.c 14 double *amp; local
19 amp=alloca(sizeof(*amp)*(argc-1));
27 amp[i]=atof(pos+1)*32767.f;
29 amp[i]=32767.f;
31 fprintf(stderr,"%g Hz, %g amp\n",f[i],amp[i]);
40 val+=amp[j]*sin(i/44100.f*f[j]*2*M_PI);
lsp.h 26 float amp,float ampoffset);
lsp.c 66 float amp,float ampoffset){
103 q=vorbis_fromdBlook(amp*
141 float amp,float ampoffset){
148 int ampi=rint(amp*16.f);
231 amp=vorbis_fromdBlook_i(ampi* /* n.4 */
236 curve[i]*=amp;
237 while(map[++i]==k)curve[i]*=amp;
249 float amp,float ampoffset){
276 q=fromdB(amp/sqrt(p+q)-ampoffset);
floor0.c 165 float amp=(float)ampraw/maxval*info->ampdB; local
185 lsp[look->m]=amp;
202 float amp=lsp[look->m]; local
209 lsp,look->m,amp,(float)info->ampdB);
psy.h 142 extern float _vp_ampmax_decay(float amp,vorbis_dsp_state *vd);
  /external/chromium_org/third_party/libwebp/utils/
random.h 38 // 'amp' is in VP8_RANDOM_DITHER_FIX fixed-point precision.
40 int amp) {
50 diff = (diff * amp) >> VP8_RANDOM_DITHER_FIX; // restrict range
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
HtmlStripFunction.java 35 // The state the strip function can be, normal, in an amp escaped entity or
49 tempMap.put("amp", "&");
98 // Holds the contents of an & (amp) entity before its decoded.
99 StringBuilder amp = new StringBuilder(); local
116 // If this is isn't the start of an amp of a tag, treat as plain
133 appendDecodedEntityReference(out, amp);
134 amp = new StringBuilder();
136 if (amp.length() < MAX_AMP_LENGTH) {
138 // amp buffer and continue, if it is the last, dump the buffer
141 amp.append(c)
    [all...]
  /external/webp/src/utils/
random.h 38 // 'amp' is in VP8_RANDOM_DITHER_FIX fixed-point precision.
40 int amp) {
50 diff = (diff * amp) >> VP8_RANDOM_DITHER_FIX; // restrict range
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis2/
Visualization2RS.java 76 int amp = mVizData[i]; local
77 mPointData[i*8+1] = amp;
78 mPointData[i*8+5] = -amp;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 153 &amp;
188 &amp;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/
g722_enc_dec.h 144 const int16_t amp[],
152 int16_t amp[],
g722_decode.c 51 static __inline int16_t saturate(int32_t amp)
56 amp16 = (int16_t) amp;
57 if (amp == amp16)
59 if (amp > WEBRTC_INT16_MAX)
192 int WebRtc_g722_decode(g722_decode_state_t *s, int16_t amp[],
374 amp[outlen++] = (int16_t) (rlow << 1);
375 amp[outlen++] = (int16_t) (rhigh << 1);
381 amp[outlen++] = (int16_t) (rlow << 1);
401 amp[outlen++] = saturate(xout1 >> 11);
402 amp[outlen++] = saturate(xout2 >> 11)
    [all...]
g722_encode.c 51 static __inline int16_t saturate(int32_t amp)
56 amp16 = (int16_t) amp;
57 if (amp == amp16)
59 if (amp > WEBRTC_INT16_MAX)
206 const int16_t amp[], int len)
297 xhigh = amp[j++] >> 1;
304 xlow = amp[j++] >> 1;
312 s->x[22] = amp[j++];
313 s->x[23] = amp[j++];
  /external/svox/pico/compat/jni/
com_android_tts_compat_SynthProxy.cpp 71 double amp = float(pow(10.0, fFilterLowshelfAttenuation / 40.0)); local
75 double beta = float(sqrt(amp)/fFilterShelfSlope);
78 double b0 = amp * ((amp+1.0F) - ((amp-1.0F)*cosw) + (beta*sinw));
79 double b1 = 2.0F * amp * ((amp-1.0F) - ((amp+1.0F)*cosw));
80 double b2 = amp * ((amp+1.0F) - ((amp-1.0F)*cosw) - (beta*sinw))
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
HtmlEscapeFunction.java 40 "", "", "", "", "", "", "", "", "", "", "!", "&quot;", "#", "$", "%", "&amp;", "&#39;",
  /external/tremolo/Tremolo/
floor0.c 147 ogg_int32_t amp,
156 int ampi=amp;
307 amp=vorbis_fromdBlook_i(ampi* /* n.4 */
313 amp>>=9;
315 curve[i]= MULT31_SHIFT15(curve[i],amp);
329 curve[i]= MULT31_SHIFT15(curve[i],amp);
408 int amp=((ampraw*info->ampdB)<<4)/maxval; local
423 lsp[info->order]=amp;
437 ogg_int32_t amp=lsp[info->order]; local
441 lsp,info->order,amp,info->ampdB
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
Encoding.java 53 int amp = firstAmp; local
54 while (amp >= 0) {
55 long endAndCodepoint = HtmlEntities.decodeEntityAt(s, amp, n);
58 sb.append(s, pos, amp).appendCodePoint(codepoint);
60 amp = s.indexOf('&', end);
258 REPLACEMENTS['&'] = "&amp;"; // HTML special.
  /external/srec/srec/cfront/
wav_acc.c 99 int *dc_offset, int *amp, int *pc5, int *pc95,
124 *amp = 0;
140 *amp = integer_square_root((int)sqr_devn);
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 59 case tok::amp: return prec::And;
  /cts/suite/audio_quality/test_description/processing/
check_spectrum_playback.py 127 (passFail, minVal, maxVal, amp) = do_check_spectrum_playback(data, samplingRate, fLow,\
129 plt.plot(amp)
  /external/valgrind/main/memcheck/tests/
client-msg-as-xml.stderr.exp 33 <text>hello &lt;&gt; &lt;&amp;&gt;%s world
  /external/chromium_org/third_party/webrtc/base/
stringencode.cc 277 case '&': escseq = "&amp;"; esclen = 5; break;
334 case '&': escseq = "&amp;"; esclen = 5; break;
378 && (memcmp(source + srcpos, "amp;", 4) == 0)) {
  /external/clang/lib/Lex/
TokenConcatenation.cpp 77 TokenInfo[tok::amp ] |= aci_custom_firstchar;
103 TokenInfo[tok::amp ] |= aci_avoid_equal; // &=
249 case tok::amp: // &&
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DefineGrammarItemsWalker.g 168 : ^(amp=AMPERSAND id1=ID
176 grammar.defineNamedAction($amp,scope,nameAST,actionAST);
264 : ^(amp=AMPERSAND id=ID a=ACTION ) {if (r!=null) r.defineNamedAction($amp,$id,$a);}
343 : ^(amp=AMPERSAND id=ID a=ACTION ) // {r.defineAction(#amp,#id,#a);}

Completed in 825 milliseconds

1 2 3 4 5 6