HomeSort by relevance Sort by last modified time
    Searched refs:formats (Results 176 - 200 of 1080) sorted by null

1 2 3 4 5 6 78 91011>>

  /hardware/qcom/display/msm8996/sdm/libs/utils/
Android.mk 16 formats.cpp
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
ext-device-restore.h 42 uint8_t n_formats; /**< How many formats do we have? */
43 pa_format_info **formats; /**< An array of formats (may be NULL if n_formats == 0) */ member in struct:pa_ext_device_restore_info
86 /** Read the formats for all present devices from the device database. \since 1.0 */
106 pa_format_info **formats,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestAttributeInfo.java 36 public TestAttributeInfo(String name, EnumSet<Format> formats, String definedBy,
40 this.mFormats = formats;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/alpha/
fp.s 2 # These three formats are 8 bytes each.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
sdist.py 23 """Print all possible values for the 'formats' option (used by
24 the "--help-formats" command-line option).
28 formats = []
30 formats.append(("formats=" + format, None,
32 formats.sort()
33 FancyGetopt(formats).print_help(
34 "List of available source distribution formats:")
68 ('formats=', None,
69 "formats for source distribution (comma-separated list)"),
    [all...]
  /external/python/cpython2/Lib/distutils/command/
sdist.py 23 """Print all possible values for the 'formats' option (used by
24 the "--help-formats" command-line option).
28 formats = []
30 formats.append(("formats=" + format, None,
32 formats.sort()
33 FancyGetopt(formats).print_help(
34 "List of available source distribution formats:")
68 ('formats=', None,
69 "formats for source distribution (comma-separated list)")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
sdist.py 23 """Print all possible values for the 'formats' option (used by
24 the "--help-formats" command-line option).
28 formats = []
30 formats.append(("formats=" + format, None,
32 formats.sort()
33 FancyGetopt(formats).print_help(
34 "List of available source distribution formats:")
68 ('formats=', None,
69 "formats for source distribution (comma-separated list)")
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
sdist.py 23 """Print all possible values for the 'formats' option (used by
24 the "--help-formats" command-line option).
28 formats = []
30 formats.append(("formats=" + format, None,
32 formats.sort()
33 FancyGetopt(formats).print_help(
34 "List of available source distribution formats:")
68 ('formats=', None,
69 "formats for source distribution (comma-separated list)")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 23 """Print all possible values for the 'formats' option (used by
24 the "--help-formats" command-line option).
28 formats = []
30 formats.append(("formats=" + format, None,
32 formats.sort()
33 FancyGetopt(formats).print_help(
34 "List of available source distribution formats:")
68 ('formats=', None,
69 "formats for source distribution (comma-separated list)")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 23 """Print all possible values for the 'formats' option (used by
24 the "--help-formats" command-line option).
28 formats = []
30 formats.append(("formats=" + format, None,
32 formats.sort()
33 FancyGetopt(formats).print_help(
34 "List of available source distribution formats:")
68 ('formats=', None,
69 "formats for source distribution (comma-separated list)")
    [all...]
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_format.c 34 /* Specifies the table of all the formats and their features. Also supplies
81 static struct etna_format formats[PIPE_FORMAT_COUNT] = { variable in typeref:struct:etna_format
234 if (!formats[fmt].present)
237 return formats[fmt].tex;
243 if (!formats[fmt].present)
246 if (formats[fmt].rs == ETNA_NO_MATCH)
249 return RS_FORMAT(formats[fmt].rs);
255 assert(formats[fmt].present);
257 return formats[fmt].rs & RS_FORMAT_RB_SWAP;
264 if (!formats[fmt].present
    [all...]
  /frameworks/av/media/libaudioprocessing/tests/
test-mixer.cpp 105 std::vector<audio_format_t> formats; local
152 formats.resize(argc);
168 formats[i] = AUDIO_FORMAT_PCM_FLOAT;
171 formats[i] = AUDIO_FORMAT_PCM_16_BIT;
186 formats[i] = AUDIO_FORMAT_PCM_FLOAT;
189 formats[i] = AUDIO_FORMAT_PCM_16_BIT;
199 formats[i] = AUDIO_FORMAT_PCM_FLOAT;
202 formats[i] = AUDIO_FORMAT_PCM_16_BIT;
247 name, channelMask, formats[i], AUDIO_SESSION_OUTPUT_MIX);
262 (void *)(uintptr_t)formats[i])
    [all...]
  /cts/hostsidetests/media/bitstreams/app/src/android/media/cts/bitstreams/app/
MediaBitstreamsDeviceSideTest.java 100 XmlSerializer formats = Xml.newSerializer(); local
101 formats.setOutput(out, UTF_8);
102 formats.startDocument(UTF_8, true);
103 formats.startTag(null, MediaBitstreams.DYNAMIC_CONFIG);
108 formats.startTag(null, MediaBitstreams.DYNAMIC_CONFIG_ENTRY);
109 formats.attribute(null, MediaBitstreams.DYNAMIC_CONFIG_KEY, path);
110 formats.startTag(null, MediaBitstreams.DYNAMIC_CONFIG_VALUE);
114 formats.text(formatStr);
129 formats.text(formatStringBuilder.toString());
132 formats.endTag(null, MediaBitstreams.DYNAMIC_CONFIG_VALUE)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncoderTest.java 71 LinkedList<MediaFormat> formats = new LinkedList<MediaFormat>(); local
82 formats.push(format);
85 testEncoderWithFormats(MediaFormat.MIMETYPE_AUDIO_AMR_NB, formats);
89 LinkedList<MediaFormat> formats = new LinkedList<MediaFormat>(); local
100 formats.push(format);
103 testEncoderWithFormats(MediaFormat.MIMETYPE_AUDIO_AMR_WB, formats);
107 LinkedList<MediaFormat> formats = new LinkedList<MediaFormat>(); local
137 formats.push(format);
143 testEncoderWithFormats(MediaFormat.MIMETYPE_AUDIO_AAC, formats);
148 MediaFormat[] formats = formatList.toArray(new MediaFormat[formatList.size()]) local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 348 InsnFormat[] formats = makeFormatsArray(); local
349 reserveRegisters(formats);
350 massageInstructions(formats);
362 * @return {@code non-null;} the array of formats
378 * them. It also updates the given {@code formats} array so
382 * @param formats {@code non-null;} array of per-instruction format selections
384 private void reserveRegisters(InsnFormat[] formats) {
392 int newReservedCount = calculateReservedCount(formats);
428 * {@code formats} list to help avoid extra work in future
431 * @param formats {@code non-null;} array of per-instruction format selection
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Instruction.java 20 import dexfuzz.rawdex.formats.AbstractFormat;
21 import dexfuzz.rawdex.formats.ContainsConst;
22 import dexfuzz.rawdex.formats.ContainsPoolIndex;
23 import dexfuzz.rawdex.formats.ContainsTarget;
24 import dexfuzz.rawdex.formats.ContainsVRegs;
25 import dexfuzz.rawdex.formats.Format10t;
26 import dexfuzz.rawdex.formats.Format10x;
27 import dexfuzz.rawdex.formats.Format11n;
28 import dexfuzz.rawdex.formats.Format11x;
29 import dexfuzz.rawdex.formats.Format12x
    [all...]
  /external/python/cpython3/Lib/distutils/command/
sdist.py 20 """Print all possible values for the 'formats' option (used by
21 the "--help-formats" command-line option).
25 formats = []
27 formats.append(("formats=" + format, None,
29 formats.sort()
30 FancyGetopt(formats).print_help(
31 "List of available source distribution formats:")
65 ('formats=', None,
66 "formats for source distribution (comma-separated list)")
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
CaptureQualityController.java 27 private final List<CaptureFormat> formats = Arrays.asList( field in class:CaptureQualityController
76 for (CaptureFormat format : formats) {
90 final CaptureFormat bestFormat = Collections.max(formats, compareFormats);
  /frameworks/av/media/libaaudio/tests/
test_open_params.cpp 121 aaudio_format_t formats[] = {AAUDIO_FORMAT_UNSPECIFIED, local
138 for (uint i = 0; i < arraysize(formats); i++) {
139 testOpenOptions(direction, AAUDIO_UNSPECIFIED, AAUDIO_UNSPECIFIED, formats[i]);
  /system/media/alsa_utils/
alsa_device_profile.c 66 profile->formats[0] = PCM_FORMAT_INVALID;
169 return profile_is_valid(profile) ? profile->formats[0] : DEFAULT_SAMPLE_FORMAT;
175 for (index = 0; profile->formats[index] != PCM_FORMAT_INVALID; index++) {
176 if (profile->formats[index] == fmt) {
273 profile->formats[num_written++] = format;
274 if (num_written == ARRAY_SIZE(profile->formats) - 1) {
285 profile->formats[num_written] = PCM_FORMAT_INVALID;
402 /* Formats */
468 for (index = 0; profile->formats[index] != PCM_FORMAT_INVALID; index++) {
470 if (buffSize - curStrLen < strlen(format_string_map[profile->formats[index]]
    [all...]
  /external/deqp/external/openglcts/modules/glesext/texture_buffer/
esextcTextureBufferTextureBufferRange.cpp 607 /* Create list of textures internal formats */
608 std::vector<glw::GLenum> formats; local
610 formats.push_back(GL_R8);
611 formats.push_back(GL_R16F);
612 formats.push_back(GL_R32F);
613 formats.push_back(GL_R8I);
614 formats.push_back(GL_R16I);
615 formats.push_back(GL_R32I);
616 formats.push_back(GL_R8UI);
617 formats.push_back(GL_R16UI)
    [all...]
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
VideoCapturerAndroidTestFixtures.java 304 final List<CaptureFormat> formats = capturer.getSupportedFormats(); local
305 final CameraEnumerationAndroid.CaptureFormat format = formats.get(0);
326 final List<CaptureFormat> formats = capturer.getSupportedFormats(); local
327 final CameraEnumerationAndroid.CaptureFormat format = formats.get(0);
374 List<CaptureFormat> formats = capturer.getSupportedFormats(); local
377 CameraEnumerationAndroid.CaptureFormat format = formats.get(i);
422 final List<CaptureFormat> formats = capturer.getSupportedFormats(); local
423 final CameraEnumerationAndroid.CaptureFormat format = formats.get(0);
445 final List<CaptureFormat> formats = capturer.getSupportedFormats(); local
446 final CameraEnumerationAndroid.CaptureFormat format = formats.get(0)
469 final List<CaptureFormat> formats = capturer.getSupportedFormats(); local
485 List<CaptureFormat> formats = capturer.getSupportedFormats(); local
555 final List<CaptureFormat> formats = capturer.getSupportedFormats(); local
    [all...]
  /external/webrtc/talk/media/base/
videocapturer_unittest.cc 205 std::vector<cricket::VideoFormat> formats; local
206 formats.push_back(cricket::VideoFormat(kWidth, kHeight,
208 capturer_.ResetSupportedFormats(formats);
227 std::vector<cricket::VideoFormat> formats; local
228 formats.push_back(cricket::VideoFormat(kWidth, kHeight,
232 capturer_.ResetSupportedFormats(formats);
271 std::vector<cricket::VideoFormat> formats; local
272 formats.push_back(cricket::VideoFormat(kWidth, kHeight,
276 capturer_.ResetSupportedFormats(formats);
322 std::vector<cricket::VideoFormat> formats; local
402 std::vector<cricket::VideoFormat> formats; local
773 std::vector<cricket::VideoFormat> formats = *capturer_.GetSupportedFormats(); local
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format10t.java 17 package dexfuzz.rawdex.formats;
Format11n.java 17 package dexfuzz.rawdex.formats;

Completed in 647 milliseconds

1 2 3 4 5 6 78 91011>>