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

1 2 3 4 5 6 7

  /external/qemu/distrib/sdl-1.2.15/test/
testtimer.c 29 int desired; local
38 desired = 0;
40 desired = atoi(argv[1]);
42 if ( desired == 0 ) {
43 desired = DEFAULT_RESOLUTION;
45 SDL_SetTimer(desired, ticktock);
57 "Timer resolution: desired = %d ms, actual = %f ms\n",
58 desired, (double)(10*1000)/ticks);
  /system/media/audio_utils/include/audio_utils/
sndfile.h 62 sf_count_t sf_readf_short(SNDFILE *handle, short *ptr, sf_count_t desired);
65 sf_count_t sf_writef_short(SNDFILE *handle, const short *ptr, sf_count_t desired);
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audio.c 397 int SDL_OpenAudio(SDL_AudioSpec *desired, SDL_AudioSpec *obtained)
417 if ( desired->freq == 0 ) {
420 desired->freq = SDL_atoi(env);
423 if ( desired->freq == 0 ) {
425 desired->freq = 22050;
427 if ( desired->format == 0 ) {
430 desired->format = SDL_ParseAudioFormat(env);
433 if ( desired->format == 0 ) {
435 desired->format = AUDIO_S16;
437 if ( desired->channels == 0 )
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
FaceUnlockView.java 36 private int resolveMeasured(int measureSpec, int desired)
42 result = desired;
45 result = Math.max(specSize, desired);
  /external/compiler-rt/BlocksRuntime/tests/
fail.c 82 char desired[512]; local
84 bool gotErrorFile = readfile(desired, errorfile);
92 char *where = strstr(got, desired);
  /external/icu4c/i18n/
astro.h 306 * @param longitude The desired longitude, in <em>degrees</em> east of
309 * @param latitude The desired latitude, in <em>degrees</em>. Positive
357 * @param jdn the desired time, expressed as a "julian day number",
528 * the desired value.
531 UDate getSunTime(double desired, UBool next);
624 * longitude will have the desired value.
626 * @param desired The desired longitude.
628 * is desired, <tt>false</tt> for the previous occurrance.
631 UDate getMoonTime(double desired, UBool next)
    [all...]
astro.cpp 262 * @param longitude The desired longitude, in <em>degrees</em> east of
265 * @param latitude The desired latitude, in <em>degrees</em>. Positive
310 * @param jdn the desired time, expressed as a "julian day number",
717 * the desired value.
729 UDate CalendarAstronomer::getSunTime(double desired, UBool next)
733 desired,
765 MINUTE_MS / 12.); // Desired accuracy
931 // // number" d as outlined above, for the desired moment. Next compute:
    [all...]
  /frameworks/native/libs/binder/
Parcel.cpp     [all...]
  /external/compiler-rt/lib/
atomic.c 173 /// to the value at *expected, then this copies value at *desired to *ptr. If
178 void *desired, int success, int failure) {
181 *(type*)desired, success, failure)
187 memcpy(ptr, desired, size);
267 int __atomic_compare_exchange_##n(type *ptr, type *expected, type desired,\
270 return __c11_atomic_compare_exchange_strong((_Atomic(type)*)ptr, expected, desired,\
275 *ptr = desired;\
  /external/bison/build-aux/
do-release-commit-and-tag 161 # Update NEWS to have today's date, plus desired version number and $type.
ylwrap 44 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
46 Wrapper for lex/yacc invocations, renaming files as desired.
50 DESIRED is the file we actually want instead of OUTPUT
54 Any number of OUTPUT,DESIRED pairs may be used.
  /external/libvorbis/vq/
vqgen.c 59 /* default metric; squared 'distance' from desired value. */
161 than the preceeding value. Thus the desired quantibits apply to
337 long desired; local
369 desired=fdesired;
370 desired2=desired*2;
436 if(k<desired){
439 if(k==desired){
441 qsort(nearbiasptr,desired,sizeof(float),directdsort);
444 }else if(thismetric>nearbiasptr[desired-1]){
450 k=desired;
    [all...]
  /external/clang/test/CodeGen/
atomic-ops.c 103 int desired = 1; local
104 return __atomic_compare_exchange(i, &cmp, &desired, 0, memory_order_acquire, memory_order_acquire);
  /external/webkit/Source/WebCore/platform/mac/
WebFontCache.mm 87 BOOL desired = (desiredTraits & mask) != 0;
88 BOOL chosenHasUnwantedTrait = desired != ((chosenTraits & mask) != 0);
89 BOOL candidateHasUnwantedTrait = desired != ((candidateTraits & mask) != 0);
99 // If both are the same distance from the desired weight, prefer the candidate if it is further from medium.
103 // Otherwise, prefer the one closer to the desired weight.
  /external/chromium/net/base/
ssl_cipher_suite_names.cc 318 struct CipherSuite desired = {0}; local
319 desired.cipher_suite = cipher_suite;
321 void* r = bsearch(&desired, kCipherSuites,
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarInputStreamTest.java 96 final Set<String> desired = new HashSet<String>(Arrays local
106 assertEquals(actual, desired);
151 final Set<String> desired = new HashSet<String>(Arrays.asList(new String[] { "foo/", local
161 assertEquals(actual, desired);
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_audio.h 45 * When filling in the desired audio spec structure,
46 * - 'desired->freq' should be the desired audio frequency in samples-per-second.
47 * - 'desired->format' should be the desired audio format.
48 * - 'desired->samples' is the desired size of the audio buffer, in samples.
58 * - 'desired->size' is the size in bytes of the audio buffer, and is
60 * - 'desired->silence' is the value used to set the buffer to silence,
62 * - 'desired->callback' should be set to a function that will be calle
    [all...]
  /frameworks/wilhelm/src/itf/
IOutputMixExt.c 210 unsigned desired = size; local
228 while (desired > 0) {
229 unsigned actual = desired;
269 desired -= actual;
311 // we need more data: desired > 0 but actual == 0
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_audio.h 45 * When filling in the desired audio spec structure,
46 * - 'desired->freq' should be the desired audio frequency in samples-per-second.
47 * - 'desired->format' should be the desired audio format.
48 * - 'desired->samples' is the desired size of the audio buffer, in samples.
58 * - 'desired->size' is the size in bytes of the audio buffer, and is
60 * - 'desired->silence' is the value used to set the buffer to silence,
62 * - 'desired->callback' should be set to a function that will be calle
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_audio.h 45 * When filling in the desired audio spec structure,
46 * - 'desired->freq' should be the desired audio frequency in samples-per-second.
47 * - 'desired->format' should be the desired audio format.
48 * - 'desired->samples' is the desired size of the audio buffer, in samples.
58 * - 'desired->size' is the size in bytes of the audio buffer, and is
60 * - 'desired->silence' is the value used to set the buffer to silence,
62 * - 'desired->callback' should be set to a function that will be calle
    [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_audio.h 45 * When filling in the desired audio spec structure,
46 * - 'desired->freq' should be the desired audio frequency in samples-per-second.
47 * - 'desired->format' should be the desired audio format.
48 * - 'desired->samples' is the desired size of the audio buffer, in samples.
58 * - 'desired->size' is the size in bytes of the audio buffer, and is
60 * - 'desired->silence' is the value used to set the buffer to silence,
62 * - 'desired->callback' should be set to a function that will be calle
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_CHECK_CAST.S 35 * r1 holds desired class resolved from BBBB
47 mov r1, r10 @ r1<- desired class
  /dalvik/vm/mterp/mips/
OP_CHECK_CAST.S 50 move a1,rBIX # r1<- desired class
  /device/sample/apps/SampleEmailPolicy/
Android.mk 18 # When deploying to an actual device, you must change LOCAL_PACKAGE_NAME to the name desired for
  /external/elfutils/config/
ylwrap 46 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
48 Wrapper for lex/yacc invocations, renaming files as desired.
52 DESIRED is the file we actually want instead of OUTPUT
56 Any number of OUTPUT,DESIRED pairs may be used.

Completed in 1237 milliseconds

1 2 3 4 5 6 7