HomeSort by relevance Sort by last modified time
    Searched refs:tile (Results 51 - 75 of 328) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_gmem.c 98 fd2_emit_tile_gmem2mem(struct fd_batch *batch, struct fd_tile *tile)
160 OUT_RING(ring, A2XX_RB_COPY_DEST_OFFSET_X(tile->xoff) |
161 A2XX_RB_COPY_DEST_OFFSET_Y(tile->yoff));
164 emit_gmem2mem_surf(batch, tile->bin_w * tile->bin_h, pfb->zsbuf);
221 fd2_emit_tile_mem2gmem(struct fd_batch *batch, struct fd_tile *tile)
227 unsigned bin_w = tile->bin_w;
228 unsigned bin_h = tile->bin_h;
237 x0 = ((float)tile->xoff) / ((float)pfb->width);
238 x1 = ((float)tile->xoff + bin_w) / ((float)pfb->width)
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
CategoryManager.java 46 // Tile cache (key: <packageName, activityName>, value: tile)
47 private final Map<Pair<String, String>, Tile> mTileByComponentCache;
49 // Tile cache (key: category key, value: category)
108 Tile tile = category.tiles.get(j); local
109 if (tileBlacklist.contains(tile.intent.getComponent())) {
142 Map<Pair<String, String>, Tile> tileByComponentCache,
148 // Build a package name -> tile map first.
149 final Map<String, List<Tile>> packageToTileMap = new HashMap<>()
216 final Tile tile = category.tiles.get(i); local
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
tilemgr.cpp 25 * @brief Implementation for Macro Tile Manager which provides the facilities
26 * for threads to work on an macro tile.
44 // Should not enqueue more then what we have backing for in the hot tile manager.
55 MacroTileQueue &tile = mTiles[id];
56 tile.mWorkItemsFE++;
57 tile.mId = id;
59 if (tile.mWorkItemsFE == 1)
61 tile.clear(mArena);
62 mDirtyTiles.push_back(&tile);
66 tile.enqueue_try_nosync(mArena, pWork)
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/dashboard/
DashboardFragmentTest.java 44 import com.android.settingslib.drawer.Tile;
80 mDashboardCategory.tiles.add(new Tile());
109 .getDashboardKeyForTile(nullable(Tile.class)))
161 final Tile tile = new Tile(); local
162 tile.icon = mock(Icon.class);
164 tile.metaData = metaData;
167 assertThat(mTestFragment.tintTileIcon(tile)).isFalse();
170 assertThat(mTestFragment.tintTileIcon(tile)).isTrue()
175 final Tile tile = new Tile(); local
184 final Tile tile = new Tile(); local
    [all...]
  /external/dng_sdk/source/
dng_utils.cpp 175 // Convert tile size to uint32.
178 ThrowMemoryFull("Negative tile size");
442 dng_rect tile; local
446 while (iter.GetOneTile (tile))
449 dng_const_tile_buffer buffer (image, tile);
451 const void *sPtr = buffer.ConstPixel (tile.t,
452 tile.l,
456 uint32 count1 = tile.H ();
457 uint32 count2 = tile.W ();
557 const dng_rect &tile,
    [all...]
dng_image.cpp 29 const dng_rect &tile,
38 tile,
55 const dng_rect &tile)
57 : dng_tile_buffer (image, tile, false)
73 const dng_rect &tile)
75 : dng_tile_buffer (image, tile, true)
225 dng_rect tile; local
229 while (iter.GetOneTile (tile))
232 dng_const_tile_buffer tileBuffer (*this, tile);
235 tile,
248 dng_rect tile; local
    [all...]
