Searched refs:block_address (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/libauto-186/
H A DAdmin.h242 // Allocates a block of the same size and layout of the block identified by (subzone, q, block_address), at a lower heap address.
243 // If no lower block can be found, returns block_address.
245 void *allocate_lower_block_no_lock(Subzone *subzone, usword_t q, void *block_address);
250 // Allocates a block of the same size and layout of the block identified by (subzone, q, block_address), at a different heap address.
251 // If no other block can be found, returns block_address. Used by AUTO_COMPACTION_SCRAMBLE mode.
253 void *allocate_different_block_no_lock(Subzone *subzone, usword_t q, void *block_address);
259 // Allocates a block of the same size and layout of the block identified by (subzone, q, block_address), at a different heap address.
262 void *allocate_destination_block_no_lock(Subzone *subzone, usword_t q, void *block_address);
H A DAdmin.cpp792 // Allocates a block of the same size and layout of the block identified by (subzone, q, block_address), at a lower heap address.
793 // If no lower block can be found, returns block_address.
795 void *Admin::allocate_lower_block_no_lock(Subzone *subzone, usword_t q, void *block_address) {
805 if (node == NULL || node->address() > block_address) {
806 return block_address;
835 // Allocates a block of the same size and layout of the block identified by (subzone, q, block_address), at a different heap address.
836 // If no other block can be found, returns block_address. Used by AUTO_COMPACTION_SCRAMBLE mode.
838 void *Admin::allocate_different_block_no_lock(Subzone *subzone, usword_t q, void *block_address) { argument
856 return block_address;
862 // Allocates a block of the same size and layout of the block identified by (subzone, q, block_address), a
865 allocate_destination_block_no_lock(Subzone *subzone, usword_t q, void *block_address) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm.ml497 external block_address : llvalue -> llbasicblock -> llvalue = "LLVMBlockAddress"
H A Dllvm.mli1108 (** [block_address f bb] returns the address of the basic block [bb] in the
1110 val block_address : llvalue -> llbasicblock -> llvalue var

Completed in 114 milliseconds