Searched defs:num_blocks (Results 1 - 12 of 12) sorted by relevance
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/ |
H A D | jutils.c | 150 JDIMENSION num_blocks) 154 FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF))); 161 for (count = (long) num_blocks * DCTSIZE2; count > 0; count--) { 149 jcopy_block_row(JBLOCKROW input_row, JBLOCKROW output_row, JDIMENSION num_blocks) argument
|
H A D | jcdctmgr.c | 187 JDIMENSION num_blocks) 199 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) { 277 JDIMENSION num_blocks) 289 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) { 184 forward_DCT(j_compress_ptr cinfo, jpeg_component_info * compptr, JSAMPARRAY sample_data, JBLOCKROW coef_blocks, JDIMENSION start_row, JDIMENSION start_col, JDIMENSION num_blocks) argument 274 forward_DCT_float(j_compress_ptr cinfo, jpeg_component_info * compptr, JSAMPARRAY sample_data, JBLOCKROW coef_blocks, JDIMENSION start_row, JDIMENSION start_col, JDIMENSION num_blocks) argument
|
/openjdk7/jdk/src/share/native/sun/awt/libpng/ |
H A D | pngmem.c | 215 int num_blocks; local 233 num_blocks = (int)(1 << (window_bits - 14)); 236 num_blocks = 1; 243 num_blocks += (int)(1 << (mem_level - 7)); 246 num_blocks++; 248 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16; 279 png_ptr->offset_table_ptr = farmalloc(num_blocks * 301 for (i = 0; i < num_blocks; i++) 307 png_ptr->offset_table_number = num_blocks;
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciMethodBlocks.hpp | 55 int num_blocks() { return _num_blocks;} function in class:ciMethodBlocks
|
H A D | ciTypeFlow.cpp | 1967 _ciblock_count = _methodBlocks->num_blocks(); 2921 int num_blocks = (blocks == NULL) ? 0 : blocks->length(); local 2923 if (num_blocks == 0) { 2926 for (int i = 0; i < num_blocks; i++) {
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_ValueMap.cpp | 354 int num_blocks = blocks->length(); local 363 for (int i = 1; i < num_blocks; i++) {
|
H A D | c1_IR.cpp | 912 int num_blocks = _linear_scan_order->length(); local 916 for (int i = 1; i < num_blocks; i++) { 1100 int num_blocks = _code->length(); local 1101 for (int i = 0; i < num_blocks; i++) {
|
H A D | c1_LinearScan.cpp | 431 int num_blocks = block_count(); local 432 for (int i = 0; i < num_blocks; i++) { 505 int num_blocks = block_count(); local 508 for (i = 0; i < num_blocks; i++) { 519 for (i = 0; i < num_blocks; i++) { 572 int num_blocks = block_count(); local 582 for (int i = 0; i < num_blocks; i++) { 754 int num_blocks = block_count(); local 768 for (int i = num_blocks - 1; i >= 0; i--) { 832 for (int i = 0; i < num_blocks; 1756 int num_blocks = block_count(); local 1973 int num_blocks = block_count(); local 3025 int num_blocks = block_count(); local 3366 int num_blocks = block_count(); local [all...] |
/openjdk7/hotspot/src/share/vm/compiler/ |
H A D | methodLiveness.cpp | 177 int num_blocks = _block_count; local 178 _total_blocks += num_blocks; 179 _max_method_blocks = MAX2(num_blocks,_max_method_blocks); 181 for (int i=0; i<num_blocks; i++) { 210 _block_count = mblocks->num_blocks(); 423 int num_blocks = _block_count; local 436 for (int i = 0; i < num_blocks; i++) {
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | c1_LinearScan_x86.cpp | 53 const int num_blocks = block_count(); local 54 for (int i = 0; i < num_blocks; i++) { 122 int num_blocks = allocator()->block_count(); local 123 for (int i = 0; i < num_blocks; i++) {
|
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | methodDataOop.hpp | 1381 int num_blocks() const { return _num_blocks; } function in class:VALUE_OBJ_CLASS_SPEC
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | compile.cpp | 1216 int num_blocks = arr->length(); local 1217 if (grow_by < num_blocks) grow_by = num_blocks;
|
Completed in 74 milliseconds