HomeSort by relevance Sort by last modified time
    Searched defs:caps (Results 26 - 50 of 143) sorted by null

12 3 4 5 6

  /external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
SDL_dx5audio.c 431 DSBCAPS caps; local
461 SDL_memset(&caps, 0, sizeof(caps));
462 caps.dwSize = sizeof(caps);
463 result = IDirectSoundBuffer_GetCaps(*sndbuf, &caps);
471 if ( (chunksize > caps.dwBufferBytes) ||
472 ((caps.dwBufferBytes%chunksize) != 0) ) {
480 caps.dwBufferBytes, chunksize);
483 numchunks = (caps.dwBufferBytes/chunksize)
    [all...]
  /external/valgrind/main/coregrind/
m_debuglog.c 659 Bool is_long, caps; local
791 caps = toBool(format[i] == 'X');
798 ret += myvprintf_int64(send, send_arg2, flags, 16, width, caps,
801 ret += myvprintf_int64(send, send_arg2, flags, 16, width, caps,
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
VideoSinkGStreamer.cpp 152 // For the unlikely case where the buffer has no caps, the caps
153 // are implicitely the caps of the pad. This shouldn't happen.
159 GstCaps *caps = GST_BUFFER_CAPS(buffer); local
162 if (G_UNLIKELY(!gst_video_format_parse_caps(caps, &format, &width, &height))) {
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 77 u16 caps; member in struct:wpa_bss
  /frameworks/av/media/libstagefright/
MediaCodecList.cpp 528 CodecCapabilities caps; local
531 info.mName.c_str(), type, info.mIsEncoder, &caps);
537 for (size_t i = 0; i < caps.mProfileLevels.size(); ++i) {
538 const CodecProfileLevel &src = caps.mProfileLevels.itemAt(i);
546 for (size_t i = 0; i < caps.mColorFormats.size(); ++i) {
547 colorFormats->push(caps.mColorFormats.itemAt(i));
StagefrightMetadataRetriever.cpp 120 Vector<CodecCapabilities> caps; local
124 &caps) == OK) {
126 for (size_t j = 0; j < caps.size(); ++j) {
127 CodecCapabilities cap = caps[j];
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
mixer_abst.h 69 unsigned int caps; member in struct:_sm_selem
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
mixer_abst.h 69 unsigned int caps; member in struct:_sm_selem
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
mixer_abst.h 69 unsigned int caps; member in struct:_sm_selem
  /external/smack/src/org/jivesoftware/smackx/entitycaps/
EntityCapsManager.java 75 public static final String NAMESPACE = "http://jabber.org/protocol/caps";
89 protected static Map<String, DiscoverInfo> caps = new Cache<String, DiscoverInfo>(1000, -1); field in class:EntityCapsManager
132 caps.put(nodeVer, info);
185 DiscoverInfo info = caps.get(nodeVer);
200 throw new IllegalStateException("Entity Caps Persistent Cache was already set");
222 ((Cache) caps).setMaxCacheSize(maxCacheSize);
259 // This calculates the local entity caps version
268 // Listen for remote presence stanzas with the caps extension
311 // Intercept presence packages and add caps data when intended.
320 CapsExtension caps = new CapsExtension(ENTITY_NODE, getCapsVersion(), "sha-1")
    [all...]
  /bionic/libc/bionic/
libc_logging.cpp 155 static void format_unsigned(char* buf, size_t buf_size, uint64_t value, int base, bool caps) {
168 ch = (caps ? 'A' : 'a') + (d - 10);
200 bool caps = (conversion == 'X'); local
208 format_unsigned(buf, buf_size, value, base, caps);
  /bionic/libc/kernel/common/linux/mmc/
host.h 94 unsigned long caps; member in struct:mmc_host
  /development/ndk/platforms/android-3/include/linux/mmc/
host.h 87 unsigned long caps; member in struct:mmc_host
  /external/kernel-headers/original/linux/mmc/
host.h 85 unsigned long caps; /* Host capabilities */ member in struct:mmc_host
  /external/openssh/openbsd-compat/
bsd-snprintf.c 522 int caps = 0; local
541 if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
545 (caps? "0123456789ABCDEF":"0123456789abcdef")
684 int caps = 0; local
711 if (flags & DP_F_UP) caps = 1; /* Should characters be upper case? */
747 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
762 (caps? "0123456789ABCDEF":"0123456789abcdef")[idx];
  /external/openssl/crypto/bio/
b_print.c 491 int caps = 0; local
510 caps = 1;
513 (caps ? "0123456789ABCDEF" : "0123456789abcdef")
619 int caps = 0; local
654 (caps ? "0123456789ABCDEF"
665 (caps ? "0123456789ABCDEF"
  /external/qemu/audio/
winaudio.c 232 WAVEOUTCAPS caps; local
234 result = waveOutGetDevCaps((UINT) s->waveout, &caps, sizeof(caps));
238 printf("Audio out device: %s\n", caps.szPname);
483 WAVEINCAPS caps; local
485 result = waveInGetDevCaps((UINT) s->wavein, &caps, sizeof(caps));
489 printf("Audio in device: %s\n", caps.szPname);
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_video.c 375 DFBCardCapabilities caps; local
377 DFBGraphicsDeviceDescription caps; local
451 dfb->GetCardCapabilities (dfb, &caps);
453 dfb->GetDeviceDescription (dfb, &caps);
462 this->info.video_mem = caps.video_memory / 1024;
659 dsc.caps = DSCAPS_PRIMARY | ((flags & SDL_DOUBLEBUF) ? DSCAPS_FLIPPING : 0);
666 dsc.caps &= ~DSCAPS_FLIPPING;
687 if (dsc.caps & DSCAPS_FLIPPING)
817 dsc.caps = (surface->flags & SDL_DOUBLEBUF) ? DSCAPS_FLIPPING : 0;
  /external/valgrind/main/exp-sgcheck/tests/
bad_percentify.c 349 Bool is_long, caps; local
470 caps = toBool(format[i] == 'X');
477 ret += myvprintf_int64(send, send_arg2, flags, 16, width, caps,
480 ret += myvprintf_int64(send, send_arg2, flags, 16, width, caps,
  /frameworks/base/core/java/android/text/method/
QwertyKeyListener.java 376 int caps = 0; local
381 caps++;
387 if (caps == 0)
389 else if (caps == 1)
391 else if (caps == len)
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXCapabilities.cpp 52 /**** look up tables to translate OMX Caps to Parameter ****/
224 /**** Utility functions to help translate OMX Caps to Parameter ****/
305 status_t OMXCameraAdapter::encodeVFramerateCap(OMX_TI_CAPTYPE &caps,
322 if(caps.ulPrvVarFPSModesCount < 1) {
327 minVFR = caps.tPrvVarFPSModes[caps.ulPrvVarFPSModesCount-1].nVarFPSMin >> VFR_OFFSET;
328 maxVFR = caps.tPrvVarFPSModes[caps.ulPrvVarFPSModesCount-1].nVarFPSMax >> VFR_OFFSET;
349 // if we haven't found any caps in the list to populate
458 status_t OMXCameraAdapter::insertImageSizes(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) {
1225 OMX_TI_CAPTYPE** caps = NULL;; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/dvb/
dmx.h 118 __u32 caps; member in struct:dmx_caps
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/dvb/
dmx.h 118 __u32 caps; member in struct:dmx_caps
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/dvb/
dmx.h 118 __u32 caps; member in struct:dmx_caps
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/mmc/
host.h 87 unsigned long caps; member in struct:mmc_host

Completed in 581 milliseconds

12 3 4 5 6