Searched refs:dimensions (Results 1 - 25 of 142) sorted by last modified time

123456

/external/skia/src/core/
H A DSkBitmapDevice.cpp173 if (srcInfo.dimensions() != dstInfo.dimensions()) {
H A DSkPictureRecord.cpp39 SkPictureRecord::SkPictureRecord(const SkISize& dimensions, uint32_t flags) argument
40 : INHERITED(dimensions.width(), dimensions.height())
H A DSkPictureRecord.h37 SkPictureRecord(const SkISize& dimensions, uint32_t recordFlags);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DArrayProto.java46 protected final int dimensions; field in class:ArrayProto
63 dimensions = i;
69 @Nonnull @Override public String getType() { return makeArrayType(elementType, dimensions); }
70 public int getDimensions() { return dimensions; }
83 if (dimensions > 1) {
84 return makeArrayType(elementType, dimensions-1);
103 if (dimensions == ((ArrayProto)other).dimensions &&
110 if (dimensions == ((ArrayProto)other).dimensions) {
147 makeArrayType(@onnull String elementType, int dimensions) argument
[all...]
H A DMethodAnalyzer.java1172 if (arrayProto.dimensions != 1) {
/external/skia/include/core/
H A DSkImageInfo.h123 * Describe an image's dimensions and pixel type.
197 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); } function in struct:SkImageInfo
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/proguard/src/proguard/classfile/util/
H A DClassUtil.java244 * Returns the number of dimensions of the given internal type.
247 * @return the number of dimensions, e.g. 2.
251 int dimensions = 0;
252 while (internalType.charAt(dimensions) == ClassConstants.INTERNAL_TYPE_ARRAY)
254 dimensions++;
257 return dimensions;
347 * of dimensions. If the number of dimensions is 0, the class name itself is
351 * @param dimensionCount the number of array dimensions.
641 * Returns the number of dimensions o
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/mesa3d/src/mesa/swrast/
H A Ds_texfetch_tmp.h34 * It should be expanded by defining \p DIM as the number texture dimensions
67 #error illegal number of texture dimensions
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DReflectUtils.java178 int dimensions = 0;
181 dimensions++;
183 StringBuffer brackets = new StringBuffer(className.length() - dimensions);
184 for (int i = 0; i < dimensions; i++) {
187 className = className.substring(0, className.length() - 2 * dimensions);
189 String prefix = (dimensions > 0) ? brackets + "L" : "";
190 String suffix = (dimensions > 0) ? ";" : "";
199 if (dimensions == 0) {
/external/mesa3d/docs/
H A DMESA_texture_array.spec71 of the N LOD in all three dimensions. For the TEXTURE_2D_ARRAY target,
/external/mesa3d/include/CL/
H A Dcl.hpp2244 ::size_t dimensions() const { return dimensions_; } function in class:cl::NDRange
2946 object_, kernel(), (cl_uint) global.dimensions(),
2947 offset.dimensions() != 0 ? (const ::size_t*) offset : NULL,
2949 local.dimensions() != 0 ? (const ::size_t*) local : NULL,
/external/mesa3d/src/gallium/auxiliary/postprocess/
H A Dpp_mlaa.c57 static unsigned int dimensions[2] = { 0, 0 }; variable
92 if (dimensions[0] != p->framebuffer.width ||
93 dimensions[1] != p->framebuffer.height) {
98 dimensions[0] = p->framebuffer.width;
99 dimensions[1] = p->framebuffer.height;
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c42 /* max 2 dimensions */
43 uint dimensions : 4; member in struct:__anon27152
80 reg->dimensions = 1;
90 reg->dimensions = 2;
291 if (reg->dimensions == 2) {
/external/mesa3d/src/mesa/main/
H A Ddlist.c908 unpack_image(struct gl_context *ctx, GLuint dimensions, argument
929 image = _mesa_unpack_image(dimensions, width, height, depth,
936 else if (_mesa_validate_pbo_access(dimensions, unpack, width, height,
954 image = _mesa_unpack_image(dimensions, width, height, depth,
H A Dimage.c84 * \param dimensions either 1, 2 or 3 to indicate dimensionality of image
99 _mesa_image_offset( GLuint dimensions, argument
113 ASSERT(dimensions >= 1 && dimensions <= 3);
133 skipimages = (dimensions == 3) ? packing->SkipImages : 0;
198 * \param dimensions either 1, 2 or 3 to indicate dimensionality of image
214 _mesa_image_address( GLuint dimensions, argument
223 addr += _mesa_image_offset(dimensions, packing, width, height,
H A Dimage.h42 _mesa_image_offset( GLuint dimensions,
49 _mesa_image_address( GLuint dimensions,
H A Dpack.c5839 _mesa_unpack_image( GLuint dimensions, argument
5889 const GLvoid *src = _mesa_image_address(dimensions, unpack, pixels,
H A Dpack.h141 _mesa_unpack_image(GLuint dimensions,

Completed in 299 milliseconds

123456