dng_area_task.h 66 /// \retval Minimum area for a partitoned tile in order to give performant operation. (Partitions can be smaller due to small inputs and edge cases.)
84 /// Getter for maximum size of a tile for processing.
86 /// The maximum tile size forces further partitioning if the tile is bigger than this size.
88 /// \retval Maximum tile size allowed for this area task.
96 /// RepeatingTile1, RepeatingTile2, and RepeatingTile3 are used to establish a set of 0 to 3 tile patterns for which
97 /// the resulting partitions that the final Process method is called on will not cross tile boundaries in any of the
98 /// tile patterns. This can be used for a processing routine that needs to read from two tiles and write to a third
106 /// RepeatingTile1, RepeatingTile2, and RepeatingTile3 are used to establish a set of 0 to 3 tile patterns for which
107 /// the resulting partitions that the final Process method is called on will not cross tile boundaries in any of th
    [all...]
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBar.aidl 122 void addQsTile(in ComponentName tile);
123 void remQsTile(in ComponentName tile);
124 void clickQsTile(in ComponentName tile);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PagedTileLayout.java 156 public int getOffsetTop(TileRecord tile) {
157 final ViewGroup parent = (ViewGroup) tile.tileView.getParent();
163 public void addTile(TileRecord tile) {
164 mTiles.add(tile);
169 public void removeTile(TileRecord tile) {
170 if (mTiles.remove(tile)) {
193 TileRecord tile = mTiles.get(i); local
197 + tile.tile.getClass().getSimpleName());
202 if (DEBUG) Log.d(TAG, "Adding " + tile.tile.getClass().getSimpleName() + " to
    [all...]
AutoAddTracker.java 64 public boolean isAdded(String tile) {
65 return mAutoAdded.contains(tile);
68 public void setTileAdded(String tile) {
69 if (mAutoAdded.add(tile)) {
  /frameworks/support/v7/recyclerview/src/android/support/v7/util/
TileList.java 31 private final SparseArray<Tile<T>> mTiles = new SparseArray<Tile<T>>(10);
33 Tile<T> mLastAccessedTile;
59 public Tile<T> getAtIndex(int index) {
63 public Tile<T> addOrReplace(Tile<T> newTile) {
69 Tile<T> oldTile = mTiles.valueAt(index);
77 public Tile<T> removeAtPos(int startPosition) {
78 Tile<T> tile = mTiles.get(startPosition) local
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_black_white.py 57 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
58 black_means = its.image.compute_image_means(tile)
72 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
73 white_means = its.image.compute_image_means(tile)
test_tonemap_sequence.py 56 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
57 means.append(tile.mean(0).mean(0))
65 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
66 means.append(tile.mean(0).mean(0))
test_yuv_jpeg_all.py 52 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
53 rgb = its.image.compute_image_means(tile)
69 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
70 rgb = its.image.compute_image_means(tile)
test_param_tonemap_mode.py 75 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
76 rgb_means.append(its.image.compute_image_means(tile))
100 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
101 rgb_means.append(its.image.compute_image_means(tile))
  /frameworks/base/graphics/java/android/graphics/
LinearGradient.java 56 * @param tile The Shader tiling mode
59 @Nullable float positions[], @NonNull TileMode tile) {
73 mTileMode = tile;
85 * @param tile The Shader tiling mode
89 @NonNull TileMode tile) {
99 mTileMode = tile;
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
QSFactory.java 34 QSTileView createTileView(QSTile tile, boolean collapsedView);
  /external/pdfium/third_party/libtiff/
tif_read.c 35 int TIFFFillTile(TIFF* tif, uint32 tile);
37 static int TIFFStartTile(TIFF* tif, uint32 tile);
628 * Tile-oriented Read Support
633 * Read and decompress a tile of data. The
634 * tile is selected by the (x,y,z,s) coordinates.
646 * Read a tile of data and decompress the specified
650 TIFFReadEncodedTile(TIFF* tif, uint32 tile, void* buf, tmsize_t size)
658 if (tile >= td->td_nstrips) {
660 "%lu: Tile out of range, max %lu",
661 (unsigned long) tile, (unsigned long) td->td_nstrips)
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
TileLayoutTest.java 54 // Layout needs to leave space for the tile margins. Three times the margin size is
62 tileRecord.tile = mock(QSTile.class);
71 verify(tileRecord.tile, times(1)).setListening(mTileLayout, false);
79 verify(tileRecord.tile, times(1)).setListening(mTileLayout, true);
87 verify(tileRecord.tile, times(1)).setListening(any(), anyBoolean());
95 verify(tileRecord.tile, times(1)).setListening(mTileLayout, true);
104 verify(tileRecord.tile, times(1)).setListening(mTileLayout, false);
115 verify(tileRecord1.tile, times(1)).setListening(mTileLayout, false);
116 verify(tileRecord2.tile, times(1)).setListening(mTileLayout, false);
  /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/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, quads[0]->input.layer);
88 &tile->data.depth16[iy % TILE_SIZE][(ix + dx)% TILE_SIZE];
  /external/skia/src/shaders/
SkPictureShader.cpp 36 const SkRect& tile,
43 , fTile(tile)
128 const SkMatrix* localMatrix, const SkRect* tile,
132 , fTile(tile ? *tile : fPicture->cullRect())
146 const SkMatrix* localMatrix, const SkRect* tile) {
147 if (!picture || picture->cullRect().isEmpty() || (tile && tile->isEmpty())) {
150 return sk_sp<SkShader>(new SkPictureShader(std::move(picture), tmx, tmy, localMatrix, tile,
159 SkRect tile; local
    [all...]
  /external/ImageMagick/MagickCore/
montage.h 37 *tile, member in struct:_MontageInfo
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_gmem.h 42 /* per-tile configuration for hw binning: */
67 bool fd_gmem_needs_restore(struct fd_batch *batch, struct fd_tile *tile,
  /external/skia/gm/
tileimagefilter.cpp 96 sk_sp<SkImageFilter> tile(SkTileImageFilter::Make(srcRect, dstRect, nullptr));
100 paint.setImageFilter(SkColorFilterImageFilter::Make(std::move(cf), std::move(tile)));
121 tile = SkTileImageFilter::Make(srcRect, dstRect, std::move(green));
123 paint.setImageFilter(std::move(tile));

Completed in 2530 milliseconds

1 23 4 5 6 7 8 91011>>