HomeSort by relevance Sort by last modified time
    Searched refs:desired (Results 26 - 50 of 193) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/content/renderer/media/webrtc/
webrtc_video_capturer_adapter.h 47 virtual bool GetBestCaptureFormat(const cricket::VideoFormat& desired,
webrtc_video_capturer_adapter.cc 67 const cricket::VideoFormat& desired,
71 << " w = " << desired.width
72 << " h = " << desired.height;
76 // Use the desired format as the best format.
77 best_format->width = desired.width;
78 best_format->height = desired.height;
80 best_format->interval = desired.interval;
  /external/chromium_org/remoting/host/
cast_video_capturer_adapter.h 48 virtual bool GetBestCaptureFormat(const cricket::VideoFormat& desired,
cast_video_capturer_adapter.cc 65 const cricket::VideoFormat& desired,
69 // For now, just used the desired width and height.
70 best_format->width = desired.width;
71 best_format->height = desired.height;
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu/icu4c/source/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...]
  /external/chromium_org/net/ssl/
ssl_cipher_suite_names.cc 283 struct CipherSuite desired = {0}; local
284 desired.cipher_suite = cipher_suite;
286 void* r = bsearch(&desired, kCipherSuites,
349 CipherSuite desired = {0}; local
350 desired.cipher_suite = cipher_suite;
352 void* r = bsearch(&desired,
  /frameworks/native/libs/binder/
Parcel.cpp     [all...]
  /external/compiler-rt/lib/builtins/
atomic.c 195 /// to the value at *expected, then this copies value at *desired to *ptr. If
200 void *desired, int success, int failure) {
203 *(type*)desired, success, failure)
209 memcpy(ptr, desired, size);
289 int __atomic_compare_exchange_##n(type *ptr, type *expected, type desired,\
292 return __c11_atomic_compare_exchange_strong((_Atomic(type)*)ptr, expected, desired,\
297 *ptr = desired;\
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect1.asm 9 ; 9B0h is desired.
  /external/bison/build-aux/
do-release-commit-and-tag 161 # Update NEWS to have today's date, plus desired version number and $type.
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer.h 67 virtual bool GetBestCaptureFormat(const VideoFormat& desired,
webrtcvideocapturer.cc 157 // Find the desired camera, by name.
232 bool WebRtcVideoCapturer::GetBestCaptureFormat(const VideoFormat& desired,
238 if (!VideoCapturer::GetBestCaptureFormat(desired, best_format)) {
240 // Use the desired format as the best format.
241 best_format->width = desired.width;
242 best_format->height = desired.height;
244 best_format->interval = desired.interval;
  /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/chromium_org/third_party/WebKit/Source/platform/mac/
WebFontCache.mm 79 BOOL desired = (desiredTraits & mask) != 0;
80 BOOL chosenHasUnwantedTrait = desired != ((chosenTraits & mask) != 0);
81 BOOL candidateHasUnwantedTrait = desired != ((candidateTraits & mask) != 0);
91 // If both are the same distance from the desired weight, prefer the candidate if it is further from medium.
95 // Otherwise, prefer the one closer to the desired weight.
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturer.cc 583 // Get the distance between the supported and desired formats.
588 // 4) Compression. If desired format has a specific fourcc, we need exact match;
590 int64 VideoCapturer::GetFormatDistance(const VideoFormat& desired,
597 if (FOURCC_ANY == desired.fourcc) {
598 // Any fourcc is OK for the desired. Use preference to find best fourcc.
618 } else if (supported_fourcc == CanonicalFourCC(desired.fourcc)) {
628 int desired_width = desired.width;
629 int desired_height = desired.height;
633 supported_fps - VideoFormat::IntervalToFpsFloat(desired.interval);
641 // Set high penalty if the supported format is lower than the desired format
    [all...]
videocapturer.h 148 // Get the best capture format for the desired format. The best format is the
153 // that for HD, the desired format is always 16x9. The subclasses can override
156 // desired: the input desired format. If desired.fourcc is not kAnyFourcc,
160 // Return false if there is no such a best format, that is, the desired format
162 virtual bool GetBestCaptureFormat(const VideoFormat& desired,
182 // Sets the desired aspect ratio. If the capturer is capturing at another
339 // Get the distance between the desired format and the supported format.
342 int64 GetFormatDistance(const VideoFormat& desired,
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_window_pos.spec 34 desired window coordinate is outside of the window's bounds one must
  /external/chromium_org/tools/grit/grit/gather/
interface.py 50 By default, this does nothing. If special handling is desired, it should be
61 By default, this does nothing. If special handling is desired, it should be
  /external/chromium_org/ui/webui/resources/js/
load_time_data.js 56 * @param {string} id The key that identifies the desired value.
68 * @param {string} id The key that identifies the desired string.
98 * @param {string} id The key that identifies the desired boolean.
109 * @param {string} id The key that identifies the desired number.
  /external/clang/test/CodeGen/
big-atomic-ops.c 103 int desired = 1; local
104 return __atomic_compare_exchange(i, &cmp, &desired, 0, memory_order_acquire, memory_order_acquire);
  /external/mesa3d/docs/
MESA_window_pos.spec 34 desired window coordinate is outside of the window's bounds one must
  /external/chromium_org/ui/base/x/
selection_utils.cc 59 void GetAtomIntersection(const std::vector< ::Atom>& desired,
62 for (std::vector< ::Atom>::const_iterator it = desired.begin();
63 it != desired.end(); ++it) {

Completed in 945 milliseconds

12 3 4 5 6 7 8