Searched defs:tiles (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DTileWorker.java53 ArrayList<JulesTile> tiles = new ArrayList<JulesTile>(16);
63 tiles.add(rasterizedTile);
65 if (tiles.size() > RASTERIZED_TILE_SYNC_GRANULARITY) {
66 addRasterizedTiles(tiles);
67 tiles.clear();
73 addRasterizedTiles(tiles);
119 // If there are no tiles left, tell the producer the current
120 // position. This avoids producing tiles twice.
129 private void addRasterizedTiles(ArrayList<JulesTile> tiles) { argument
131 rasterizedBuffers.addAll(tiles);
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DImagePainter.java51 private boolean tiles; field in class:ImagePainter
76 ImagePainter(boolean tiles, boolean paintCenter, argument
88 this.tiles = tiles;
96 return tiles;
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp2922 // It can coalesce related raw stores into larger units (called 'tiles').
2976 // into larger 'tiles' 32 or 64 bits. This allows an object to be
2978 // covered by neither tiles nor non-constant stores are pre-zeroed
3408 static bool store_constant(jlong* tiles, int num_tiles, argument
3413 address addr = (address)tiles + st_off;
3414 assert(st_off >= 0 && addr+st_size <= (address)&tiles[num_tiles], "oob");
3427 // is to initialize the object with a small number of 64-bit tiles.
3463 jlong* tiles = ((num_tiles <= small_len) ? &tiles_buf[0] local
3469 // tiles: exact bitwise model of all primitive constants
3470 // nodes: last constant-storing node subsumed into the tiles mode
[all...]

Completed in 55 milliseconds