HomeSort by relevance Sort by last modified time
    Searched refs:tile (Results 76 - 100 of 272) sorted by null

1 2 34 5 6 7 8 91011

  /pdk/apps/CameraITS/tests/scene1/
test_param_flash_mode.py 51 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
52 rgb = its.image.compute_image_means(tile)
test_burst_sameness_manual.py 63 tile = its.image.get_image_patch(imgs[n], 0.45, 0.45, 0.1, 0.1)
64 means = its.image.compute_image_means(tile)
test_param_exposure_time.py 48 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
49 rgb_means = its.image.compute_image_means(tile)
test_param_sensitivity.py 54 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
55 rgb_means = its.image.compute_image_means(tile)
test_raw_sensitivity.py 62 tile = its.image.get_image_patch(plane, 0.45,0.45,0.1,0.1)
63 var = its.image.compute_image_variances(tile)[0]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast.c 82 debug_printf("Post render scene: tile unswizzle: %u tile swizzle: %u\n",
89 * Begining rasterization of a tile.
90 * \param x window X position of the tile, in pixels
91 * \param y window Y position of the tile, in pixels
106 /* reset pointers to color tile(s) */
109 /* get pointer to depth/stencil tile */
120 /* "prime" the tile: convert data from linear to tiled if necessary
121 * and update the tile's layout info.
129 /* Get actual pointer to the tile data. Note that depth/stenci
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast.c 82 debug_printf("Post render scene: tile unswizzle: %u tile swizzle: %u\n",
89 * Begining rasterization of a tile.
90 * \param x window X position of the tile, in pixels
91 * \param y window Y position of the tile, in pixels
106 /* reset pointers to color tile(s) */
109 /* get pointer to depth/stencil tile */
120 /* "prime" the tile: convert data from linear to tiled if necessary
121 * and update the tile's layout info.
129 /* Get actual pointer to the tile data. Note that depth/stenci
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSPanel.java 48 /** View that represents the quick settings tile panel. **/
193 r.tile.setListening(mListening);
208 r.tile.refreshState();
237 for (QSTile<?> tile : tiles) {
238 addTile(tile);
245 private void addTile(final QSTile<?> tile) {
247 r.tile = tile;
248 r.tileView = tile.createTileView(mContext);
286 r.tile.setCallback(callback)
522 QSTile<?> tile; field in class:QSPanel.TileRecord
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Gradient.cpp 219 SkShader::TileMode tile = SkShader::kClamp_TileMode; local
222 tile = SkShader::kMirror_TileMode;
225 tile = SkShader::kRepeat_TileMode;
228 tile = SkShader::kClamp_TileMode;
247 m_gradient = adoptRef(SkGradientShader::CreateRadial(m_p1.data(), m_r1, colors.data(), pos.data(), static_cast<int>(countUsed), tile, shouldDrawInPMColorSpace, &localMatrix));
253 m_gradient = adoptRef(SkGradientShader::CreateTwoPointConical(m_p0.data(), radius0, m_p1.data(), radius1, colors.data(), pos.data(), static_cast<int>(countUsed), tile, shouldDrawInPMColorSpace, &localMatrix));
258 m_gradient = adoptRef(SkGradientShader::CreateLinear(pts, colors.data(), pos.data(), static_cast<int>(countUsed), tile, shouldDrawInPMColorSpace, &localMatrix));
  /external/chromium_org/win8/metro_driver/
secondary_tile.cc 104 mswr::ComPtr<winui::StartScreen::ISecondaryTile> tile; local
105 hr = tile_factory->CreateWithId(id.Get(), tile.GetAddressOf());
106 CheckHR(hr, "Failed to create tile");
109 hr = tile->RequestDeleteAsync(completion.GetAddressOf());
146 // The url is just passed into the tile agruments as is. Metro and desktop
165 mswr::ComPtr<winui::StartScreen::ISecondaryTile> tile; local
172 tile.GetAddressOf());
173 CheckHR(hr, "Failed to create tile");
175 hr = tile->put_ForegroundText(winui::StartScreen::ForegroundText_Light);
179 hr = tile->RequestCreateAsync(completion.GetAddressOf())
    [all...]
  /development/samples/Snake/src/com/example/android/snake/
TileView.java 36 * pixels, and Drawables will be scaled to fit to these dimensions. X/Y Tile Counts are the
57 * A two-dimensional array of integers in which the number represents the index of the tile that
94 * Function to set the specified Drawable as the tile for a particular integer key.
97 * @param tile
99 public void loadTile(int key, Drawable tile) {
102 tile.setBounds(0, 0, mTileSize, mTileSize);
103 tile.draw(canvas);
134 * Used to indicate that a particular tile (set with loadTile and referenced by an integer)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 61 struct softpipe_cached_tile *tile; local
74 tile = sp_get_cached_tile(qs->softpipe->zsbuf_cache, ix, iy);
88 &tile->data.depth16[iy % TILE_SIZE][(ix + dx)% TILE_SIZE];
sp_quad_depth_test.c 53 struct softpipe_cached_tile *tile; member in struct:depth_data
63 const struct softpipe_cached_tile *tile = data->tile; local
70 data->bzzzz[j] = tile->data.depth16[y][x];
77 data->bzzzz[j] = tile->data.depth32[y][x];
85 data->bzzzz[j] = tile->data.depth32[y][x] & 0xffffff;
86 data->stencilVals[j] = tile->data.depth32[y][x] >> 24;
94 data->bzzzz[j] = tile->data.depth32[y][x] >> 8;
95 data->stencilVals[j] = tile->data.depth32[y][x] & 0xff;
103 data->stencilVals[j] = tile->data.stencil8[y][x]
256 struct softpipe_cached_tile *tile = data->tile; local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 61 struct softpipe_cached_tile *tile; local
74 tile = sp_get_cached_tile(qs->softpipe->zsbuf_cache, ix, iy);
88 &tile->data.depth16[iy % TILE_SIZE][(ix + dx)% TILE_SIZE];
sp_quad_depth_test.c 53 struct softpipe_cached_tile *tile; member in struct:depth_data
63 const struct softpipe_cached_tile *tile = data->tile; local
70 data->bzzzz[j] = tile->data.depth16[y][x];
77 data->bzzzz[j] = tile->data.depth32[y][x];
85 data->bzzzz[j] = tile->data.depth32[y][x] & 0xffffff;
86 data->stencilVals[j] = tile->data.depth32[y][x] >> 24;
94 data->bzzzz[j] = tile->data.depth32[y][x] >> 8;
95 data->stencilVals[j] = tile->data.depth32[y][x] & 0xff;
103 data->stencilVals[j] = tile->data.stencil8[y][x]
256 struct softpipe_cached_tile *tile = data->tile; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c 207 static void set_offsets(VP9_COMP *cpi, const TileInfo *const tile,
242 set_mi_row_col(xd, tile, mi_row, mi_height, mi_col, mi_width,
284 const TileInfo *const tile,
407 const TileInfo *const tile,
428 set_block_size(cpi, tile, mi_row, mi_col, bsize);
437 set_block_size(cpi, tile, mi_row, mi_col, subsize);
438 set_block_size(cpi, tile, mi_row, mi_col + block_width / 2, subsize);
447 set_block_size(cpi, tile, mi_row, mi_col, subsize);
448 set_block_size(cpi, tile, mi_row + block_height / 2, mi_col, subsize);
456 const TileInfo *const tile,
3324 TileInfo tile; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodeframe.c 184 static void set_offsets(VP9_COMP *cpi, const TileInfo *const tile,
215 set_mi_row_col(xd, tile, mi_row, mi_height, mi_col, mi_width,
426 const TileInfo *const tile,
444 set_offsets(cpi, tile, mi_row, mi_col, BLOCK_64X64);
536 if (!set_vt_partitioning(cpi, &vt.split[i].split[j], tile,
722 static void rd_pick_sb_modes(VP9_COMP *cpi, const TileInfo *const tile,
756 set_offsets(cpi, tile, mi_row, mi_col, bsize);
816 vp9_rd_pick_inter_mode_sb(cpi, x, tile, mi_row, mi_col,
819 vp9_rd_pick_inter_mode_sub8x8(cpi, x, tile, mi_row, mi_col, totalrate,
3087 TileInfo tile; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodeframe.c 207 static void set_offsets(VP9_COMP *cpi, const TileInfo *const tile,
242 set_mi_row_col(xd, tile, mi_row, mi_height, mi_col, mi_width,
270 const int tile_progress = tile->mi_col_start * cm->mb_rows >> 1;
271 const int mb_cols = (tile->mi_col_end - tile->mi_col_start) >> 1;
300 const TileInfo *const tile,
423 const TileInfo *const tile,
444 set_block_size(cpi, tile, mi_row, mi_col, bsize);
453 set_block_size(cpi, tile, mi_row, mi_col, subsize);
454 set_block_size(cpi, tile, mi_row, mi_col + block_width / 2, subsize)
3154 TileInfo tile; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TiledTexture.java 37 // upload the whole bitmap but we reduce the time of uploading each tile
49 private static Tile sFreeTileHead = null;
59 private final Tile[] mTiles; // Can be modified in different threads.
112 private static class Tile extends UploadedTexture {
116 public Tile nextFreeTile;
161 private static void freeTile(Tile tile) {
162 tile.invalidateContent();
163 tile.bitmap = null;
165 tile.nextFreeTile = sFreeTileHead
209 Tile tile = obtainTile(); local
    [all...]
  /external/chromium_org/cc/resources/
layer_tiling_data.h 43 // Change the tile size. This may invalidate all the existing tiles.
54 class Tile {
56 Tile() : i_(-1), j_(-1) {}
57 virtual ~Tile() {}
74 DISALLOW_COPY_AND_ASSIGN(Tile);
77 typedef base::ScopedPtrHashMap<TileMapKey, Tile> TileMap;
79 void AddTile(scoped_ptr<Tile> tile, int i, int j);
80 scoped_ptr<Tile> TakeTile(int i, int j);
81 Tile* TileAt(int i, int j) const
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
subfigure.m 6 % become the p-th tile in an m-by-n matrix of windows. (The interpretation of
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardTileView.java 74 public void setTile(DashboardTile tile) {
75 mTile = tile;
  /pdk/apps/CameraITS/tests/inprog/
test_burst_sameness_auto.py 70 tile = its.image.get_image_patch(imgs[n], 0.45, 0.45, 0.1, 0.1)
71 means = its.image.compute_image_means(tile)
test_ev_compensation.py 49 tile = its.image.get_image_patch(y, 0.45,0.45,0.1,0.1)
50 lumas.append(its.image.compute_image_means(tile)[0])
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 27 // Indicates a tile was rendered, no matter if it's a thumbnail, a gray tile
28 // or an external tile.
30 // The tile uses a local thumbnail image.
32 // Used when no thumbnail is specified and a gray tile with the domain is used
33 // as the main tile.
35 // The visuals of that tile are handled externally by the page itself.
38 // (if it was provided), resulting in a grey tile.
40 // Used a gray tile with the domain as the fallback for a failed thumbnail.
42 // The visuals of that tile's fallback are handled externally
    [all...]

Completed in 1364 milliseconds

1 2 34 5 6 7 8 91011