Searched refs:garbage (Results 1 - 25 of 25) sorted by relevance

/macosx-10.10.1/ruby-106/ruby/lib/
H A Dshellwords.rb74 |word, sq, dq, esc, garbage, sep|
75 raise ArgumentError, "Unmatched double quote: #{line.inspect}" if garbage
/macosx-10.10.1/remote_cmds-47/rlogin.tproj/
H A Ddes_rw.c197 long net_len, garbage; local
204 garbage = random();
205 /* insert random garbage */
206 (void) bcopy(&garbage, garbage_buf, MIN(sizeof(long),8));
/macosx-10.10.1/uucp-11/uucp/contrib/
H A Duutraf79 $garbage = 0;
85 if ( $garbage++ > 10 ) {
86 die ("FATAL: Too much garbage; wrong UUCP type?\n");
116 $garbage = 0;
/macosx-10.10.1/libauto-186/
H A Dauto_weak.h59 // clear references to garbage
60 extern auto_weak_callback_block_t *weak_clear_references(Auto::Zone *azone, size_t garbage_count, vm_address_t *garbage, uintptr_t *weak_referents_count, uintptr_t *weak_refs_count);
H A DZoneCollectionChecking.cpp85 // Clears the checking count for the blocks in the garbage list.
86 void Zone::clear_garbage_checking_count(void **garbage, size_t count) { argument
88 void *block = garbage[i];
H A DThreadLocalCollector.h40 // Responsible for garbage collection.
65 void scavenge_local(size_t count, void *garbage[]);
126 // searches the garbage list and returns true if block is in it
132 // scans the list of garbage blocks. any non-garbage local blocks which are reachable are made global
H A DThreadLocalCollector.cpp197 void ThreadLocalCollector::scavenge_local(size_t count, void *garbage[]) { argument
202 // if collection checking is on then clear the check count for all the garbage blocks
205 zone->clear_garbage_checking_count(garbage, count);
210 void *block = garbage[index];
230 // transition the block from local garbage to retained global
243 static void finalize_work(Zone *zone, const size_t garbage_count, void *garbage[]) { argument
245 zone->invalidate_garbage(garbage_count, garbage);
246 zone->free_garbage(garbage_count, garbage, 0, NULL, blocks_freed, bytes_freed); // TODO: all blocks are in the small admin, create a batched version.
248 aux_free(garbage);
251 // assumes _tlcBuffer/_tlcBufferCount hold the garbage lis
[all...]
H A DZone.cpp57 void **garbage; member in struct:auto_zone_cursor
823 // Creating associations must enliven objects that may become garbage otherwise.
1308 // garbage list has been computed, can now clear the marks.
1351 // Constructs a list of all garbage blocks.
1353 // Also ages non-garbage blocks, so we can do this while
1367 // always age blocks, to distinguish garbage blocks from blocks allocated during finalization [4843956].
1370 // add unmarked blocks to the garbage list.
1381 // always age blocks, to distinguish garbage blocks from blocks allocated during finalization [4843956].
1384 // add unmarked blocks to the garbage list.
1428 void *ptr = (void *)cursor->garbage[curso
1448 invalidate_garbage(const size_t garbage_count, void *garbage[]) argument
[all...]
H A Dauto_zone.cpp95 // detects if the specified pointer is about to become garbage
126 void **garbage = list.buffer(); local
128 void **large_garbage = (large_garbage_count ? garbage + garbage_count - large_garbage_count : NULL);
130 AUTO_PROBE(auto_probe_end_heap_scan(garbage_count, garbage));
134 // note the garbage so the write-barrier can detect resurrection
138 zone->invalidate_garbage(garbage_count, garbage);
142 bytes_freed = zone->free_garbage(garbage_count - large_garbage_count, garbage, large_garbage_count, large_garbage, block_count, byte_count);
859 auto_error(azone, "resurrection of thread local garbage belonging to another thread", new_value);
895 auto_error(azone, "resurrection of thread local garbage belonging to another thread", new_value.address());
1067 // Even if we're storing into garbage i
[all...]
H A DZone.h152 PointerList _garbage_list; // vm_map allocated pages to hold the garbage list.
727 // Returns true if the specified block is flagged as garbage. Only valid
1263 // Compacts entire garbage collected heap.
1291 // Given an array of garbage, do callouts for finalization
1293 void invalidate_garbage(const size_t garbage_count, void *garbage[]);
1298 // called when we detect a garbage block has been over retained during finalization
1309 // Free subzone/large arrays of garbage, en-masse.
1567 // Unregisters garbage blocks from collection checking.
1569 void clear_garbage_checking_count(void **garbage, size_t count);
H A Dauto_weak.cpp398 // Given a set of newly-discovered garbage, zero out any weak
399 // references to the garbage.
400 auto_weak_callback_block_t *weak_clear_references(Zone *azone, size_t garbage_count, vm_address_t *garbage, argument
416 weak_entry_t *entry = weak_entry_for_referent(azone, (void *)garbage[i]);
/macosx-10.10.1/zlib-55/zlib/contrib/pascal/
H A Dexample.pas66 StrCopy(PChar(uncompr), 'garbage');
127 StrCopy(PChar(uncompr), 'garbage');
234 StrCopy(PChar(uncompr), 'garbage');
329 StrCopy(PChar(uncompr), 'garbage');
412 StrCopy(PChar(uncompr), 'garbage');
489 StrCopy(PChar(uncompr), 'garbage');
/macosx-10.10.1/llvmCore-3425.0.34/bindings/ocaml/executionengine/
H A Dllvm_executionengine.mli92 is not garbage collected and must be destroyed with [dispose ee].
98 execution engine is not garbage collected and must be destroyed with
106 engine is not garbage collected and must be destroyed with [dispose ee].
/macosx-10.10.1/CPANInternal-159.1/Bencode-1.4/lib/
H A DBencode.pm106 croak _msg m/ \G \z /xgc ? 'unexpected end of data at %s' : 'garbage at %s';
115 croak _msg 'trailing garbage at %s' if $_ !~ m/ \G \z /xgc;
193 =item C<trailing garbage at %s>
199 =item C<garbage at %s>
/macosx-10.10.1/bind9-45.101/bind9/contrib/nslint-2.1a3/
H A Dnslint.c358 *errstrp = "garbage after net";
366 *errstrp = "trailing garbage";
692 fprintf(stderr, "%s: %s:%d garbage char '%c' (1)\n",
714 "%s: %s:%d garbage char '%c' (2)\n",
788 "%s: %s:%d garbage char '%c' (3)\n",
800 "%s: %s:%d garbage char '%c' (4)\n",
930 register char ch, *garbage; local
949 garbage = "leading garbage";
991 garbage
[all...]
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A DFixDecompsNotes.txt58 as 2937515 (in which users are seeing partial garbage for filenames). The update
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/fumagic/
H A Dfiletypes.tcl81 if {[N S 2 == 0x1]} {switch -- [Nv c 48] 1 {emit {disk icon}} 2 {emit {drawer icon}} 3 {emit {tool icon}} 4 {emit {project icon}} 5 {emit {garbage icon}} 6 {emit {device icon}} 7 {emit {kickstart icon}} 8 {emit {workbench application icon}}
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dmysql.vim81 " also have to make sure that garbage like floatn or float_(1) is not
/macosx-10.10.1/zlib-55/zlib/contrib/masmx64/
H A Dgvmat64.asm214 ; this clear high 32 bits of r8, which can be garbage in both r8 and rdx
/macosx-10.10.1/CPANInternal-159.1/Class-Std-0.011/lib/Class/
H A DStd.pm932 never need to write a C<DESTROY()> method; Perl's built-in garbage
944 garbage collected, the only storage that is reclaimed is the single
/macosx-10.10.1/CPANInternal-159.1/JSON-PP-2.27203/lib/JSON/
H A DPP.pm708 decode_error("garbage after JSON object");
2274 when there is trailing garbage after the first JSON object, it will
/macosx-10.10.1/emacs-93/emacs/lisp/play/
H A Ddunnet.el1865 down from here. There is a garbage disposal here."
2149 (disposal . -26) (garbage . -26)
/macosx-10.10.1/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm.mli328 the context [context]. Modules are not garbage collected; it is mandatory
1369 (** [gc f] returns [Some name] if the function [f] has a garbage
/macosx-10.10.1/cxxfilt-11/cxxfilt/
H A Dconfigure45 --enable-objc-gc enable the use of Boehm's garbage collector with
2697 # Check for Boehm's garbage collector
2703 { echo "configure: error: Boehm's garbage collector was requested yet not supported in this configuration" 1>&2; exit 1; }
2709 # Make sure we only build Boehm's garbage collector if required.
/macosx-10.10.1/CPANInternal-159.1/JSON-XS-3.01/
H A DXS.pm684 when there is trailing garbage after the first JSON object, it will

Completed in 225 milliseconds