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

1 2 3 4 5 67 8 91011>>

  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 97 static const uptr sizes[] = {1, 16, 30, 40, 100, 1000, 10000, local
105 for (uptr s = 0; s < ARRAY_SIZE(sizes); s++) {
106 uptr size = sizes[s];
671 static const uptr sizes[] = {1, 16, 30, 40, 100, 1000, 10000, local
677 for (uptr s = 0; s < ARRAY_SIZE(sizes); s++) {
678 uptr size = sizes[s];
  /external/libcups/cups/
ppd-private.h 126 int num_sizes; /* Number of media sizes */
127 pwg_size_t *sizes; /* Media sizes */ member in struct:_ppd_cache_s
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_screen_ioctl.c 139 struct drm_vmw_size sizes[DRM_VMW_MAX_SURFACE_FACES* local
156 cur_size = sizes;
175 req->size_addr = (unsigned long)&sizes;
  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.cpp 164 // sizes (which must be static in structs) are part of the type name here
879 std::vector<int> sizes; local
    [all...]
SkSLMetalCodeGenerator.cpp 70 // sizes (which must be static in structs) are part of the type name here
433 std::vector<int> sizes; local
436 sizes.push_back(type->columns());
444 for (int s : sizes) {
    [all...]
  /external/skia/tests/
StreamTest.cpp 144 const size_t sizes[] = { local
155 for (i = 0; i < SK_ARRAY_COUNT(sizes); ++i) {
156 bool success = wstream.writePackedUInt(sizes[i]);
161 for (i = 0; i < SK_ARRAY_COUNT(sizes); ++i) {
163 if (sizes[i] != n) {
164 ERRORF(reporter, "sizes:%x != n:%x\n", i, sizes[i], n);
  /external/skqp/src/sksl/
SkSLGLSLCodeGenerator.cpp 164 // sizes (which must be static in structs) are part of the type name here
869 std::vector<int> sizes; local
    [all...]
SkSLMetalCodeGenerator.cpp 70 // sizes (which must be static in structs) are part of the type name here
433 std::vector<int> sizes; local
436 sizes.push_back(type->columns());
444 for (int s : sizes) {
    [all...]
  /frameworks/av/media/libstagefright/webm/
WebmWriter.cpp 498 uint64_t sizes[nElems]; local
507 sizes[i] = e->mSize;
514 mInfoSize = sizes[3];
  /hardware/interfaces/renderscript/1.0/vts/functional/
VtsScriptTests.cpp 528 hidl_vec<int32_t> sizes = {int32_t(0)}; local
532 values, sizes, depClosures, depFieldIDS);
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
SpinedBufferTest.java 39 // Create sizes around the boundary of spines
40 static List<Integer> sizes; field in class:SpinedBufferTest
43 sizes = IntStream.range(0, 15)
64 for (int size : sizes) {
151 for (int size : sizes) {
226 for (int size : sizes) {
301 for (int size : sizes) {
  /packages/apps/Camera2/src/com/android/camera/settings/
ResolutionUtil.java 78 * A resolution bucket holds a list of sizes that are of a given aspect
84 * This is a sorted list of sizes, going from largest to smallest.
86 public List<Size> sizes = new LinkedList<Size>(); field in class:ResolutionUtil.ResolutionBucket
88 * This is the head of the sizes array.
99 * into the sizes array and update appropriate members.
104 sizes.add(size);
105 Collections.sort(sizes, new Comparator<Size>() {
113 maxPixels = sizes.get(0).width() * sizes.get(0).height();
118 * Given a list of camera sizes, this uses some heuristics to decide whic
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 628 Map<INode, Rect> sizes = mRulesEngine.measureChildren(parent, local
646 if (sizes != null) {
647 state.wrapBounds = sizes.get(child);
    [all...]
  /cts/tests/camera/src/android/hardware/cts/
CameraTest.java 457 // Test all preview sizes.
738 // Check if the sizes value contain invalid characters.
847 List<Size> sizes = p.getSupportedJpegThumbnailSizes(); local
1277 List<Size> sizes = parameters.getSupportedPreviewSizes(); local
    [all...]
  /dalvik/tools/hprof-conv/
HprofConv.c 324 static const int sizes[] = { -1, -1, 4, -1, 1, 2, 4, 8, 1, 2, 4, 8 }; local
325 static const size_t maxSize = sizeof(sizes) / sizeof(sizes[0]);
330 return sizes[basicType];
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSurfaceTests.cpp 1025 const UVec2 sizes[] = local
1072 const UVec2 sizes[] = local
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorMorphing.h 206 template<typename StartIndices, typename Sizes, typename XprType>
207 struct traits<TensorSlicingOp<StartIndices, Sizes, XprType> > : public traits<XprType>
219 template<typename StartIndices, typename Sizes, typename XprType>
220 struct eval<TensorSlicingOp<StartIndices, Sizes, XprType>, Eigen::Dense>
222 typedef const TensorSlicingOp<StartIndices, Sizes, XprType>& type;
225 template<typename StartIndices, typename Sizes, typename XprType>
226 struct nested<TensorSlicingOp<StartIndices, Sizes, XprType>, 1, typename eval<TensorSlicingOp<StartIndices, Sizes, XprType> >::type>
228 typedef TensorSlicingOp<StartIndices, Sizes, XprType> type;
235 template<typename StartIndices, typename Sizes, typename XprType
251 const Sizes& sizes() const { return m_sizes; } function in class:Eigen::TensorSlicingOp
    [all...]
  /external/libvpx/libvpx/test/
datarate_test.cc 1313 uint32_t sizes[8] = { 0 }; local
1319 pkt->data.frame.sz, sizes, &count); local
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_print.c 92 static const char *sizes[] = { "error", "vec1", "vec2", "vec3", "vec4" }; variable
98 fprintf(fp, "decl_reg %s %u ", sizes[reg->num_components], reg->bit_size);
113 fprintf(fp, "%s %u ssa_%u", sizes[def->num_components], def->bit_size,
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_control_wrapper.cc 231 int sizes[MAX_IN_OUT_COUNT]; local
234 sizes[i] = size;
236 void* outputs_ptr = soc_interface_SetOneNodeOutputs(count, sizes);
  /frameworks/av/media/libstagefright/
CameraSource.cpp 272 * of the supported sizes.
275 * @param suppportedSizes the vector of sizes that we check against
302 * Query the camera to retrieve the supported video frame sizes
308 * @param sizes returns the vector of Size objects for the
309 * supported video frame sizes advertised by the camera.
314 Vector<Size>& sizes) {
317 params.getSupportedVideoSizes(sizes);
318 if (sizes.size() == 0) {
320 params.getSupportedPreviewSizes(sizes);
360 Vector<Size> sizes; local
442 Vector<Size> sizes; local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyRequestMapper.java 423 List<Camera.Size> sizes = params.getSupportedJpegThumbnailSizes(); local
425 if (sizes != null && sizes.size() > 0) {
427 boolean invalidSize = (s == null) ? false : !ParameterUtils.containsSize(sizes,
  /frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
CameraOps.java 138 Size[] sizes = map.getOutputSizes(ImageFormat.JPEG); local
139 Size largest = Collections.max(Arrays.asList(sizes), new Comparator<Size>() {
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_ion.h 132 size_t __user * sizes; member in struct:ion_prefetch_regions
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_ion.h 169 size_t __user *sizes; member in struct:ion_prefetch_regions

Completed in 998 milliseconds

1 2 3 4 5 67 8 91011>>