Searched defs:cell (Results 1 - 6 of 6) sorted by relevance
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | oopMapCache.cpp | 409 CellTypeState* cell = vars; local 410 for (int entry_index = 0; entry_index < n_entries; entry_index++, mask <<= bits_per_entry, cell++) { 420 cell = stack; 424 if ( cell->is_reference()) { 430 if (!cell->is_live()) { 432 assert(!cell->is_reference(), "dead value marked as oop");
|
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/ |
H A D | D3DTextRenderer.cpp | 283 CacheCellInfo *cell; local 300 cell = AccelGlyphCache_GetCellInfoForCache(ginfo, gcache); 301 if (cell == NULL) { 306 cell = AccelGlyphCache_GetCellInfoForCache(ginfo, gcache); 307 RETURN_STATUS_IF_NULL(cell, E_FAIL); 310 cell->timesRendered++; 318 cell->tx1, cell->ty1, 319 cell->tx2, cell 524 CacheCellInfo *cell; local [all...] |
/openjdk7/jdk/src/share/native/sun/java2d/opengl/ |
H A D | OGLTextRenderer.c | 260 // store glyph image in texture cell 653 CacheCellInfo *cell; local 667 // we'll just no-op in the rare case that the cell is NULL 672 cell = (CacheCellInfo *) (ginfo->cellInfo); 673 cell->timesRendered++; 681 cell->tx1, cell->ty1, 682 cell->tx2, cell->ty2, 826 CacheCellInfo *cell; local [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/ |
H A D | HTMLGenerator.java | 108 void cell(String s) { wrap("td", s); } method in class:HTMLGenerator.Formatter 499 buf.cell(Integer.toString(index)); 504 buf.cell("JVM_CONSTANT_Integer"); 505 buf.cell(Integer.toString(cpool.getIntAt(index))); 509 buf.cell("JVM_CONSTANT_Float"); 510 buf.cell(Float.toString(cpool.getFloatAt(index))); 514 buf.cell("JVM_CONSTANT_Long"); 515 buf.cell(Long.toString(cpool.getLongAt(index))); 521 buf.cell("JVM_CONSTANT_Double"); 522 buf.cell(Doubl [all...] |
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciTypeFlow.cpp | 404 Cell cell = state->next_cell(state->tos()); local 407 for (; cell < limit; cell = state->next_cell(cell)) { 408 state->set_type_at(cell, state->bottom_type());
|
/openjdk7/jdk/src/share/classes/sun/text/bidi/ |
H A D | BidiBase.java | 1614 private static short GetStateProps(short cell) { argument 1615 return (short)(cell & 0x1f); 1617 private static short GetActionProps(short cell) { argument 1618 return (short)(cell >> 5); 1711 private static short GetState(byte cell) { return (short)(cell & 0x0f); } argument 1712 private static short GetAction(byte cell) { return (short)(cell >> 4); } argument 1981 byte cell; 1990 cell [all...] |
Completed in 81 milliseconds