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

1 2 3 4 5 67 8 91011>>

  /packages/apps/Settings/tests/robotests/src/com/android/settings/security/
SecurityFeatureProviderImplTest.java 34 import com.android.settingslib.drawer.Tile;
118 dashboardCategory.addTile(new Tile());
222 Tile tile = new Tile(); local
223 tile.key = MOCK_KEY;
224 dashboardCategory.addTile(tile);
  /external/ImageMagick/PerlMagick/demo/
compose-specials.pl 239 tile=>'True',
246 tile=>'4x',
  /external/libvncserver/test/
tjbench.c 122 int tile=0; local
125 for(col=0, dstptr2=dstptr; col<ntilesw; col++, tile++, dstptr2+=ps*tilew)
129 if(tjDecompress2(handle, jpegbuf[tile], jpegsize[tile], dstptr2, width,
234 _throwunix("allocating JPEG tile array");
265 int tile=0; local
269 for(col=0, srcptr2=srcptr; col<ntilesw; col++, tile++,
275 &jpegbuf[tile], &jpegsize[tile], subsamp, jpegqual, flags)==-1)
277 totaljpegsize+=jpegsize[tile];
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_transfer.c 411 * X-major tile has 8 rows and 32 OWord columns (512 bytes). Tiles in the
413 * tile number can thus be calculated as follows:
415 * tile = (mem_y / 8) * tiles_per_row + (mem_x / 512)
417 * OWords in that tile are also numbered in row-major order, starting from
424 * offset = tile * 4096 + oword * 16 + (mem_x % 16)
425 * = tile * 4096 + (mem_y % 8) * 512 + (mem_x % 512)
427 unsigned tile, offset; local
429 tile = (mem_y >> 3) * tiles_per_row + (mem_x >> 9);
430 offset = tile << 12 | (mem_y & 0x7) << 9 | (mem_x & 0x1ff);
441 * Y-major tile has 32 rows and 8 OWord columns (128 bytes). Tiles in th
456 unsigned tile, oword, offset; local
494 unsigned tile, blk8, blk4, blk2, blk1, offset; local
    [all...]
  /external/skia/include/core/
SkShader.h 154 TileMode fTileMode; //!< The tile mode used.
265 * @param tile The tile rectangle in picture coordinates: this represents the subset
266 * (or superset) of the picture used when building a tile. It is not
268 * and cropping). If null, the tile rect is considered equal to the picture
273 const SkMatrix* localMatrix, const SkRect* tile);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSAnimator.java 169 for (QSTile tile : tiles) {
170 QSTileView tileView = mQsPanel.getTileView(tile);
172 Log.e(TAG, "tileView is null " + tile.getTileSpec());
179 QSTileView quickTileView = mQuickQsPanel.getTileView(tile);
188 // Move the quick tile right from its location to the new one.
192 // Counteract the parent translation on the tile. So we have a static base to
196 // Move the real tile from the quick tile position to its final
206 // Move the last tile position over by the last difference between quick tiles.
291 // Ignore tile pages as they can have some offset we don't want to take into account i
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
QSCustomizer.java 250 for (String tile : defTiles.split(",")) {
251 tiles.add(tile);
258 for (QSTile tile : mHost.getTiles()) {
259 specs.add(tile.getTileSpec());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
TileLifecycleManager.java 35 import android.service.quicksettings.Tile;
68 // Shared prefs that hold tile lifecycle info.
92 public TileLifecycleManager(Handler handler, Context context, IQSService service, Tile tile,
94 this(handler, context, service, tile, intent, user, new PackageManagerAdapter(context));
98 TileLifecycleManager(Handler handler, Context context, IQSService service, Tile tile,
153 // Too many failures, give up on this tile until an update.
427 void onTileChanged(ComponentName tile);
TileServiceManager.java 31 import android.service.quicksettings.Tile;
75 Tile tile) {
77 tileServices.getContext(), tileServices, tile, new Intent().setComponent(component),
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_blend.c 874 * to the tile cache. The tile cache always stores RGBA colors but if
934 struct softpipe_cached_tile *tile local
982 dest[i][j] = tile->data.color[y][x][i];
1037 struct softpipe_cached_tile *tile local
1111 struct softpipe_cached_tile *tile local
1179 struct softpipe_cached_tile *tile local
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
tcd.c 55 opj_tcd_tile_t *tile = &tcd->tcd_image->tiles[tileno]; local
56 fprintf(fd, " tile {\n");
58 tile->x0, tile->y0, tile->x1, tile->y1, tile->numcomps);
59 for (compno = 0; compno < tile->numcomps; compno++) {
60 opj_tcd_tilecomp_t *tilec = &tile->comps[compno];
108 * Initializes tile coding/decodin
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_exposure.py 104 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
105 rgb_means = its.image.compute_image_means(tile)
  /external/ImageMagick/coders/
Android.mk 121 tile.c\
  /external/libvpx/libvpx/test/
vpxenc.sh 279 --tile-columns=${tile_cols} \
307 --tile-columns=${tile_cols} \
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.h 94 * For each screen tile we have one of these bins.
108 * the per-tile bins will point to chunks of data in this structure.
122 * Per-bin data goes into the 'tile' bins.
172 * This basically the framebuffer size divided by tile size
179 struct cmd_bin tile[TILES_X][TILES_Y]; member in struct:lp_scene
284 /** Return pointer to a particular tile's bin. */
288 return &scene->tile[x][y];
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
threads.cpp 441 /// then it will add that tile to the lockedTiles set. As a worker begins to work
492 // Grab the list of all dirty macrotiles. A tile is dirty if it has work queued to it.
495 for (auto tile : macroTiles)
497 uint32_t tileID = tile->mId;
507 if (!tile->getNumQueued())
518 if (tile->tryLock())
524 uint32_t numWorkItems = tile->getNumQueued();
527 pWork = tile->peek();
538 while ((pWork = tile->peek()) != nullptr)
541 tile->dequeue()
    [all...]
tilemgr.h 25 * @brief Definitions for Macro Tile Manager which provides the facilities
26 * for threads to work on an macro tile.
39 /// MacroTile - work queue for a tile.
47 /// @brief Returns number of work items queued for this tile.
113 for (auto &tile : mTiles)
115 tile.second.destroy();
147 // Any tile that has work queued to it is a dirty tile.
250 HOTTILE_INVALID, // tile is in unitialized state and should be loaded with surface contents before rendering
251 HOTTILE_CLEAR, // tile should be cleare
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_surface_builder.cpp 515 const fs_reg tile = offset(image, bld, BRW_IMAGE_PARAM_TILING_OFFSET); local
528 * start mid-tile, so simply shifting the surface base address
551 * by passing in the miplevel as tile.z for 3-D textures and 0 in
552 * tile.z for 2-D array textures.
562 bld.BFE(offset(tmp, bld, 0), offset(tile, bld, 2), brw_imm_d(0),
566 offset(tile, bld, 2));
583 * other. This means that the tile width for Y-tiling is actually
584 * the width of one sub-column of the Y-major tile where each 4K
585 * tile has 8 512B sub-columns.
588 * The major X value is the tile sub-column in which the pixe
    [all...]
  /frameworks/layoutlib/bridge/src/android/graphics/
RadialGradient_Delegate.java 88 * @param tile The Shader tiling mode
91 int colors[], float positions[], TileMode tile) {
93 mJavaPaint = new RadialGradientPaint(x, y, radius, mColors, mPositions, tile);
  /external/dng_sdk/source/
dng_ifd.h 271 virtual uint32 TileByteCount (const dng_rect &tile) const;
dng_negative.cpp     [all...]
  /external/pdfium/third_party/libtiff/
tiffio.h 74 typedef uint32 tstrile_t; /* strip or tile number */
76 typedef tstrile_t ttile_t; /* tile number */
216 /* put decoded strip/tile */
469 extern tmsize_t TIFFReadEncodedTile(TIFF* tif, uint32 tile, void* buf, tmsize_t size);
470 extern tmsize_t TIFFReadRawTile(TIFF* tif, uint32 tile, void* buf, tmsize_t size);
473 extern tmsize_t TIFFWriteEncodedTile(TIFF* tif, uint32 tile, void* data, tmsize_t cc);
474 extern tmsize_t TIFFWriteRawTile(TIFF* tif, uint32 tile, void* data, tmsize_t cc);
  /external/libvpx/libvpx/vp9/common/
vp9_onyxc_int.h 394 static INLINE void set_mi_row_col(MACROBLOCKD *xd, const TileInfo *const tile,
404 xd->left_mi = (mi_col > tile->mi_col_start) ? xd->mi[-1] : NULL;
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 512 const TileInfo *const tile = &xd->tile; local
526 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
548 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
590 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
698 const TileInfo *const tile = &xd->tile; local
703 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
  /external/skia/src/shaders/
SkShader.cpp 259 const SkMatrix* localMatrix, const SkRect* tile) {
263 return SkPictureShader::Make(std::move(src), tmx, tmy, localMatrix, tile);

Completed in 1351 milliseconds

1 2 3 4 5 67 8 91011>>