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

1 2 3 4 5 6 7 8 9

  /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);
  /external/fec/
sim.c 33 unsigned char addnoise(int sym,double amp,double gain,double offset,int clip){
36 sample = offset + gain*normal_rand(sym?amp:-amp,1.0);
  /prebuilts/go/darwin-x86/src/html/template/
content_test.go 18 HTML(`Hello, <b>World</b> &amp;tc!`),
61 `&lt;b&gt; &#34;foo%&#34; O&#39;Reilly &amp;bar;`,
64 `Hello, <b>World</b> &amp;tc!`,
66 `c &amp;&amp; alert(&#34;Hello, World!&#34;);`,
67 `Hello, World &amp; O&#39;Reilly\x21`,
68 `greeting=H%69&amp;addressee=(World)`,
87 `&lt;b&gt;&#32;&#34;foo%&#34;&#32;O&#39;Reilly&#32;&amp;bar;`,
90 `Hello,&#32;World&#32;&amp;tc!`,
92 `c&#32;&amp;&amp;&#32;alert(&#34;Hello,&#32;World!&#34;);`
    [all...]
html_test.go 29 `&#32;!&#34;#$%&amp;&#39;()*&#43;,-./` +
56 {"foo&amp;bar", "foo&amp;bar"},
  /prebuilts/go/linux-x86/src/html/template/
content_test.go 18 HTML(`Hello, <b>World</b> &amp;tc!`),
61 `&lt;b&gt; &#34;foo%&#34; O&#39;Reilly &amp;bar;`,
64 `Hello, <b>World</b> &amp;tc!`,
66 `c &amp;&amp; alert(&#34;Hello, World!&#34;);`,
67 `Hello, World &amp; O&#39;Reilly\x21`,
68 `greeting=H%69&amp;addressee=(World)`,
87 `&lt;b&gt;&#32;&#34;foo%&#34;&#32;O&#39;Reilly&#32;&amp;bar;`,
90 `Hello,&#32;World&#32;&amp;tc!`,
92 `c&#32;&amp;&amp;&#32;alert(&#34;Hello,&#32;World!&#34;);`
    [all...]
html_test.go 29 `&#32;!&#34;#$%&amp;&#39;()*&#43;,-./` +
56 {"foo&amp;bar", "foo&amp;bar"},
  /prebuilts/go/darwin-x86/src/html/
escape_test.go 31 "&amp; &gt; &lt;",
37 "&amp &amp",
104 `a&amp;b`,
105 `a &amp b`,
109 `&quot;&lt;&amp;&gt;&quot;`,
123 benchUnescapeSparse = strings.Repeat(strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 10)+"&amp;", 10)
124 benchUnescapeDense = strings.Repeat("&amp;&lt; &amp; &lt;", 100)
example_test.go 15 // Output: &#34;Fran &amp; Freddie&#39;s Diner&#34; &lt;tasty@example.com&gt;
19 const s = `&quot;Fran &amp; Freddie&#39;s Diner&quot; &lt;tasty@example.com&gt;`
  /prebuilts/go/linux-x86/src/html/
escape_test.go 31 "&amp; &gt; &lt;",
37 "&amp &amp",
104 `a&amp;b`,
105 `a &amp b`,
109 `&quot;&lt;&amp;&gt;&quot;`,
123 benchUnescapeSparse = strings.Repeat(strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 10)+"&amp;", 10)
124 benchUnescapeDense = strings.Repeat("&amp;&lt; &amp; &lt;", 100)
example_test.go 15 // Output: &#34;Fran &amp; Freddie&#39;s Diner&#34; &lt;tasty@example.com&gt;
19 const s = `&quot;Fran &amp; Freddie&#39;s Diner&quot; &lt;tasty@example.com&gt;`
  /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_utils.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/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 153 &amp;
188 &amp;
  /external/webrtc/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)
187 size_t WebRtc_g722_decode(G722DecoderState *s, int16_t amp[],
369 amp[outlen++] = (int16_t) (rlow << 1);
370 amp[outlen++] = (int16_t) (rhigh << 1);
376 amp[outlen++] = (int16_t) (rlow << 1);
396 amp[outlen++] = saturate(xout1 >> 11);
397 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[], size_t 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;",
  /system/media/audio_utils/
power.cpp 176 const float amp = (float)*samplitudes++; local
177 accumulator += amp * amp;
203 const float amp = (float)samplitudes[i]; local
204 accumulator += amp * amp;
  /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/clang/lib/Basic/
OperatorPrecedence.cpp 60 case tok::amp: return prec::And;

Completed in 986 milliseconds

1 2 3 4 5 6 7 8 9