/external/dng_sdk/source/ |
dng_tile_iterator.cpp | 69 dng_rect tile (area); 71 tile.b = Min_int32 (tile.b, tile.t + tileSize.v); 72 tile.r = Min_int32 (tile.r, tile.l + tileSize.h); 74 Initialize (tile, 81 dng_tile_iterator::dng_tile_iterator (const dng_rect &tile, 99 Initialize (tile, [all...] |
dng_tile_iterator.h | 60 dng_tile_iterator (const dng_rect &tile, 63 bool GetOneTile (dng_rect &tile); 67 void Initialize (const dng_rect &tile,
|
/external/libvpx/libvpx/vp9/common/ |
vp9_tile_common.h | 25 // initializes 'tile->mi_(row|col)_(start|end)' for (row, col) based on 27 void vp9_tile_init(TileInfo *tile, const struct VP9Common *cm, int row, 30 void vp9_tile_set_row(TileInfo *tile, const struct VP9Common *cm, int row); 31 void vp9_tile_set_col(TileInfo *tile, const struct VP9Common *cm, int col);
|
vp9_tile_common.c | 24 void vp9_tile_set_row(TileInfo *tile, const VP9_COMMON *cm, int row) { 25 tile->mi_row_start = get_tile_offset(row, cm->mi_rows, cm->log2_tile_rows); 26 tile->mi_row_end = get_tile_offset(row + 1, cm->mi_rows, cm->log2_tile_rows); 29 void vp9_tile_set_col(TileInfo *tile, const VP9_COMMON *cm, int col) { 30 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols); 31 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols); 34 void vp9_tile_init(TileInfo *tile, const VP9_COMMON *cm, int row, int col) { 35 vp9_tile_set_row(tile, cm, row); 36 vp9_tile_set_col(tile, cm, col);
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
ShadowTileService.java | 4 import android.service.quicksettings.Tile; 13 private Tile tile; field in class:ShadowTileService 16 protected final Tile getQsTile() { 17 if (tile == null) { 18 tile = createTile(); 20 return tile; 23 private static Tile createTile() { 24 return Shadow.newInstanceOf(Tile.class);
|
ShadowLinearGradient.java | 17 private Shader.TileMode tile; field in class:ShadowLinearGradient 21 float x0, float y0, float x1, float y1, int color0, int color1, Shader.TileMode tile) { 28 this.tile = tile; 56 return tile;
|
/external/replicaisland/tools/ |
ExtractPoints.js | 41 var tileSizeX = prompt("Tile pixel width:"); 42 var tileSizeY = prompt("Tile pixel height:"); 54 // an array by tile. 66 var tile = new Object; 67 tile.edges = new Array(); 111 tile.edges.push(edge); 116 tile.centerX = totalX; 117 tile.centerY = totalY; 119 var column = Math.floor(tile.centerX / tileSizeX); 120 var row = Math.floor(tile.centerY / tileSizeY) [all...] |
/external/libaom/libaom/av1/common/ |
tile_common.h | 32 // initializes 'tile->mi_(row|col)_(start|end)' for (row, col) based on 34 void av1_tile_init(TileInfo *tile, const struct AV1Common *cm, int row, 37 void av1_tile_set_row(TileInfo *tile, const struct AV1Common *cm, int row); 38 void av1_tile_set_col(TileInfo *tile, const struct AV1Common *cm, int col); 40 int av1_get_sb_rows_in_tile(struct AV1Common *cm, TileInfo tile); 41 int av1_get_sb_cols_in_tile(struct AV1Common *cm, TileInfo tile); 47 // Return the pixel extents of the given tile 51 // Define tile maximum width and area 53 // The minimum tile width or height is fixed at one superblock 54 #define MAX_TILE_WIDTH (4096) // Max Tile width in pixel [all...] |
tile_common.c | 17 void av1_tile_init(TileInfo *tile, const AV1_COMMON *cm, int row, int col) { 18 av1_tile_set_row(tile, cm, row); 19 av1_tile_set_col(tile, cm, col); 55 // (otherwise there is no inner tile width) 85 // ignore the rightmost tile in frame for determining the narrowest 123 void av1_tile_set_row(TileInfo *tile, const AV1_COMMON *cm, int row) { 128 tile->tile_row = row; 129 tile->mi_row_start = mi_row_start; 130 tile->mi_row_end = AOMMIN(mi_row_end, cm->mi_rows); 131 assert(tile->mi_row_end > tile->mi_row_start) [all...] |
/external/ImageMagick/PerlMagick/t/ |
montage.t | 123 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+3+3>', frame=>'8x10', 134 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+6+6>', frame=>'8x10', 145 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+6+6>', frame=>'8x10', 154 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+6+6>', mode=>'Unframe', 165 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+6+6>', mode=>'Unframe', 176 q/ tile=>'4x4', geometry=>'90x80+6+6>', mode=>'UnFrame', 183 # 17) Test Un-bordered, Un-framed Montage with 16x1 tile 187 q/background=>'#696e7e', tile=>'16x1', geometry=>'90x80+0+0>', mode=>'Unframe', 199 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80>', mode=>'Concatenate'/, 207 q/background=>'#696e7e', tile=>'4x4', geometry=>'+0+0', mode=>'Unframe', shadow=>'False' [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_rast_debug.c | 6 struct tile { struct 126 static void plot(struct tile *tile, 131 if (tile->data[x][y] == ' ') 132 tile->coverage++; 134 tile->overdraw++; 136 tile->data[x][y] = val; 147 struct tile *tile, 154 if (!tile->state 303 struct tile tile; local 361 struct tile tile; local [all...] |
/external/libaom/libaom/av1/encoder/ |
var_based_part.h | 30 int av1_choose_var_based_partitioning(AV1_COMP *cpi, const TileInfo *const tile,
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
ShadowTileTest.java | 6 import android.service.quicksettings.Tile; 19 private Tile tile; field in class:ShadowTileTest 24 tile = Shadow.newInstanceOf(Tile.class); 25 shadowTile = shadowOf(tile); 31 tile.updateTile();
|
/external/ImageMagick/PerlMagick/demo/ |
shapes.pl | 15 $tile=Image::Magick->new; 16 $tile->Read('tile.gif'); 17 $image->Draw(primitive=>'Polygon',tile=>$tile,fill=>'none',
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_tile_cache.c | 29 * Render target tile caching. 46 * Return the position in the cache for the tile that contains win pos (x,y). 64 * Is the tile at (x,y) in cleared state? 78 * Mark the tile at (x,y) as not cleared. 118 tc->tile = MALLOC_STRUCT( softpipe_cached_tile ); 119 if (!tc->tile) 149 FREE( tc->tile ); 235 * Set pixels in a tile to the given clear color/value, float. 238 clear_tile_rgba(struct softpipe_cached_tile *tile, 246 memset(tile->data.color, 0, sizeof(tile->data.color)) 452 struct softpipe_cached_tile *tile = tc->entries[pos]; local 481 struct softpipe_cached_tile * tile = MALLOC_STRUCT(softpipe_cached_tile); local 523 struct softpipe_cached_tile *tile = tc->entries[pos]; local [all...] |
sp_tex_tile_cache.c | 29 * Texture tile caching. 61 tc->last_tile = &tc->entries[0]; /* any tile */ 162 * Flush the tile cache: write all dirty tiles back to the transfer. 184 * cached texture tile. 207 struct softpipe_tex_cached_tile *tile; local 210 tile = tc->entries + tex_cache_pos( addr ); 212 if (addr.value != tile->addr.value) { 221 " tile %u: x=%d y=%d z=%d face=%d level=%d\n", 223 pos, tile->addr.bits.x, tile->addr.bits.y, tile->z, tile->face, tile->level) [all...] |
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/ |
ImageSource.java | 27 private boolean tile; field in class:ImageSource 37 this.tile = false; 59 this.tile = true; 66 this.tile = true; 168 * @param tile whether tiling should be enabled. 171 public ImageSource tiling(boolean tile) { 172 this.tile = tile; 207 this.tile = true; 226 return tile; [all...] |
/external/mesa3d/src/gallium/drivers/freedreno/ |
freedreno_gmem.c | 43 * GMEM is the small (ie. 256KiB for a200, 512KiB for a220, etc) tile buffer 46 * stencil, if enabled) buffers to fit within GMEM. Before rendering a tile, 47 * if there was not a clear invalidating the previous tile contents, we need 49 * the draw calls, before moving to the next tile, we need to save the tile 66 * Where the per-tile section handles scissor setup, mem2gmem restore (if 275 struct fd_tile *tile = &ctx->tile[t]; local 278 assert(t < ARRAY_SIZE(ctx->tile)); 286 tile->n = tile_n[p]++ 326 struct fd_tile *tile = &ctx->tile[i]; local [all...] |
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/ |
concatenate_dataset_serialization_test.py | 31 input_components = (np.tile(np.array([[1], [2], [3], [4]]), 20), 32 np.tile(np.array([[12], [13], [14], [15]]), 4)) 33 to_concatenate_components = (np.tile( 41 array = np.tile(np.array([[16], [17], [18], [19], [20]]), 15)
|
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
concatenate_test.py | 36 np.tile(np.array([[1], [2], [3], [4]]), 20), 37 np.tile(np.array([[12], [13], [14], [15]]), 15), 40 np.tile(np.array([[1], [2], [3], [4], [5]]), 20), 41 np.tile(np.array([[12], [13], [14], [15], [16]]), 15), 69 np.tile(np.array([[1], [2], [3], [4]]), 20), 70 np.tile(np.array([[12], [13], [14], [15]]), 4)) 72 np.tile(np.array([[1], [2], [3], [4], [5]]), 20), 73 np.tile(np.array([[12], [13], [14], [15], [16]]), 15)) 99 np.tile(np.array([[1], [2], [3], [4]]), 5), 100 np.tile(np.array([[12], [13], [14], [15]]), 4) [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_linear.c | 91 t->tile.width = tile_width; 92 t->tile.height = tile_height; 93 t->cols = t->tile.width / t->block.width; 94 t->rows = t->tile.height / t->block.height; 95 t->tile.size = t->cols * t->rows * t->block.size; 100 t->size = t->tiles_x * t->tiles_y * t->tile.size;
|
u_linear.h | 61 /* size of each tile expressed in blocks */ 65 /* Describe the tile in pixels */ 66 struct u_linear_format_block tile; member in struct:pipe_tile_info 68 /* Describe each block within the tile */ 82 * @tile_width the width of the tile in pixels 83 * @tile_height the height of the tile in pixels 94 if (t->tile.size != t->block.size * t->cols * t->rows)
|
/external/tensorflow/tensorflow/compiler/xla/ |
layout.cc | 24 TileProto Tile::ToProto() const { 32 string Tile::ToString() const { 57 *layout.add_tiles() = Tile::CreateFromProto(tile_proto); 71 for (const Tile& tile : tiles()) { 72 *proto.add_tiles() = tile.ToProto(); 84 for (Tile tile : tiles()) { 85 absl::StrAppend(&colon_string, tile.ToString()); 118 std::ostream& operator<<(std::ostream& out, const Tile& tile) [all...] |
/external/libdrm/libkms/ |
intel.c | 119 struct drm_i915_gem_set_tiling tile; local 121 memset(&tile, 0, sizeof(tile)); 122 tile.handle = bo->base.handle; 123 tile.tiling_mode = I915_TILING_X; 124 tile.stride = bo->base.pitch; 126 ret = drmCommandWriteRead(kms->fd, DRM_I915_GEM_SET_TILING, &tile, sizeof(tile));
|
/external/pdfium/third_party/libopenjpeg20/ |
t2.h | 67 Encode the packets of a tile to a destination buffer 69 @param tileno number of the tile encoded 70 @param tile the tile for which to write the packets 76 @param tpnum Tile part number of the current tile 77 @param tppos The position of the tile part flag in the progression order 84 opj_tcd_tile_t *tile, 97 Decode the packets of a tile from a source buffer 100 @param tileno number that identifies the tile for which to decode the packet [all...] |