/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
H A D | RawDataTable.java | 33 private Dim[] dimensions = DB_Results.getResultsDimensions(); field in class:RawDataTable 66 int length = this.dimensions.length; 69 buffer.append(this.dimensions[i].getName()); 91 int dimLength = this.dimensions.length; 93 Dim dimension = this.dimensions[d]; 116 int length = this.dimensions.length; 119 dimStats[i] = this.configResults.getStatistics(this.buildPrefixes, this.dimensions[i].getId()); 124 String dimName = this.dimensions[i].getName(); 152 int length = this.dimensions.length; 155 String dimName = this.dimensions[ [all...] |
H A D | ScenarioData.java | 53 private Dim[] dimensions = DB_Results.getResultsDimensions(); field in class:ScenarioData 277 int dimLength = this.dimensions.length; 279 Dim dim = this.dimensions[d]; 303 Dim dim = this.dimensions[d]; 342 int dimLength = this.dimensions.length; 344 Dim dim = this.dimensions[d]; 367 int dimLength = this.dimensions.length; 369 Dim currentDim = this.dimensions[d];
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
H A D | ArraySerializer.java | 55 int[] dimensions = new int[depth]; 56 dimensions[0] = Array.getLength(array); 57 if (depth > 1) collectDimensions(array, 1, dimensions); 58 return dimensions; 61 private void collectDimensions (Object array, int dimension, int[] dimensions) { argument 62 boolean elementsAreArrays = dimension < dimensions.length - 1; 66 dimensions[dimension] = Math.max(dimensions[dimension], Array.getLength(element)); 67 if (elementsAreArrays) collectDimensions(element, dimension + 1, dimensions); 76 int[] dimensions 133 readArray(Serializer elementSerializer, Class elementClass, ByteBuffer buffer, Object array, int dimension, int[] dimensions) argument [all...] |
/external/skia/include/core/ |
H A D | SkImage.h | 40 * SkImage always has a non-zero dimensions. If there is a request to create a new image, either 41 * directly or via SkSurface, and either of the requested dimensions are zero, then NULL will be 138 * deleted after the function returns. The image will have the dimensions of the y texture. 145 static SkImage* NewFromPicture(const SkPicture*, const SkISize& dimensions, 152 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); } function in class:SkImage 255 * If dst's dimensions differ from the src dimension, the image will be scaled, applying the
|
H A D | SkImageInfo.h | 165 * Describe an image's dimensions and pixel type. 236 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); } function in struct:SkImageInfo
|
H A D | SkBitmap.h | 112 /** Return true iff the bitmap has empty dimensions. 118 * dimensions of the bitmap are > 0 (see empty()). 228 SkISize dimensions() const { return fInfo.dimensions(); } function in class:SkBitmap 412 * bitmap's width/height can be <= the dimensions of the pixelref. The 584 dimensions is empty, or if there is an unsupported colortype, false will be 701 /** Allocate the pixel memory for the bitmap, given its dimensions and
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
H A D | pp_mlaa.c | 57 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/mesa/main/ |
H A D | pbo.c | 66 _mesa_validate_pbo_access(GLuint dimensions, argument 106 start = _mesa_image_offset(dimensions, pack, width, height, 110 end = _mesa_image_offset(dimensions, pack, width, height, 176 GLuint dimensions, 183 ASSERT(dimensions == 1 || dimensions == 2 || dimensions == 3); 185 if (!_mesa_validate_pbo_access(dimensions, unpack, width, height, depth, 273 GLuint dimensions, 279 ASSERT(dimensions 175 _mesa_map_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, const GLvoid *ptr, const char *where) argument 272 _mesa_map_validate_pbo_dest(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, GLvoid *ptr, const char *where) argument 331 _mesa_validate_pbo_teximage(struct gl_context *ctx, GLuint dimensions, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels, const struct gl_pixelstore_attrib *unpack, const char *funcName) argument [all...] |
H A D | texgetimage.c | 75 get_tex_depth(struct gl_context *ctx, GLuint dimensions, argument 101 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 125 get_tex_depth_stencil(struct gl_context *ctx, GLuint dimensions, argument 146 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 170 get_tex_ycbcr(struct gl_context *ctx, GLuint dimensions, argument 191 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 223 get_tex_rgba_compressed(struct gl_context *ctx, GLuint dimensions, argument 300 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 317 get_tex_rgba_uncompressed(struct gl_context *ctx, GLuint dimensions, argument 383 void *dest = _mesa_image_address(dimensions, 428 get_tex_rgba(struct gl_context *ctx, GLuint dimensions, GLenum format, GLenum type, GLvoid *pixels, struct gl_texture_image *texImage) argument 537 GLuint dimensions; local 704 const GLuint dimensions = (target == GL_TEXTURE_3D) ? 3 : 2; local [all...] |
H A D | image.c | 84 * \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 D | pack.c | 5839 _mesa_unpack_image( GLuint dimensions, argument 5889 const GLvoid *src = _mesa_image_address(dimensions, unpack, pixels,
|
H A D | teximage.c | 965 * Return number of dimensions per mipmap level for the given texture target. 1007 * and the dimensions. 1008 * The dimensions are expected not to include the border. 1621 unsigned dimensions) 1670 if (dimensions != 2) 1719 * \param dimensions texture image dimensions (must be 1, 2 or 3). 1739 GLuint dimensions, GLenum target, 1767 "glTexImage%dD(level=%d)", dimensions, level); 1777 "glTexImage%dD(border=%d)", dimensions, borde 1620 _mesa_es_error_check_format_and_type(GLenum format, GLenum type, unsigned dimensions) argument 1738 texture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border ) argument 1969 compressed_texture_error_check(struct gl_context *ctx, GLint dimensions, GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize) argument 2146 subtexture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, GLenum format, GLenum type ) argument 2211 subtexture_error_check2( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const struct gl_texture_image *destTex ) argument 2325 copytexture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint internalFormat, GLint width, GLint height, GLint border ) argument 2490 copytexsubimage_error_check1( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level) argument 2539 copytexsubimage_error_check2( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, const struct gl_texture_image *teximage ) argument 3594 compressed_subtexture_error_check(struct gl_context *ctx, GLint dimensions, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize) argument [all...] |
H A D | texstore.c | 305 * \param dims image dimensions: 1, 2 or 3 546 * \param dims image dimensions: 1, 2 or 3 846 GLuint dimensions, 873 = (const GLubyte *) _mesa_image_address(dimensions, srcPacking, srcAddr, 897 dimensions < 3) { 926 GLuint dimensions, 939 const GLubyte *srcImage = (const GLubyte *) _mesa_image_address(dimensions, 845 _mesa_swizzle_ubyte_image(struct gl_context *ctx, GLuint dimensions, GLenum srcFormat, GLenum srcType, GLenum baseInternalFormat, const GLubyte *rgba2dst, GLuint dstComponents, GLint dstRowStride, GLubyte **dstSlices, GLint srcWidth, GLint srcHeight, GLint srcDepth, const GLvoid *srcAddr, const struct gl_pixelstore_attrib *srcPacking ) argument 925 memcpy_texture(struct gl_context *ctx, GLuint dimensions, gl_format dstFormat, GLint dstRowStride, GLubyte **dstSlices, GLint srcWidth, GLint srcHeight, GLint srcDepth, GLenum srcFormat, GLenum srcType, const GLvoid *srcAddr, const struct gl_pixelstore_attrib *srcPacking) argument
|
/external/skia/src/codec/ |
H A D | SkWebpCodec.cpp | 109 SkISize dim = this->getInfo().dimensions(); 147 SkIRect dimensions = SkIRect::MakeSize(this->getInfo().dimensions()); local 148 if (!dimensions.contains(*desiredSubset)) { 177 SkIRect bounds = SkIRect::MakeSize(this->getInfo().dimensions()); 213 SkISize dstDimensions = dstInfo.dimensions();
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
H A D | 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) { 148 makeArrayType(@onnull String elementType, int dimensions) argument [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
H A D | BuildResults.java | 38 Dim[] dimensions; field in class:BuildResults 212 * Returns the dimensions supported for the current build. 214 * @return An array of dimensions. 217 return this.dimensions; 244 if (this.dimensions == null) return -1; 245 int length = this.dimensions.length; 247 if (this.dimensions[i] == null) break; 248 if (this.dimensions[i].getId() == dim_id) { 407 this.dimensions = new Dim[length]; 414 this.dimensions[ [all...] |
H A D | DB_Results.java | 218 * The list of all the dimensions stored in the database. 229 * The list of all the dimensions displayed while generating results. 561 * Get all dimensions read from the database. 563 * @return A list of dimensions. 568 Dim[] dimensions = new Dim[length]; 574 dimensions[i] = (Dim) dimension; 576 return dimensions; 616 public static void setResultsDimensions(String[] dimensions) { argument 617 int length = dimensions.length; 620 RESULTS_DIMENSIONS[i] = (Dim) PerformanceTestPlugin.getDimension(dimensions[ [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_sanity.c | 42 /* max 2 dimensions */ 43 uint dimensions : 4; member in struct:__anon13930 80 reg->dimensions = 1; 90 reg->dimensions = 2; 291 if (reg->dimensions == 2) {
|
/external/skia/src/image/ |
H A D | SkImage.cpp | 330 SkImage* SkImage::NewFromPicture(const SkPicture* picture, const SkISize& dimensions, argument 335 return NewFromGenerator(SkImageGenerator::NewFromPicture(dimensions, picture, matrix, paint));
|
/external/deqp/framework/opengl/ |
H A D | gluVarType.hpp | 281 std::vector<int> dimensions; member in struct:glu::InterfaceBlock
|
/external/doclava/src/com/google/doclava/ |
H A D | MethodInfo.java | 547 public boolean matchesParams(String[] params, String[] dimensions, boolean varargs) { argument 556 if (!mine.matchesDimension(dimensions[i], (i == params.length - 1) ? varargs : false)) {
|
/external/javassist/src/main/javassist/bytecode/ |
H A D | Bytecode.java | 1256 * @param dimensions the sizes of all dimensions. 1257 * @return the length of <code>dimensions</code>. 1259 public int addMultiNewarray(CtClass clazz, int[] dimensions) { argument 1260 int len = dimensions.length; 1262 addIconst(dimensions[i]); 1273 * @param dim the number of the dimensions. 1288 * @param dim dimensions.
|
/external/skia/src/core/ |
H A D | SkLinearBitmapPipeline.cpp | 425 SkSize dimensions, 433 tileProcXOrBoth->Initialize<Clamp<>>(next, dimensions); 436 tileProcXOrBoth->Initialize<Repeat<>>(next, dimensions); 446 tileProcY->Initialize<Clamp<>>(next, Y(dimensions)); 449 tileProcY->Initialize<Repeat<>>(next, Y(dimensions)); 457 tileProcXOrBoth->Initialize<Clamp<>>(tileProcY->get(), X(dimensions)); 460 tileProcXOrBoth->Initialize<Repeat<>>(tileProcY->get(), X(dimensions)); 423 choose_tiler( SkLinearBitmapPipeline::BilerpProcessorInterface* next, SkSize dimensions, SkShader::TileMode xMode, SkShader::TileMode yMode, SkLinearBitmapPipeline::TileStage* tileProcXOrBoth, SkLinearBitmapPipeline::TileStage* tileProcY) argument
|
H A D | SkPictureRecord.cpp | 28 SkPictureRecord::SkPictureRecord(const SkISize& dimensions, uint32_t flags) argument 29 : INHERITED(dimensions.width(), dimensions.height())
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.test.performance_3.6.0.v20091014.jar | ... .test.internal.performance.data.Dim[] dimensions
java.util.List badDimensions
long n
java. ... |