HomeSort by relevance Sort by last modified time
    Searched defs:tile_size (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/cc/resources/
layer_tiling_data.cc 13 scoped_ptr<LayerTilingData> LayerTilingData::Create(gfx::Size tile_size,
15 return make_scoped_ptr(new LayerTilingData(tile_size, border));
18 LayerTilingData::LayerTilingData(gfx::Size tile_size, BorderTexelOption border)
19 : tiling_data_(tile_size, gfx::Size(), border == HAS_BORDER_TEXELS) {
20 SetTileSize(tile_size);
26 if (tile_size() == size)
34 gfx::Size LayerTilingData::tile_size() const { function in class:cc::LayerTilingData
88 tile_rect.set_size(tile_size());
tile_manager_perftest.cc 38 gfx::Size tile_size = settings_.default_tile_size; variable
40 10000 * 4 * tile_size.width() * tile_size.height();
tile_manager_unittest.cc 32 gfx::Size tile_size = settings_.default_tile_size; local
38 max_tiles * 4 * tile_size.width() * tile_size.height();
53 gfx::Size tile_size = settings_.default_tile_size; local
55 max_memory_tiles_ * 4 * tile_size.width() * tile_size.height();
picture_layer_tiling.h 66 gfx::Size tile_size() const { return tiling_data_.max_texture_size(); } function in class:cc::PictureLayerTiling
picture_layer_tiling.cc 40 gfx::Size tile_size = client_->CalculateTileSize(content_bounds); local
49 tiling_data_.SetMaxTextureSize(tile_size);
140 gfx::Size tile_size = client_->CalculateTileSize(content_bounds); local
141 if (tile_size != tiling_data_.max_texture_size()) {
143 tiling_data_.SetMaxTextureSize(tile_size);
399 gfx::Size tile_size = tiling_data_.max_texture_size(); local
401 max_tiles_for_interest_area * tile_size.width() * tile_size.height();
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_span.c 70 uint32_t tile_size = 4096; local
83 + tile_x * tile_size
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_span.c 70 uint32_t tile_size = 4096; local
83 + tile_x * tile_size
  /external/chromium_org/cc/test/
tiled_layer_test_common.h 49 gfx::Size tile_size,
99 static gfx::Size tile_size() { return gfx::Size(100, 100); } function in class:cc::FakeTiledLayer
  /external/chromium_org/cc/layers/
picture_layer_impl.cc 909 gfx::Size tile_size = CalculateTileSize(content_bounds); local
    [all...]
  /external/opencv/cv/src/
cvmoments.cpp 199 icvAccumulateMoments( double *tiles, CvSize size, CvSize tile_size, CvMoments * moments )
203 for( y = 0; y < size.height; y += tile_size.height )
205 for( x = 0; x < size.width; x += tile_size.width, tiles += 10 )
381 CvSize size, tile_size = { 32, 32 }; local
471 tile_size = size;
473 tile_num = ((size.width + tile_size.width - 1)/tile_size.width)*
474 ((size.height + tile_size.height - 1)/tile_size.height);
478 for( y = 0, k = 0; y < size.height; y += tile_size.height
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
vp8l.c 792 const int tile_size = 1 << enc->transform_bits_; local
794 const uint64_t argb_scratch_size = tile_size * width + width;
    [all...]
  /external/chromium_org/ui/app_list/views/
apps_grid_view.cc 493 const gfx::Size tile_size = gfx::Size(kPreferredTileWidth, local
498 tile_size.width() * cols_ + insets.width(),
499 tile_size.height() * rows_per_page_ +
742 gfx::Size tile_size(kPreferredTileWidth, kPreferredTileHeight);
744 gfx::Rect grid_rect(gfx::Size(tile_size.width() * cols_,
745 tile_size.height() * rows_per_page_));
795 gfx::Point(grid_rect.x() + col * tile_size.width() + x_offset,
796 grid_rect.y() + row * tile_size.height()),
797 tile_size); local
    [all...]
  /external/webp/src/enc/
vp8l.c 792 const int tile_size = 1 << enc->transform_bits_; local
794 const uint64_t argb_scratch_size = tile_size * width + width;
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
lossless.c 528 const int tile_size = 1 << bits; local
529 const int ymax = (tile_size <= height - row_start) ?
530 tile_size : height - row_start;
531 const int xmax = (tile_size <= width - col_start) ?
532 tile_size : width - col_start;
583 const int tile_size = 1 << bits; local
584 const int ymax = (tile_size <= height - row_start) ?
585 tile_size : height - row_start;
586 const int xmax = (tile_size <= width - col_start) ?
587 tile_size : width - col_start
    [all...]
  /external/webp/src/dsp/
lossless.c 528 const int tile_size = 1 << bits; local
529 const int ymax = (tile_size <= height - row_start) ?
530 tile_size : height - row_start;
531 const int xmax = (tile_size <= width - col_start) ?
532 tile_size : width - col_start;
583 const int tile_size = 1 << bits; local
584 const int ymax = (tile_size <= height - row_start) ?
585 tile_size : height - row_start;
586 const int xmax = (tile_size <= width - col_start) ?
587 tile_size : width - col_start
    [all...]

Completed in 761 milliseconds