Searched defs:filler (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.cpp180 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(), char filler) { argument
181 assert(filler == ' ', "just checkin'");
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngtrans.c140 /* Add a filler byte on read, or remove a filler or alpha byte on write.
141 * The filler type has changed in v0.95 to allow future 2-byte fillers
146 png_set_filler(png_structp png_ptr, png_uint_32 filler, int filler_loc) argument
154 png_ptr->filler = (png_uint_16)filler;
183 png_set_add_alpha(png_structp png_ptr, png_uint_32 filler, int filler_loc) argument
190 png_set_filler(png_ptr, filler, filler_loc);
483 if (at_start) /* Skip initial filler */
485 else /* Skip initial channel and, for sp, the filler */
[all...]
H A Dpngstruct.h164 png_uint_16 filler; /* filler bytes for pixel expansion */ member in struct:png_struct_def
H A Dpngrtran.c1999 /* If adding a true alpha channel not just filler */
2266 (png_uint_32)png_ptr->filler, png_ptr->flags);
2821 /* Add filler channel if we have RGB color */
2824 png_uint_32 filler, png_uint_32 flags)
2830 png_byte hi_filler = (png_byte)((filler>>8) & 0xff);
2832 png_byte lo_filler = (png_byte)(filler & 0xff);
2823 png_do_read_filler(png_row_infop row_info, png_bytep row, png_uint_32 filler, png_uint_32 flags) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.hpp171 GrowableArray(int initial_size, int initial_len, const E& filler, bool C_heap = false, MEMFLAGS memflags = mtInternal) argument
175 for (; i < _len; i++) ::new ((void*)&_data[i]) E(filler);
179 GrowableArray(Arena* arena, int initial_size, int initial_len, const E& filler) : GenericGrowableArray(arena, initial_size, initial_len) { argument
182 for (; i < _len; i++) ::new ((void*)&_data[i]) E(filler);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.cpp313 void InstructionPrinter::fill_to(int pos, char filler) { argument
314 while (output()->position() < pos) output()->put(filler);
319 const char filler = '_'; local
320 fill_to(bci_pos , filler); output()->print("bci" );
321 fill_to(use_pos , filler); output()->print("use" );
322 fill_to(temp_pos , filler); output()->print("tid" );
323 fill_to(instr_pos, filler); output()->print("instr");
324 fill_to(end_pos , filler);
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.cpp341 // If the offset is giant, emit filler relocs, of type 'none', but
543 // We'll insert one or more filler relocs to span that gap.
550 relocInfo filler = filler_relocInfo(); local
551 if (jump >= filler.addr_offset()) {
552 jump = filler.addr_offset();
553 } else { // else shrink the filler to fit
554 filler = relocInfo(relocInfo::none, jump);
557 assert(buf_offset + (csize_t)sizeof(filler) <= buf_limit, "filler in bounds");
558 *(relocInfo*)(buf+buf_offset) = filler;
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.cpp1292 static int filler; // overhead caused by filler bytes member in class:VtableStats
1315 // filler size is a conservative approximation
1316 filler = oopSize * (no_klasses - no_instance_klasses) * (sizeof(instanceKlass) - sizeof(arrayKlass) - 1);
1328 int VtableStats::filler = 0; member in class:VtableStats
1338 int total = VtableStats::fixed + VtableStats::filler + VtableStats::entries;
1340 tty->print_cr("%6d bytes filler overhead", VtableStats::filler);

Completed in 88 milliseconds