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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCUDA/
cxx11-kernel-call.cu 7 template<int ...Dimensions> void k1Wrapper() {
8 void (*f)() = [] { k1<<<Dimensions, Dimensions>>>(); }; // expected-error {{initializer contains unexpanded parameter pack 'Dimensions'}}
9 void (*g[])() = { [] { k1<<<Dimensions, Dimensions>>>(); } ... }; // ok
  /external/androidplot/Examples/DemoApp/res/values-ldpi/
dimens.xml 2 <!-- LDPI DIMENSIONS -->
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
MutableFrameFormat.java 52 public void setDimensions(int[] dimensions) {
53 mDimensions = (dimensions == null) ? null : Arrays.copyOf(dimensions, dimensions.length);
58 int[] dimensions = new int[1]; local
59 dimensions[0] = size;
60 mDimensions = dimensions;
65 int[] dimensions = new int[2]; local
66 dimensions[0] = width;
67 dimensions[1] = height
73 int[] dimensions = new int[3]; local
    [all...]
  /external/eigen/unsupported/test/
cxx11_tensor_dimension.cpp 19 Eigen::DSizes<int, 3> dimensions(2,3,7);
21 VERIFY_IS_EQUAL((int)Eigen::internal::array_get<0>(dimensions), 2);
22 VERIFY_IS_EQUAL((int)Eigen::internal::array_get<1>(dimensions), 3);
23 VERIFY_IS_EQUAL((int)Eigen::internal::array_get<2>(dimensions), 7);
24 VERIFY_IS_EQUAL((int)dimensions.TotalSize(), 2*3*7);
25 VERIFY_IS_EQUAL((int)dimensions[0], 2);
26 VERIFY_IS_EQUAL((int)dimensions[1], 3);
27 VERIFY_IS_EQUAL((int)dimensions[2], 7);
32 Eigen::Sizes<2,3,7> dimensions; local
34 VERIFY_IS_EQUAL((int)Eigen::internal::array_get<0>(dimensions), 2)
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorFixedSize.h 48 typedef Dimensions_ Dimensions;
49 static const std::size_t NumIndices = Dimensions::count;
52 TensorStorage<Scalar, Dimensions, Options> m_storage;
56 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index dimension(std::size_t n) const { return m_storage.dimensions()[n]; }
57 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_storage.dimensions(); } function in class:Eigen::TensorFixedSize
144 const Index index = i1 + i0 * m_storage.dimensions()[1];
147 const Index index = i0 + i1 * m_storage.dimensions()[0];
155 const Index index = i2 + m_storage.dimensions()[2] * (i1 + m_storage.dimensions()[1] * i0)
    [all...]
TensorRef.h 17 template <typename Dimensions, typename Scalar>
23 EIGEN_DEVICE_FUNC virtual const Dimensions& dimensions() const = 0;
42 template <typename Dimensions, typename Expr, typename Device>
43 class TensorLazyEvaluatorReadOnly : public TensorLazyBaseEvaluator<Dimensions, typename TensorEvaluator<Expr, Device>::Scalar> {
45 // typedef typename TensorEvaluator<Expr, Device>::Dimensions Dimensions;
49 m_dims = m_impl.dimensions();
56 EIGEN_DEVICE_FUNC virtual const Dimensions& dimensions() const function in class:Eigen::internal::TensorLazyEvaluatorReadOnly
184 EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_evaluator->dimensions(); } function in class:Eigen::TensorRef
376 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Dimensions& dimensions() const { return m_ref.dimensions(); } function in struct:Eigen::TensorEvaluator
    [all...]
  /frameworks/native/cmds/surfacereplayer/replayer/
BufferQueueScheduler.h 37 struct Dimensions {
38 Dimensions() = default;
39 Dimensions(int w, int h) : width(w), height(h) {}
47 BufferEvent(std::shared_ptr<Event> e, Dimensions d) : event(e), dimensions(d) {}
50 Dimensions dimensions; member in struct:android::BufferEvent
64 void bufferUpdate(const Dimensions& dimensions);
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/res/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/prebuilts/gradle/HorizontalPaging/Application/src/main/res/values/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/build/templates/CardStream/_MODULE_/src/template/res/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /developers/samples/android/ui/views/HorizontalPaging/Application/src/main/res/values/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /development/samples/browseable/BatchStepSensor/res/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /development/samples/browseable/HorizontalPaging/res/values/values-sw720dp-land/
dimens.xml 2 <!-- Customize dimensions originally defined in res/values/dimens.xml (such as
  /development/tutorials/MoarRam/res/values-sw600dp/
dimens.xml 4 Customize dimensions originally defined in res/values/dimens.xml (such as
  /development/tutorials/MoarRam/res/values-sw720dp-land/
dimens.xml 4 Customize dimensions originally defined in res/values/dimens.xml (such as
  /external/androidplot/Examples/DemoApp/res/values-hdpi/
dimens.xml 2 <!-- HDPI DIMENSIONS -->
  /packages/apps/DevCamera/res/values-sw600dp/
dimens.xml 4 Customize dimensions originally defined in res/values/dimens.xml (such as
  /packages/apps/DevCamera/res/values-sw720dp-land/
dimens.xml 4 Customize dimensions originally defined in res/values/dimens.xml (such as
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ImageCanvas.java 27 * Dimensions holds the desired width, height, and scale for a bitmap being
30 public static class Dimensions {
40 public Dimensions() {
43 public Dimensions(int w, int h, float s) {
47 public Dimensions(int width, int height, float scale, float fontSize) {
62 * to whatever {@link #getDesiredDimensions(Object, Dimensions)} reported when the
76 * Outputs the desired dimensions that the object with key 'id' would like to be drawn to.
79 * @param outDim caller-allocated {@link Dimensions} object to house the result
81 void getDesiredDimensions(Object key, Dimensions outDim);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
TransformUtils.java 41 public static FrameImage2D makeMipMappedFrame(FrameImage2D current, int[] dimensions) {
44 int[] pow2Dims = new int[] { powOf2(dimensions[0]), powOf2(dimensions[1]) };
49 } else if (!Arrays.equals(dimensions, current.getDimensions())) {
55 public static FrameImage2D makeTempFrame(FrameImage2D current, int[] dimensions) {
59 current = Frame.create(imageType, dimensions).asFrameImage2D();
60 } else if (!Arrays.equals(dimensions, current.getDimensions())) {
61 current.resize(dimensions);
  /frameworks/av/media/libeffects/testlibs/
AudioCoefInterpolator.h 38 // nInDims Number of input dimensions (limited to MAX_IN_DIMS).
41 // nOutDims Number of output dimensions (limited to MAX_OUT_DIMS).
57 // Maximum allowed number of input dimensions.
59 // Maximum allowed number of output dimensions.
62 // Number of input dimensions.
64 // Number of input dimensions.
69 // Number of output dimensions.
75 // The recursion depth is the number of input dimensions.
77 // by two recursive calls to this method for the next dimensions. We then
81 // dimensions
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ArrayProto.java 47 protected final int dimensions; field in class:ArrayProto
64 dimensions = i;
70 @Nonnull @Override public String getType() { return makeArrayType(elementType, dimensions); }
71 public int getDimensions() { return dimensions; }
84 if (dimensions > 1) {
85 return makeArrayType(elementType, dimensions-1);
104 if (dimensions == ((ArrayProto)other).dimensions &&
111 if (dimensions == ((ArrayProto)other).dimensions) {
124 int dimensions = Math.min(this.dimensions, ((ArrayProto)other).dimensions); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
LetterTileProvider.java 31 import com.android.mail.ui.ImageCanvas.Dimensions;
83 public Bitmap getLetterTile(final Dimensions dimensions, final String displayName,
89 final Bitmap bitmap = getBitmap(dimensions, false /* getDefault */);
92 + "address %s.", dimensions.width, dimensions.height, displayName, address);
105 dimensions.fontSize > 0 ? dimensions.fontSize : getFontSize(dimensions.scale));
107 c.drawText(mFirstChar, 0, 1, 0 + dimensions.width / 2
    [all...]
  /developers/build/prebuilts/gradle/NotificationChannels/Application/src/main/res/values-w820dp/
dimens.xml 2 <!-- Example customization of dimensions originally defined in res/values/dimens.xml
  /developers/build/prebuilts/gradle/NotificationChannels/kotlinApp/Application/src/main/res/values-w820dp/
dimens.xml 2 <!-- Example customization of dimensions originally defined in res/values/dimens.xml

Completed in 2210 milliseconds

1 2 3 4 5 6 7 8 91011>>