Searched refs:block (Results 176 - 200 of 1057) sorted by relevance

1234567891011>>

/macosx-10.10.1/libauto-186/
H A DThread.cpp62 while (void *block = list.pop()->address()) {
63 // mark the thread local block as global so that it can be collected
64 assert(_zone->in_subzone_memory(block));
65 Subzone *subzone = Subzone::subzone(block);
66 subzone->admin()->mark_allocated(block, i, AUTO_MEMORY_UNSCANNED, false, false);
79 void *block = _localAllocations[i]; local
80 if (block) {
81 Subzone *subzone = Subzone::subzone(block);
82 subzone->make_global(subzone->quantum_index_unchecked(block));
156 void Thread::enliven_block(void *block) { argument
174 void *block = _localAllocations[i]; local
205 block_escaped(void *block) argument
221 block_escaped_internal(BlockRef block) argument
266 block_escaped_internal(LargeBlockRef block) argument
326 thread_cache_add(void *block, Subzone *subzone, usword_t q) argument
[all...]
H A DZone.cpp168 // initialize large block tracking bit map
173 // initialize arena of large block & region tracking bit map
408 // Allocates a large block from the universal pool (directly from vm_memory.)
419 // to be updated in order to repend the block during enlivening.
441 // <rdar://problem/6150518> explicitly clear only in 64-bit, if requested, or the block is scanned.
463 // Release memory allocated for a large block.
465 void Zone::deallocate_large(Large *large, void *block) { argument
467 deallocate_large_internal(large, block);
470 void Zone::deallocate_large_internal(Large *large, void *block) { argument
475 _in_large.clear_bit(Large::quantum_index(block));
536 clear_block(void *block, const size_t size) argument
565 void *block; local
674 block_deallocate(SubzoneBlockRef block) argument
706 block_deallocate(LargeBlockRef block) argument
775 block_layout(void *block) argument
796 block_set_layout(void *block, const usword_t layout) argument
815 set_associative_ref(void *block, void *key, void *value) argument
853 get_associative_ref(void *block, void *key) argument
869 get_associative_hash(void *block) argument
893 erase_associations_internal(void *block) argument
914 erase_associations(void *block) argument
1464 handle_overretained_garbage(void *block, int rc, auto_memory_type_t layout) argument
1503 void *block = subzone_garbage[index]; local
1527 void *block = large_garbage[index]; local
1932 void *block = subzone->quantum_address(q); local
1968 print_block(BlockRef block, const char *tag) argument
[all...]
H A DBlockIterator.h229 // BlockRef FIXME: block visitors should hand out BlockRefs
263 void *block = i->first; local
267 if (!visitor(zone, block, pair.first, pair.second)) return false;
290 // Applies an operation to a block, calling the appropriate operator() according
291 // to the kind of block small/medium vs. large.
294 template <class BlockDo> void blockDo(Zone *zone, void *block, BlockDo &op) { argument
295 if (zone->in_subzone_memory(block)) {
296 Subzone *subzone = Subzone::subzone(block);
298 if (subzone->block_is_start(block, &q)) op(subzone, q);
299 } else if (zone->block_is_start_large(block)) {
304 blockDo(Zone *zone, void *block, void (^subzoneDo) (Subzone *subzone, usword_t q), void (^largeDo) (Large *large), void (^elseDo) (void *block) = NULL) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGOSREntrypointCreationPhase.cpp63 BasicBlock* block = m_graph.block(blockIndex); local
64 if (!block)
67 Node* firstNode = block->at(0);
69 firstNode = block->at(++nodeIndex);
72 target = block;
86 // We say that the execution count of the entry block is 1, because we know for sure
H A DDFGLICMPhase.cpp81 BasicBlock* block = m_graph.block(blockIndex); local
82 if (!block)
88 if (!block->cfaHasVisited)
91 const NaturalLoop* loop = m_graph.m_naturalLoops.innerMostLoopOf(block);
95 for (unsigned nodeIndex = 0; nodeIndex < block->size(); ++nodeIndex) {
96 Node* node = block->at(nodeIndex);
161 BasicBlock* block = depthFirst[depthFirstIndex]; local
162 const NaturalLoop* loop = m_graph.m_naturalLoops.innerMostLoopOf(block);
178 "Attempting to hoist out of block ", *bloc
[all...]
H A DDFGArgumentsSimplificationPhase.cpp142 BasicBlock* block = m_graph.block(blockIndex); local
143 if (!block)
145 for (unsigned indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
146 Node* node = block->at(indexInBlock);
164 BasicBlock* block = m_graph.block(blockIndex); local
165 if (!block)
167 for (unsigned indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
168 Node* node = block
355 BasicBlock* block = m_graph.block(blockIndex); local
384 BasicBlock* block = m_graph.block(blockIndex); local
586 BasicBlock* block = m_graph.block(blockIndex); local
610 BasicBlock* block = m_graph.block(blockIndex); local
[all...]
H A DDFGStoreBarrierElisionPhase.cpp52 m_currentBlock = m_graph.block(blockIndex);
130 bool handleBlock(BasicBlock* block) argument
133 for (unsigned indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
135 Node* node = block->at(indexInBlock);
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dsymbol.cpp31 char *symbol::block = 0; member in class:symbol
138 if (block == 0 || block_size < len) {
140 block = new char [block_size];
142 (void)strcpy(block, p);
143 s = *pp = block;
144 block += len;
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dparent.rb40 def each(&block)
41 @children.each(&block)
44 def delete_if( &block )
45 @children.delete_if(&block)
52 def each_index( &block )
53 @children.each_index(&block)
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dset.rb71 # If a block is given, the elements of enum are preprocessed by the
72 # given block.
73 def initialize(enum = nil, &block) # :yields: o
78 if block
79 do_with_enum(enum) { |o| add(block[o]) }
85 def do_with_enum(enum, &block) # :nodoc:
87 enum.each_entry(&block)
89 enum.each(&block)
227 # Calls the given block once for each element in the set, passing
228 # the element as parameter. Returns an enumerator if no block i
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/
H A Drs_ecc.c4 * Implements and registers error correction with Reed-Solomon (255,249,7) block code.
37 * (always at end of block) */
131 unsigned char block [MSG_LEN]; member in struct:_EncoderControl_
143 unsigned char block [CODE_LEN]; member in struct:_DecoderControl_
188 * Allocate and initialize the control block of a
196 * An opaque reference to the control block.
217 memset (c->block, '\0', MSG_LEN);
230 * Destroy the control block of an encoder.
285 c->block [c->charCount] = character;
291 c->block [MSG_LE
[all...]
/macosx-10.10.1/CPANInternal-159.1/Class-C3-XS-0.13/t/
H A D34_next_method_in_eval.t12 This tests the use of an eval{} block to wrap a next::method call.
/macosx-10.10.1/llvmCore-3425.0.34/utils/
H A Dprofile.pl11 # -block - Enable basicblock profiling
32 if (/^-?-block$/) { $ProfilePass = "-insert-block-profiling"; next; }
46 print " -block - Enable basicblock profiling\n";
/macosx-10.10.1/ruby-106/ruby/ext/psych/lib/psych/nodes/
H A Dnode.rb23 # Iterate over each node in the tree. Yields each node to +block+ depth
25 def each &block
27 Visitors::DepthFirst.new(block).accept self
/macosx-10.10.1/ruby-106/ruby/lib/rss/
H A Dmaker.rb26 # Executes the +block+ to populate elements of the created RSS object
27 def make(version, &block)
28 self[version].make(&block)
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Ddeprecate.rb53 define_method name do |*args, &block| # TODO: really works on 1.8.7?
62 send old, *args, &block
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/bmp/
H A Dbmp.c319 Tk_PhotoImageBlock block; local
362 block.pixelSize = 3;
363 block.pitch = width * 3;
364 block.width = width;
365 block.height = 1;
366 block.offset[0] = 2;
367 block.offset[1] = 1;
368 block.offset[2] = 0;
369 block.offset[3] = block
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DBytecodeBasicBlock.h54 void addPredecessor(BytecodeBasicBlock* block) { m_predecessors.append(block); } argument
55 void addSuccessor(BytecodeBasicBlock* block) { m_successors.append(block); } argument
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DIncrementalSweeper.cpp95 MarkedBlock* block = m_blocksToSweep[m_currentBlockToSweepIndex++]; local
97 if (!block->needsSweeping())
100 block->sweep();
101 m_vm->heap.objectSpace().freeOrShrinkBlock(block);
/macosx-10.10.1/configd-699.1.5/SystemConfiguration.fproj/
H A Dscprefs_observer.h52 @param block the block to be called back on.
57 dispatch_queue_t queue, dispatch_block_t block);
/macosx-10.10.1/libdispatch-442.1.4/private/
H A Dbenchmark.h41 * Count the average number of cycles a given block takes to execute.
44 * The number of times to serially execute the given block.
46 * @param block
47 * The block to execute.
50 * The approximate number of cycles the block takes to execute.
74 dispatch_benchmark(size_t count, void (^block)(void));
/macosx-10.10.1/ruby-106/ruby/tool/
H A Dvpath.rb27 def process(*args, &block)
28 search(File.method(__callee__), *args, &block)
51 def foreach(file, *args, &block)
52 open(file) {|f| f.each(*args, &block)}
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/haval/
H A Dhaval.h24 * - a 32-word block, and
50 haval_word block[32]; /* buffer for a 32-word block */ member in struct:__anon13089
61 void haval_hash_block _ANSI_ARGS_((haval_state *)); /* hash a 32-word block */
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/haval.1996/
H A Dhaval.h25 * - a 32-word block, and
58 haval_word block[32]; /* buffer for a 32-word block */ member in struct:__anon13090
70 void haval_hash_block _ANSI_ARGS_((haval_state *)); /* hash a 32-word block */
/macosx-10.10.1/libpcap-48/libpcap/
H A Dpcap-darwin.c483 pcap_ng_dump_proc_info(pcap_t *pcap, pcap_dumper_t *dumper, pcapng_block_t block, argument
491 * Add a process info block if needed
505 * We're done when the process info block has already been saved
522 retval = pcap_ng_block_reset(block, PCAPNG_BT_PIB);
528 pib = pcap_ng_get_process_information_fields(block);
531 if (pcap_ng_block_add_option_with_string(block, PCAPNG_PIB_NAME, tmp_pi->proc_name) != 0) {
538 pcap_ng_dump_block(dumper, block);
547 pcap_ng_dump_if_info(pcap_t *pcap, pcap_dumper_t *dumper, pcapng_block_t block, argument
555 * Add an interface info block for a new interface if needed
570 * We're done when the interface block ha
629 static pcapng_block_t block = NULL; local
[all...]

Completed in 228 milliseconds

1234567891011>>