Searched defs:dimensions (Results 1 - 25 of 70) sorted by relevance

123

/external/chromium_org/remoting/host/
H A Dscreen_resolution.cc19 ScreenResolution::ScreenResolution(const webrtc::DesktopSize& dimensions, argument
21 : dimensions_(dimensions),
23 // Check that dimensions are not negative.
24 DCHECK(!dimensions.is_empty() || dimensions.equals(webrtc::DesktopSize()));
34 // Scale the screen dimensions to new DPI.
47 return dimensions_.equals(other.dimensions()) && dpi_.equals(other.dpi());
H A Dscreen_resolution.h14 // Describes a screen's dimensions and DPI.
18 ScreenResolution(const webrtc::DesktopSize& dimensions,
21 // Returns the screen dimensions scaled according to the passed |new_dpi|.
26 const webrtc::DesktopSize& dimensions() const { return dimensions_; } function in class:remoting::ScreenResolution
35 // Returns true if the dimensions and DPI of the two resolutions match.
/external/chromium_org/ppapi/cpp/dev/
H A Dvideo_decoder_client_dev.cc24 const PP_Size* dimensions,
31 decoder, req_num_of_bufs, *dimensions, texture_target);
21 ProvidePictureBuffers(PP_Instance instance, PP_Resource decoder, uint32_t req_num_of_bufs, const PP_Size* dimensions, uint32_t texture_target) argument
/external/chromium_org/chrome/renderer/resources/
H A Doffline.js25 this.dimensions = Runner.defaultDimensions;
116 * Default dimensions.
277 if (this.dimensions.WIDTH < DEFAULT_WIDTH) {
278 var mobileSpeed = speed * this.dimensions.WIDTH / DEFAULT_WIDTH *
301 this.canvas = createCanvas(this.containerEl, this.dimensions.WIDTH,
302 this.dimensions.HEIGHT, Runner.classes.PLAYER);
310 this.horizon = new Horizon(this.canvas, this.images, this.dimensions,
315 this.images.TEXT_SPRITE, this.dimensions.WIDTH);
352 * Adjust game space dimensions on resize.
362 this.dimensions
[all...]
/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 DRawDataTable.java33 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 DScenarioData.java53 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/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...]
/external/chromium_org/cc/debug/
H A Dpicture_record_benchmark.cc66 std::pair<int, int> dimensions = it->first; local
75 result->SetInteger("width", dimensions.first);
76 result->SetInteger("height", dimensions.second);
101 std::pair<int, int> dimensions = dimensions_[i]; local
102 int width = dimensions.first;
103 int height = dimensions.second;
118 TotalTime& total_time = times_[dimensions];
/external/chromium_org/content/browser/renderer_host/media/
H A Dvideo_capture_buffer_pool_unittest.cc47 scoped_ptr<Buffer> ReserveI420Buffer(const gfx::Size& dimensions) { argument
49 media::VideoFrame::AllocationSize(media::VideoFrame::I420, dimensions);
H A Dvideo_capture_controller_unittest.cc133 gfx::Size dimensions) {
136 dimensions,
137 gfx::Rect(dimensions),
138 dimensions,
140 media::VideoFrame::AllocationSize(media::VideoFrame::I420, dimensions),
150 gfx::Size dimensions) {
154 dimensions,
155 gfx::Rect(dimensions),
156 dimensions,
131 WrapI420Buffer( const scoped_refptr<media::VideoCaptureDevice::Client::Buffer>& buffer, gfx::Size dimensions) argument
146 WrapMailboxBuffer( const scoped_refptr<media::VideoCaptureDevice::Client::Buffer>& buffer, scoped_ptr<gpu::MailboxHolder> holder, const media::VideoFrame::ReleaseMailboxCB& release_cb, gfx::Size dimensions) argument
/external/chromium_org/ppapi/proxy/
H A Dppp_video_decoder_proxy.cc23 const PP_Size* dimensions,
31 decoder_resource, req_num_of_bufs, *dimensions, texture_target));
120 const PP_Size& dimensions,
130 &dimensions,
21 ProvidePictureBuffers(PP_Instance instance, PP_Resource decoder, uint32_t req_num_of_bufs, const PP_Size* dimensions, uint32_t texture_target) argument
117 OnMsgProvidePictureBuffers( const HostResource& decoder, uint32_t req_num_of_bufs, const PP_Size& dimensions, uint32_t texture_target) argument
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpbo.c66 _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 Dtexgetimage.c75 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...]
/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/mesa/main/
H A Dpbo.c66 _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 Dtexgetimage.c75 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...]
/external/chromium_org/components/feedback/
H A Dfeedback_common.cc200 // Set that we 'have' dimensions of the screenshot. These dimensions are
202 userfeedback::Dimensions dimensions; local
203 dimensions.set_width(0.0);
204 dimensions.set_height(0.0);
206 *(screenshot.mutable_dimensions()) = dimensions;
/external/chromium_org/content/common/gpu/client/
H A Dgpu_video_decode_accelerator_host.cc216 const gfx::Size& dimensions,
219 picture_buffer_dimensions_ = dimensions;
222 num_requested_buffers, dimensions, texture_target);
214 OnProvidePictureBuffer( uint32 num_requested_buffers, const gfx::Size& dimensions, uint32 texture_target) argument
/external/chromium_org/content/renderer/pepper/
H A Dpepper_video_decoder_host.cc308 const gfx::Size& dimensions,
311 dimensions,
398 const gfx::Size& dimensions,
405 PP_MakeSize(dimensions.width(), dimensions.height()),
306 ProvidePictureBuffers( uint32 requested_num_of_buffers, const gfx::Size& dimensions, uint32 texture_target) argument
396 RequestTextures( uint32 requested_num_of_buffers, const gfx::Size& dimensions, uint32 texture_target, const std::vector<gpu::Mailbox>& mailboxes) argument
H A Dppb_video_decoder_impl.cc234 const gfx::Size& dimensions,
240 PP_Size out_dim = PP_MakeSize(dimensions.width(), dimensions.height());
232 ProvidePictureBuffers( uint32 requested_num_of_buffers, const gfx::Size& dimensions, uint32 texture_target) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c42 /* max 2 dimensions */
43 uint dimensions : 4; member in struct:__anon13741
80 reg->dimensions = 1;
90 reg->dimensions = 2;
291 if (reg->dimensions == 2) {
/external/chromium_org/third_party/skia/include/core/
H A DSkImageInfo.h151 * Describe an image's dimensions and pixel type.
210 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); } function in struct:SkImageInfo
/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 DBuildResults.java38 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...]
/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) {

Completed in 1495 milliseconds

123