HomeSort by relevance Sort by last modified time
    Searched full:sample (Results 351 - 375 of 1478) sorted by null

<<11121314151617181920>>

  /external/quake/quake/src/QW/client/
sound.h 70 int pos; // sample position in sfx
100 sfx_t *S_PrecacheSound (char *sample);
101 void S_TouchSound (char *sample);
snd_win.c 360 " %d bits/sample\n"
396 pDSBuf->lpVtbl->GetCurrentPosition(pDSBuf, &mmstarttime.u.sample, &dwWrite);
628 return the current sample position (in mono samples read)
630 how many sample are required to fill it up.
642 pDSBuf->lpVtbl->GetCurrentPosition(pDSBuf, &mmtime.u.sample, &dwWrite);
643 s = mmtime.u.sample - mmstarttime.u.sample;
  /external/quake/quake/src/WinQuake/
sound.h 79 int pos; // sample position in sfx
109 sfx_t *S_PrecacheSound (const char *sample);
110 void S_TouchSound (const char *sample);
snd_win.cpp 362 " %d bits/sample\n"
398 pDSBuf->lpVtbl->GetCurrentPosition(pDSBuf, &mmstarttime.u.sample, &dwWrite);
630 return the current sample position (in mono samples read)
632 how many sample are required to fill it up.
644 pDSBuf->lpVtbl->GetCurrentPosition(pDSBuf, &mmtime.u.sample, &dwWrite);
645 s = mmtime.u.sample - mmstarttime.u.sample;
  /external/sonivox/arm-fm-22k/lib_src/
eas_audioconst.h 7 * Defines audio constants related to the sample rate, bit size, etc.
35 * These macros define the various characteristics of the defined sample rates
38 * _OUTPUT_SAMPLE_RATE compiled output sample rate
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_filter_gnu.s 88 LDRSH tmp0, [pBuffer] @ fetch sample
98 LDRSH tmp1, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
115 LDRGTSH tmp0, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
eas_audioconst.h 7 * Defines audio constants related to the sample rate, bit size, etc.
35 * These macros define the various characteristics of the defined sample rates
38 * _OUTPUT_SAMPLE_RATE compiled output sample rate
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_filter_gnu.s 88 LDRSH tmp0, [pBuffer] @ fetch sample
98 LDRSH tmp1, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
115 LDRGTSH tmp0, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
eas_audioconst.h 7 * Defines audio constants related to the sample rate, bit size, etc.
35 * These macros define the various characteristics of the defined sample rates
38 * _OUTPUT_SAMPLE_RATE compiled output sample rate
  /external/srec/srec/crec/
srec_stats.c 50 #define MAX_IN_SAMPLE(MaX,SamPle) \
51 if((MaX)<(SamPle)) MaX = (SamPle);
  /external/webkit/WebKitTools/Scripts/
run-sunspider 60 --shark Sample with the Mac OS X "Shark" performance testing tool (implies --runs=1)
62 --shark-cache Like --shark, but performs a L2 cache-miss sample instead of time sample
  /frameworks/base/docs/html/resources/articles/
