Home | History | Annotate | Download | only in utils

Lines Matching refs:block

76    * block size is currently 2K, which may be overkill for
85 * Construct a IntVector, using the given block size and number
89 * @param blocksize Size of block to allocate
108 /** Construct a IntVector, using the given block size and
111 * @param blocksize Size of block to allocate
171 int[] block=m_map[index];
172 if(null==block)
173 block=m_map[index]=new int[m_blocksize];
174 block[offset]=value;
178 m_buildCache = block;
211 int[] block=m_map[index];
212 if(null==block)
213 block=m_map[index]=new int[m_blocksize];
218 block[offset++]=value;
269 int[] block=m_map[index];
270 if(null==block)
271 block=m_map[index]=new int[m_blocksize];
273 block[offset]=value;
288 int[] block=m_map[index];
289 if(null==block)
292 block=m_map[index]=new int[m_blocksize];
296 push=block[m_blocksize-1];
297 System.arraycopy(block, offset , block, offset+1, copylen);
299 block[offset]=value;
357 int[] block=m_map[index];
358 if(null==block)
359 block=m_map[index]=new int[m_blocksize];
361 System.arraycopy(block, offset+1, block, offset, copylen);
366 block[m_blocksize-1]=(next!=null) ? next[0] : 0;
369 block[m_blocksize-1]=0;
404 int[] block=m_map[index];
405 if(null==block)
406 block=m_map[index]=new int[m_blocksize];
407 block[offset]=value;
427 * unreasonable (negative, or past the highest block).
429 * @throws NullPointerException if the index points to a block that could
432 * %REVIEW% Could add a catch to create the block in that case, or return 0.
476 int[] block;
480 block=m_map[bindex];
481 if(block!=null)
483 if(block[offset]==elem)
487 // Last block may need to stop before end
489 block=m_map[maxindex];
491 if(block[offset]==elem)
529 int[] block=m_map[index];
530 if(block!=null)
532 if(block[offset]==elem)