Searched defs:free (Results 51 - 61 of 61) sorted by relevance

123

/openjdk7/jdk/src/share/back/
H A Dutil.h5 * This code is free software; you can redistribute it and/or modify it
37 #undef free macro
38 #define free(p) Do not use this interface. macro
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dcoding.cpp5 * This code is free software; you can redistribute it and/or modify it
154 ::free(ptr);
156 // else caller should free it...
169 void coding::free() { function in class:coding
172 ::free(this);
668 fValueSink.free();
680 tcode->free();
689 tcode->free();
765 to_free->free();
H A Dunpack.h5 * This code is free software; you can redistribute it and/or modify it
173 ptrlist mallocs; // list of guys to free when we are all done
174 ptrlist tmallocs; // list of guys to free on next client request
284 void free() { function in struct:unpacker::attr_definitions
285 layouts.free();
286 overflow_count.free();
287 strip_names.free();
288 band_stack.free();
289 calls_to_link.free();
370 void free();
[all...]
H A Dunpack.cpp5 * This code is free software; you can redistribute it and/or modify it
292 void unpacker::free() { function in class:unpacker
297 if (gzin != null) { gzin->free(); gzin = null; }
298 if (free_input) input.free();
299 // free everybody ever allocated with U_NEW or (recently) with T_NEW
306 bcimap.free();
307 class_fixup_type.free();
308 class_fixup_offset.free();
309 class_fixup_ref.free();
310 code_fixup_type.free();
[all...]
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dpkcs11wrapper.h287 /* function to free CK_ATTRIBUTE array
410 /* A node of the list of notify callbacks. To be able to free the resources after use. */
450 /* Simple malloc/free dumper */
455 #define free(c) (p11free((c), __FILE__, __LINE__)) macro
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp5 * This code is free software; you can redistribute it and/or modify it
320 // CompileTask::free
321 void CompileTask::free() { function in class:CompileTask
760 // Initialize the CompileTask free list
1461 // Allocate a CompileTask, from the free list if possible.
1480 // Add a task to the free list.
1483 task->free();
1521 // be using this CompileTask; we can free it.
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionRemSet.cpp5 * This code is free software; you can redistribute it and/or modify it
45 // next pointer for free/allocated 'all' list
54 // Global free list of PRTs
179 // Bulk-free the PRTs from prt to last, assumes that they are
193 static void free(PerRegionTable* prt) { function in class:PerRegionTable
644 PerRegionTable::free(cur);
660 PerRegionTable::free(cur);
793 PerRegionTable::free(prt);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.cpp5 * This code is free software; you can redistribute it and/or modify it
82 julong os::num_frees = 0; // # of calls to free
469 fatal(err_msg("free: size field of object #" PTR_FORMAT " was overwritten ("
637 free(memblock);
644 void os::free(void *memblock, MEMFLAGS memflags) { function in class:os
649 if (tty != NULL) tty->print_cr("os::free caught " PTR_FORMAT, memblock);
671 fprintf(stderr, "os::free " SIZE_FORMAT " bytes --> " PTR_FORMAT "\n", size, (uintptr_t)memblock);
673 // tty->print_cr("os::free %p", memblock);
674 fprintf(stderr, "os::free " PTR_FORMAT "\n", (uintptr_t)memblock);
679 ::free((cha
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp5 * This code is free software; you can redistribute it and/or modify it
49 // highest ranked free list lock rank
79 // free list locks are in the range of values taken by _lockRank
114 // The indexed free lists are initially all empty and are lazily
118 // Not using adaptive free lists assumes that allocation is first
260 "Indexed free list sizes are incorrect");
296 // Reset the space to the new reality - one free chunk.
377 return capacity() - free();
380 size_t CompactibleFreeListSpace::free() const { function in class:CompactibleFreeListSpace
515 } else { // free bloc
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp5 * This code is free software; you can redistribute it and/or modify it
2029 save_frame(); // one more save to free up another O7 register
2960 // Adjust recv_klass by scaled itable_index, so we can free itable_index.
3989 const Register free = end; local
3990 sub(end, obj, free); // compute amount of free space
3993 cmp(free, var_size_in_bytes);
3998 cmp(free, con_size_in_bytes);
4042 const Register free = t1; local
4048 // calculate amount of free spac
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5 * This code is free software; you can redistribute it and/or modify it
772 #define free(p) FREE_C_HEAP_ARRAY(char, p, mtInternal) macro
862 free(info);
895 free(info);
907 free(info);
908 free(common_path);
946 free(common_path);
947 free(library_path);
948 free(info);
976 #undef free macro
[all...]

Completed in 70 milliseconds

123