Searched defs:tone (Results 1 - 13 of 13) sorted by relevance

/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
H A DRampedSineTone.java20 * Creates a tone that can be injected (and then looped back) in the Latency test.
21 * The generated tone is a sine wave whose amplitude linearly increases than decreases
34 public void generateTone(short[] tone, int size) { argument
35 super.generateTone(tone, size);
46 tone[i] *= factor;
54 public void generateTone(double[] tone, int size) { argument
55 super.generateTone(tone, size);
66 tone[i] *= factor;
H A DSineWaveTone.java41 public void generateTone(short[] tone, int size) { argument
44 tone[i] = value1;
62 public void generateTone(double[] tone, int size) { argument
65 tone[i] = value1;
H A DToneGeneration.java35 /** Store samples into "tone". Value of samples are from -32768 to 32767. */
36 public abstract void generateTone(short[] tone, int size); argument
40 * Store samples into "tone". Value of samples are from -1.0 to 1.0.
41 * This function is not supposed to be used to create tone that is going to pass
44 public abstract void generateTone(double[] tone, int size); argument
53 * the generated tone.
H A DTwoSineWavesTone.java48 public void generateTone(short[] tone, int size) { argument
52 tone[i] = (short) (value1 + value2);
77 public void generateTone(double[] tone, int size) { argument
81 tone[i] = value1 + value2;
/external/webrtc/talk/app/webrtc/
H A Ddtmfsender.cc47 // | 0--9 | 0--9 | tone | yes |
48 // | * | 10 | tone | yes |
49 // | # | 11 | tone | yes |
50 // | A--D | 12--15 | tone | yes |
53 // 2 seconds before processing the next tone. We use -1 as its code.
67 bool GetDtmfCode(char tone, int* code) { argument
69 char event = toupper(tone);
195 // Get the first DTMF tone from the tone buffer. Unrecognized characters will
207 char tone local
[all...]
H A Ddtmfsender_unittest.cc53 void OnToneChange(const std::string& tone) override {
54 LOG(LS_VERBOSE) << "FakeDtmfObserver::OnToneChange '" << tone << "'.";
55 tones_.push_back(tone);
56 if (tone.empty()) {
168 char tone = *it; local
170 webrtc::GetDtmfCode(tone, &code);
171 if (tone == ',') {
265 // Wait until the first tone got sent.
268 // Insert with another tone buffer.
286 // Wait until the first tone go
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-hangul.cc161 * - If a valid syllable is followed by a Hangul tone mark, reorder the tone
198 * We could cache the width of the tone marks and the existence of dotted-circle,
199 * but the use of the Hangul tone mark characters seems to be rare enough that
211 hb_glyph_info_t tone = info[end]; local
213 info[start] = tone;
218 /* No valid syllable as base for tone mark; try to insert dotted circle. */
233 /* No dotted circle available in the font; just leave tone mark untouched. */
389 * this will prevent tone-mark reordering happening.
/external/ImageMagick/MagickCore/
H A Dfx.c4161 % threshold of 80% is a good starting point for a reasonable tone.
4172 % o threshold: the tone threshold.
4251 tone; local
4254 tone=intensity > threshold ? (double) QuantumRange : intensity+
4256 SetPixelRed(sepia_image,ClampToQuantum(tone),q);
4257 tone=intensity > (7.0*threshold/6.0) ? (double) QuantumRange :
4259 SetPixelGreen(sepia_image,ClampToQuantum(tone),q);
4260 tone=intensity < (threshold/6.0) ? 0 : intensity-threshold/6.0;
4261 SetPixelBlue(sepia_image,ClampToQuantum(tone),q);
4262 tone
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 644 milliseconds