speech-input.jd 32 href="{@docRoot}resources/samples/ApiDemos/src/com/example/android/apis/app/VoiceRecognition.html">sample
34 started. The sample application first verifies that the target device is able
49 The sample application then uses {@link
  /frameworks/base/tests/CoreTests/android/core/
ZipFileTest.java 62 byte[] sample = new byte[SAMPLE_SIZE];
71 sample[offset++] = val;
78 return sample;
ZipStreamTest.java 74 byte[] sample = new byte[128 * 1024];
83 sample[offset++] = val;
90 return sample;
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
Recorder.java 39 int mSampleLength = 0; // length of current sample
104 * Resets the recorder state. If a sample was recorded, the file is deleted.
119 * Resets the recorder state. If a sample was recorded, the file is left on disk and will
  /external/srec/srec/EventLog/src/
riff.c 182 int sign, exponent, mantissa, sample; local
188 sample = exp_lut[exponent] + (mantissa << (exponent + 3));
189 if (sign != 0) sample = -sample;
190 return sample;
196 int sign, achord, astep, delta, sample; local
207 sample = ((2 * astep + 33) * exp_lut[achord]) - 32 * delta;
208 if (sign != 0) sample = -sample;
209 sample = sample * 8
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
Inet6AddressTest.java 389 // a sample MC organizational address
396 // a sample MC site address
403 // a sample MC link address
410 // a sample MC Node
477 // a sample MC organizational address
484 // a sample MC site address
491 // a sample MC link address
498 // a sample MC global address
552 // a sample MC organizational address
561 // a sample MC site addres
    [all...]
  /external/opencore/codecs_v2/utilities/pv_config_parser/src/
pv_audio_config_parser.cpp 83 // This routine parses the wma config header and returns Sampling Rate, Number of Channels, and Bits Per Sample
241 // not a valid sample rate for WMA Std spec
254 // not a valid number of bits per sample for the WMA Std spec
287 // not a valid sample rate for WMA Std spec
300 // not a valid number of bits per sample for the WMA Std spec
  /external/opencore/fileformats/mp4/composer/src/
trackatom.cpp 127 // Add sample to track header so can update its _duration
173 // Add sample to track header so can update its _duration
218 // Add sample to track header so can update its _duration
265 // Add sample to track header so can update its _duration
469 // last sample
  /external/qemu/distrib/sdl-1.2.12/src/audio/dc/
aica.c 170 e.g., where the sample starts over when it loops. The second
171 is the loop end. This is the full length of the sample when
201 /* Set sample format, buffer address, and looping control. If
202 0x0200 mask is set on reg 0, the sample loops infinitely. If
203 it's not set, the sample plays once and terminates. We'll
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RemoteService.java 54 * running in its own process, the {@link LocalService} sample shows a much
178 // In this sample, we'll use the same text for the ticker and the expanded notification
206 * <p>Note that this is implemented as an inner class only keep the sample
253 * <p>Note that this is implemented as an inner class only keep the sample
317 // As part of the sample, tell the user what happened.
329 // As part of the sample, tell the user what happened.
413 // Just for purposes of the sample, put up a notification.
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/include/
gsmamr_encoder_wrapper.h 65 // Number of sample frames encoded and are contained in the buffer
68 // Size in bytes of each encoded sample frame;
69 // This variable may point to an array if the sample frame sizes are
98 // DESCRIPTION: Number of bits per sample. For example, set it to "16"
196 ** Sample usage:
207 ** // encode a sample block
298 // number of bytes per sample
  /external/v8/src/
platform-solaris.cc 530 TickSample sample;
531 sample.pc = 0;
532 sample.sp = 0;
533 sample.fp = 0;
535 // We always sample the VM state.
536 sample.state = Logger::state();
538 active_sampler_->Tick(&sample);
  /external/v8/
SConstruct 721 result.Add('sample', 'build sample (shell, process, lineprocessor)', '')
789 if not IsLegal(env, 'sample', ["shell", "process", "lineprocessor"]):
929 context = BuildContext(options, env_overrides, samples=SplitList(env['sample']))
952 'sample': sample_flags,
1003 for sample in context.samples:
1005 sample_env.Replace(**context.flags['sample'])
1009 build_dir=join('obj', 'sample', sample, target_id),
1010 exports='sample context'
    [all...]
  /frameworks/base/docs/html/sdk/ndk/
index.jd 91 <li>Adds a sample application, <code>hello-neon</code>, that illustrates how to
127 <li>Adds a sample application,<code>hello-gl2</code>, that illustrates the use of
148 <li>Adds a sample application, <code>san-angeles</code>, that renders 3D
171 <li>Includes system headers for stable native APIs, documentation, and sample
322 <h4>Sample applications</h4>
324 <p>The NDK includes sample Android applications that illustrate how to use
326 <a href="#samples">Using the Sample Applications</a>.</p>
494 <h2 id="samples">Using the Sample Applications</h2>
496 <p>The NDK includes sample applications that illustrate how to use native
523 <p>For each sample, the NDK includes the corresponding C source code and th
    [all...]

Completed in 1506 milliseconds

<<11121314151617181920>>