Searched defs:Chunk (Results 1 - 8 of 8) sorted by relevance
| /openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/ |
| H A D | MethodGenerator.java | 726 private class Chunk implements Comparable { class in class:MethodGenerator 746 * <p>Constructor for an outlineable {@link MethodGenerator.Chunk}.</p> 758 Chunk(InstructionHandle start, InstructionHandle end) { method in class:MethodGenerator.Chunk 765 * Determines whether this outlineable {@link MethodGenerator.Chunk} is 767 * <code>MethodGenerator.Chunk</code>, with no other intervening 770 * @param neighbour an outlineable {@link MethodGenerator.Chunk} 774 boolean isAdjacentTo(Chunk neighbour) { 779 * Getter method for the start of this {@linke MethodGenerator.Chunk} 788 * Getter method for the end of this {@link MethodGenerator.Chunk} 796 * The size of this {@link MethodGenerator.Chunk} [all...] |
| /openjdk7/hotspot/src/share/vm/memory/ |
| H A D | allocation.cpp | 175 Chunk* _first; // first cached Chunk; its first word points to next chunk 187 Chunk* c = _first; 217 void free(Chunk* chunk) { 218 assert(chunk->length() + Chunk::aligned_overhead_size() == _size, "bad size"); 230 Chunk* cur = NULL; 231 Chunk* next; 265 _large_pool = new ChunkPool(Chunk::size + Chunk::aligned_overhead_size()); 266 _medium_pool = new ChunkPool(Chunk 340 Chunk::Chunk(size_t length) : _len(length) { function in class:Chunk [all...] |
| H A D | allocation.hpp | 233 //------------------------------Chunk------------------------------------------ 235 class Chunk: CHeapObj<mtChunk> { class in inherits:CHeapObj 239 Chunk* _next; // Next Chunk in list 240 const size_t _len; // Size of this Chunk 244 Chunk(size_t length); 253 slack = 20, // suspected sizeof(Chunk) + internal malloc headers 264 static size_t aligned_overhead_size(void) { return ARENA_ALIGN(sizeof(Chunk)); } 267 Chunk* next() const { return _next; } 268 void set_next(Chunk* [all...] |
| /openjdk7/hotspot/src/share/vm/adlc/ |
| H A D | arena.cpp | 27 void* Chunk::operator new(size_t requested_size, size_t length) { 31 void Chunk::operator delete(void* p, size_t length) { 35 Chunk::Chunk(size_t length) { function in class:Chunk 41 void Chunk::chop() { 42 Chunk *k = this; 44 Chunk *tmp = k->_next; 52 void Chunk::next_chop() { 60 _first = _chunk = new (init_size) Chunk(init_size); 67 _first = _chunk = new (Chunk [all...] |
| H A D | arena.hpp | 69 //------------------------------Chunk------------------------------------------ 71 class Chunk: public CHeapObj { class in inherits:CHeapObj 75 Chunk(size_t length); 81 Chunk* _next; // Next Chunk in list 82 size_t _len; // Size of this Chunk 88 char* bottom() const { return ((char*) this) + sizeof(Chunk); } 100 Chunk *_first; // First chunk 101 Chunk *_chunk; // current chunk 103 void* grow(size_t x); // Get a new Chunk o [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/ |
| H A D | Chunk.java | 33 final class Chunk { class 34 volatile Chunk next; 37 public Chunk(Data data) { method in class:Chunk 48 public Chunk createNext(DataHead dataHead, ByteBuffer buf) { 49 return next = new Chunk(data.createNext(dataHead, buf));
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/ |
| H A D | ReadAllStream.java | 145 private Chunk head, tail; 152 head = tail = new Chunk(buf, 0, len); 222 private static final class Chunk { class in class:ReadAllStream.MemoryStream 223 Chunk next; 228 public Chunk(byte[] buf, int off, int len) { method in class:ReadAllStream.MemoryStream.Chunk 234 public Chunk createNext(byte[] buf, int off, int len) { 235 return next = new Chunk(buf, off, len);
|
| /openjdk7/jdk/test/java/lang/invoke/indify/ |
| H A D | Indify.java | 1124 private interface Chunk { interface in class:Indify 1129 private static class CountedList<T> extends ArrayList<T> implements Chunk { 1169 } else if (Chunk.class.isAssignableFrom(dataClass)) { 1173 ((Chunk)obj).readFrom(in); 1188 for (Object x : data) ((Chunk)x).readFrom(in); 1209 } else if (data instanceof Chunk) { 1210 Chunk x = (Chunk) data; 1258 public static class Constant<T> implements Chunk { 1307 public static class Pool extends CountedList<Constant> implements Chunk { [all...] |
Completed in 827 milliseconds