HomeSort by relevance Sort by last modified time
    Searched defs:sizes (Results 201 - 225 of 542) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
CameraOps.java 138 Size[] sizes = map.getOutputSizes(ImageFormat.JPEG); local
139 List<Size> sizeList = Arrays.asList(sizes);
  /system/core/logd/
LogStatistics.h 102 size_t sizes = entry.getSizes(); local
104 while ((!retval[index] || (sizes > retval[index]->getSizes())) &&
766 size_t sizes(log_id_t id) const { function in class:LogStatistics
  /cts/tests/camera/src/android/hardware/camera2/cts/
ReprocessCaptureTest.java 89 * Test YUV_420_888 -> YUV_420_888 with maximal supported sizes
103 * Test YUV_420_888 -> JPEG with maximal supported sizes
117 * Test OPAQUE -> YUV_420_888 with maximal supported sizes
131 * Test OPAQUE -> JPEG with maximal supported sizes
197 // Test supported input/output formats with the largest sizes.
241 // Test the largest sizes
339 * Test aborting reprocess capture requests of the largest input and output sizes for each
369 * Test reprocess timestamps for the largest input and output sizes for each supported format.
398 * Test reprocess jpeg output's exif data for the largest input and output sizes for each
458 * Test the input format and output format with the largest input and output sizes
1361 Size[] sizes = mStaticInfo.getAvailableSizesForFormatChecked(format, direction); local
    [all...]
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
StaticMetadata.java 588 * Get available thumbnail sizes and do the sanity check.
590 * @return The array of available thumbnail sizes
594 Size[] sizes = getValueFromKeyNonNull(key); local
595 final List<Size> sizeList = Arrays.asList(sizes);
606 checkTrueForKey(key, "Sizes should be in ascending order: Original " + sizeList.toString()
612 return sizes;
1408 Size[] sizes = null; local
    [all...]
  /cts/tests/tests/media/libmediandkjni/
native-media-jni.cpp 247 simplevector<int> sizes; local
249 sizes.add(numtracks);
259 sizes.add(0);
263 sizes.add(val32);
265 sizes.add(val32);
267 sizes.add(val64);
269 sizes.add(1);
273 sizes.add(val32);
275 sizes.add(val32);
277 sizes.add(val64)
462 simplevector<int> *sizes = new simplevector<int>[numtracks]; local
907 size_t sizes[numsubsamples]; local
    [all...]
  /development/vndk/tools/header-checker/header-abi-util/src/
ir_representation_protobuf.cpp 739 const std::pair<uint64_t, uint64_t> &sizes = type_diff_ir->GetSizes(); local
742 old_type_info_protobuf->set_size(sizes.first);
743 new_type_info_protobuf->set_size(sizes.second);
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cMultiBindTests.cpp 1697 GLintptr sizes[n_buffers]; local
2586 std::vector<GLsizeiptr> sizes; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiExternalMemoryTests.cpp 4035 ImageSize sizes[] = { local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineRenderToImageTests.cpp 1734 vector<IVec4> sizes; local
1793 const vector<IVec4> sizes = genSizeCombinations(testCase[caseNdx].baselineSize, testCase[caseNdx].sizeMask, testCase[caseNdx].viewType); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureFilteringExplicitLodTests.cpp 1516 const IVec3 sizes[] = local
1542 caseName << sizes[sizeNdx][0] << "x" << sizes[sizeNdx][1]; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSwapchainTests.cpp 1488 vector<tcu::UVec2> sizes = getSwapchainSizeSequence(capabilities, desiredSize); local
    [all...]
  /external/libcups/cups/
ppd-cache.c 405 num_sizes, /* Number of sizes in file */
652 if ((pc->sizes = calloc((size_t)num_sizes, sizeof(pwg_size_t))) == NULL)
654 DEBUG_printf(("_ppdCacheCreateWithFile: Unable to allocate %d sizes.",
671 size = pc->sizes + pc->num_sizes;
906 DEBUG_printf(("_ppdCacheCreateWithFile: Not enough sizes (%d < %d).",
2949 cups_array_t *sizes; \/* Media sizes we've added *\/ local
    [all...]
ppd.h 203 typedef struct ppd_size_s /**** Page Sizes ****/
296 int variable_sizes; /* 1 = supports variable sizes, 0 = doesn't */
320 int num_sizes; /* Number of page sizes */
321 ppd_size_t *sizes; /* Page sizes */ member in struct:ppd_file_s
  /external/mesa3d/src/intel/vulkan/
genX_cmd_buffer.c 1894 uint32_t *sizes = state.map; local
    [all...]
  /external/skia/src/sksl/
SkSLIRGenerator.cpp 247 std::vector<std::unique_ptr<Expression>> sizes; local
268 sizes.push_back(std::move(size));
272 sizes.push_back(nullptr);
305 variables.emplace_back(new VarDeclaration(var.get(), std::move(sizes),
814 std::vector<std::unique_ptr<Expression>> sizes; local
    [all...]
  /external/skqp/src/sksl/
SkSLIRGenerator.cpp 251 std::vector<std::unique_ptr<Expression>> sizes; local
272 sizes.push_back(std::move(size));
276 sizes.push_back(nullptr);
306 variables.emplace_back(new VarDeclaration(var.get(), std::move(sizes),
813 std::vector<std::unique_ptr<Expression>> sizes; local
    [all...]
  /external/tensorflow/tensorflow/core/util/
mkl_util.h 96 void SetTfLayout(const size_t dimension, const size_t* sizes,
104 sizes_[ii] = sizes[ii];
107 CHECK_EQ(dnnLayoutCreate_F32(&tfLayout_, dimension, sizes, strides),
244 // Location of sizes. Note dim is not used here, left here
398 // sizes.
454 // Returns an mkldnn::memory::dims object that contains the sizes of this
487 // map for it. So we just create Tensorflow shape from sizes in the
523 inline void SetTfLayout(size_t dims, const memory::dims& sizes,
525 CHECK_EQ(dims, sizes.size());
528 data_.sizes_[ii] = sizes[ii]
936 std::vector<int32> sizes; local
    [all...]
  /external/vulkan-validation-layers/tests/
vkrenderframework.cpp 614 vector<VkDescriptorPoolSize> sizes; local
618 sizes.push_back(poolSize);
622 pool.poolSizeCount = sizes.size();
624 pool.pPoolSizes = sizes.data();
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
StaticMetadata.java 548 * Get available thumbnail sizes and do the sanity check.
550 * @return The array of available thumbnail sizes
554 Size[] sizes = getValueFromKeyNonNull(key); local
555 final List<Size> sizeList = Arrays.asList(sizes);
566 checkTrueForKey(key, "Sizes should be in ascending order: Original " + sizeList.toString()
572 return sizes;
836 Assert.assertTrue("No capture sizes available for RAW format!",
848 return assertArrayContainsAnyOf("Available sizes for RAW format" +
1370 Size[] sizes = null; local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
Camera2ReprocessCaptureTest.java 104 * Test YUV_420_888 -> JPEG with maximal supported sizes
125 * Test OPAQUE -> JPEG with maximal supported sizes
207 * Test the input format and output format with the largest input and output sizes.
222 * Test the input format and output format with the largest input and output sizes for a
1110 Size[] sizes = mStaticInfo.getAvailableSizesForFormatChecked(format, direction); local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 1315 android.util.Size[] sizes; local
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptGroup.java 141 int[] sizes = new int[numValues]; local
149 values, sizes, depClosures, depFieldIDs);
156 values, sizes, depClosures, depFieldIDs);
161 fieldIDs, values, sizes, depClosures, depFieldIDs);
184 int[] sizes = new int[numValues]; local
194 sizes, depClosures, depFieldIDs);
199 values, sizes);
206 long[] values, int[] sizes,
229 sizes[index] = 0;
233 sizes[index] = vs.size
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/
CameraManager.java 693 final List<Camera.Size> sizes = local
698 // Sort the sizes so the best size is first
700 sizes,
703 return sizes.get(0);
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
CameraManager.java 997 final List<Camera.Size> sizes = new ArrayList<Camera.Size>( local
1012 final List<Camera.Size> sizes = new ArrayList<Camera.Size>( local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
vkrenderframework.cpp 473 vector<VkDescriptorPoolSize> sizes; local
477 sizes.push_back(poolSize);
481 pool.poolSizeCount = sizes.size();
483 pool.pPoolSizes = sizes.data();
    [all...]

Completed in 705 milliseconds

1 2 3 4 5 6 7 891011>>