HomeSort by relevance Sort by last modified time
    Searched full:dimensions (Results 226 - 250 of 3027) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/wallpapers/LivePicker/res/values/
dimensions.xml 28 <!-- Dimensions for the preview fragment. -->
32 <!-- Dimensions for the preview attribution pane. -->
  /external/eigen/unsupported/test/
cxx11_tensor_simple.cpp 66 VERIFY_IS_EQUAL((vec1.dimensions()[0]), 6);
134 VERIFY_IS_EQUAL((mat1.dimensions()[0]), 2);
135 VERIFY_IS_EQUAL((mat1.dimensions()[1]), 3);
139 VERIFY_IS_EQUAL((mat2.dimensions()[0]), 2);
140 VERIFY_IS_EQUAL((mat2.dimensions()[1]), 3);
165 VERIFY_IS_EQUAL((epsilon.dimensions()[0]), 3);
166 VERIFY_IS_EQUAL((epsilon.dimensions()[1]), 3);
167 VERIFY_IS_EQUAL((epsilon.dimensions()[2]), 3);
206 VERIFY_IS_EQUAL((t1.dimensions()[0]), 2);
207 VERIFY_IS_EQUAL((t1.dimensions()[1]), 3)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameQueue.java 81 public Frame fetchAvailableFrame(int[] dimensions);
116 public Frame fetchAvailableFrame(int[] dimensions) {
120 return new Frame(mType, dimensions, manager);
158 public Frame fetchAvailableFrame(int[] dimensions) {
159 return mQueueImpl.fetchAvailableFrame(dimensions);
FrameType.java 26 * A FrameType generally consists of an element type and number of dimensions. The currently
59 * <li>The dimensions must match (except for singles and arrays, see below).</li>
80 * type must have its element and dimensions specified. This ensures that filters that need to
261 * Returns the number of dimensions of the FrameType or -1 if no dimensions were set.
262 * @return The number of dimensions of the FrameType.
271 * A FrameType is fully specified if its element and dimensions are specified.
337 int dimensions = Math.max(writer.mDimensions, reader.mDimensions); local
340 return success ? FrameType.fetchType(mergedClass, dimensions) : null;
404 private static FrameType fetchType(int elementId, int dimensions, int accessHints)
    [all...]
FrameBuffer1D.java 91 throw new RuntimeException("Cannot access Frame with no dimensions as a FrameBuffer "
96 void updateLength(int[] dimensions) {
98 for (int dim : dimensions) {
  /frameworks/native/cmds/surfacereplayer/replayer/
BufferQueueScheduler.cpp 45 bufferUpdate(event.dimensions);
75 void BufferQueueScheduler::bufferUpdate(const Dimensions& dimensions) {
77 s->setBuffersDimensions(dimensions.width, dimensions.height);
  /frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
ViewfinderProcessor.java 43 public ViewfinderProcessor(RenderScript rs, Size dimensions) {
45 yuvTypeBuilder.setX(dimensions.getWidth());
46 yuvTypeBuilder.setY(dimensions.getHeight());
53 rgbTypeBuilder.setX(dimensions.getWidth());
54 rgbTypeBuilder.setY(dimensions.getHeight());
  /packages/apps/Camera2/src/com/android/camera/data/
VideoDataFactory.java 48 Size dimensions; local
58 dimensions = new Size(profile.videoFrameWidth, profile.videoFrameHeight);
61 dimensions = UNKNOWN_SIZE;
64 dimensions = new Size(width, height);
83 dimensions,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
IconFactory.java 31 * Builds an icon with the dimensions iconWidth:iconHeight. If scale is set
32 * the source image is stretched to fit within the given dimensions;
38 * @param scale if true, stretch sourceImage to fit the icon dimensions.
39 * @return an icon bitmap with the dimensions iconWidth:iconHeight.
62 * is stretched to fit within the destination dimensions; otherwise, the
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorShuffling.h 104 static const int NumDims = internal::array_size<typename TensorEvaluator<ArgType, Device>::Dimensions>::value;
105 typedef DSizes<Index, NumDims> Dimensions;
122 const typename TensorEvaluator<ArgType, Device>::Dimensions& input_dims = m_impl.dimensions();
151 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; } function in struct:Eigen::TensorEvaluator
170 eigen_assert(index+PacketSize-1 < dimensions().TotalSize());
210 Dimensions m_dimensions;
226 static const int NumDims = internal::array_size<typename TensorEvaluator<ArgType, Device>::Dimensions>::value;
227 typedef DSizes<Index, NumDims> Dimensions;
    [all...]
TensorMorphing.h 66 const NewDimensions& dimensions() const { return m_dims; } function in class:Eigen::TensorReshapingOp
102 typedef NewDimensions Dimensions;
113 : m_impl(op.expression(), device), m_dimensions(op.dimensions())
117 eigen_assert(internal::array_prod(m_impl.dimensions()) == internal::array_prod(op.dimensions()));
125 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; } function in struct:Eigen::TensorEvaluator
167 typedef NewDimensions Dimensions;
324 for (std::size_t i = 0; i < internal::array_size<Dimensions>::value; ++i) {
325 eigen_assert(m_impl.dimensions()[i] >= op.sizes()[i] + op.startIndices()[i])
363 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; } function in struct:Eigen::TensorEvaluator
789 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; } function in struct:Eigen::TensorEvaluator
    [all...]
TensorCustomOp.h 85 typedef DSizes<Index, NumDims> Dimensions;
103 m_dimensions = op.func().dimensions(op.expression());
106 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; } function in struct:Eigen::TensorEvaluator
114 m_device.allocate(dimensions().TotalSize() * sizeof(Scalar)));
150 Dimensions m_dimensions;
241 typedef DSizes<Index, NumDims> Dimensions;
259 m_dimensions = op.func().dimensions(op.lhsExpression(), op.rhsExpression());
262 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; function in struct:Eigen::TensorEvaluator
    [all...]
TensorStriding.h 104 static const int NumDims = internal::array_size<typename TensorEvaluator<ArgType, Device>::Dimensions>::value;
105 typedef DSizes<Index, NumDims> Dimensions;
122 m_dimensions = m_impl.dimensions();
127 const typename TensorEvaluator<ArgType, Device>::Dimensions& input_dims = m_impl.dimensions();
149 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_dimensions; } function in struct:Eigen::TensorEvaluator
168 eigen_assert(index+PacketSize-1 < dimensions().TotalSize());
249 Dimensions m_dimensions;
264 static const int NumDims = internal::array_size<typename TensorEvaluator<ArgType, Device>::Dimensions>::value
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FrameFormat.java 212 // Check number of dimensions
218 // Check dimensions
271 // Check number of dimensions
278 // Check dimensions
328 public static String dimensionsToString(int[] dimensions) {
330 if (dimensions != null) {
331 int n = dimensions.length;
333 if (dimensions[i] == SIZE_UNSPECIFIED) {
336 buffer.append("[" + String.valueOf(dimensions[i]) + "]");
423 int calcSize(int[] dimensions) {
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/
ListPreloader.java 63 * Returns the dimensions of the view in the list where the resources will be displayed.
65 * Note - The dimensions returned here must precisely match those of the view in the list.
68 * @return The dimensions of the view where the item will be displayed
134 final int[] dimensions = getDimensions(item); local
135 if (dimensions != null) {
136 getRequestBuilder(item).into(preloadTargetQueue.next(dimensions[0], dimensions[1]));
  /hardware/interfaces/neuralnetworks/1.0/vts/functional/
Models.cpp 44 .dimensions = {1, 2, 2, 1},
53 .dimensions = {1, 2, 2, 1},
62 .dimensions = {},
71 .dimensions = {1, 2, 2, 1},
152 .location = {.poolIndex = INPUT, .offset = 0, .length = inputSize}, .dimensions = {},
155 .location = {.poolIndex = OUTPUT, .offset = 0, .length = outputSize}, .dimensions = {},
198 request.inputs[0].dimensions = std::vector<uint32_t>({1, 2, 3, 4, 5, 6, 7, 8} /* INVALID */);
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
ModelLoader.java 13 * 2. To allow a model to be combined with the dimensions of the view to fetch a resource of a specific size.
15 * This not only avoids having to duplicate dimensions in xml and in your code in order to determine the size of a
17 * programatically set the dimensions of the view without forcing you to fetch a generic resource size.
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliArrayTypeElement.java 62 int dimensions = token.getTextLength() - 1; local
63 while (dimensions > 0) {
65 dimensions--;
  /developers/build/prebuilts/gradle/ActivityInstrumentation/Application/src/main/res/values-sw720dp-land/
dimens.xml 18 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/prebuilts/gradle/BasicAccessibility/Application/src/main/res/values-sw720dp-land/
dimens.xml 18 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/prebuilts/gradle/CustomNotifications/Application/src/main/res/values-sw720dp-land/
dimens.xml 17 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/res/values-sw720dp-land/
dimens.xml 18 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/prebuilts/gradle/TextLinkify/Application/src/main/res/values-sw720dp-land/
dimens.xml 20 Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/res/values-sw600dp/
dimens.xml 20 Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/res/values-sw720dp-land/
dimens.xml 20 Customize dimensions originally defined in res/values/dimens.xml (such as

Completed in 348 milliseconds

1 2 3 4 5 6 7 8 91011>>