Home
last modified time | relevance | path

Searched refs:blocks (Results 1 – 15 of 15) sorted by relevance

/xnu-11215/tests/
H A Ddecompression_failure.c25 static vm_address_t *blocks; variable
80 blocks = (vm_address_t *)malloc(sizeof(*blocks) * block_count); in create_corrupted_regions()
83 blocks[i] = (vm_address_t)bufferp; in create_corrupted_regions()
89 dirty_page(blocks[i] + buffer_offset); in create_corrupted_regions()
104 if (try_to_corrupt_page(blocks[i] + buffer_offset)) { in create_corrupted_regions()
140 if (!try_write((volatile uint32_t *)(blocks[i] + buffer_offset))) { in read_blocks()
H A Dstackshot_tests.m1499 …-compressed L3 block entries should always have bit 1 set; assumes L0-L2 blocks will not be used o…
/xnu-11215/tools/lldbmacros/
H A Dmacho.py301 blocks = []
314blocks.append(MapBlock(segname, segment.vmaddr, segment.vmsize, segment.fileoff, segment.filesize,
319blocks.append(MapBlock(section_name, section.addr, section.size, section.offset,
333 for _b in blocks:
339 sorted_blocks = sorted(blocks, key=lambda b: b.vmaddr)
H A Dlog.py127 def blocks(self, head_block=0): member in LogBlocks
131 blocks = self._blocks_range(head_block, self.block_count)
133 blocks = chain(blocks, self._blocks_range(0, head_block))
134 return blocks
140 return (self._log_stream_msg(b.blk_id) for b in self.blocks(head_block) if b.blk)
/xnu-11215/bsd/net/
H A Dflowhash.c187 const u_int32_t *blocks; in net_flowhash_mh3_x86_32() local
193 blocks = (const u_int32_t *)(const void *)(data + nblocks * 4); in net_flowhash_mh3_x86_32()
196 k1 = getblock32(blocks, i); in net_flowhash_mh3_x86_32()
246 const u_int64_t *blocks; in net_flowhash_mh3_x64_128() local
253 blocks = (const u_int64_t *)(const void *)data; in net_flowhash_mh3_x64_128()
256 k1 = getblock64(blocks, i * 2 + 0); in net_flowhash_mh3_x64_128()
257 k2 = getblock64(blocks, i * 2 + 1); in net_flowhash_mh3_x64_128()
/xnu-11215/bsd/dev/dtrace/
H A Dblist.c104 blist_create(daddr_t blocks) in blist_create() argument
115 while (radix < blocks) { in blist_create()
122 bl->bl_blocks = blocks; in blist_create()
126 blst_radix_init(NULL, bl->bl_radix, bl->bl_skip, blocks); in blist_create()
139 blst_radix_init(bl->bl_root, bl->bl_radix, bl->bl_skip, blocks); in blist_create()
H A Dblist.h97 extern blist_t blist_create(daddr_t blocks);
/xnu-11215/bsd/miscfs/bindfs/
H A Dbind_vfsops.c120 uint64_t blocks = 4711 * 4711; in bindfs_mount() local
243 blocks = vfa.f_blocks; in bindfs_mount()
272 sp->f_blocks = blocks; in bindfs_mount()
/xnu-11215/bsd/miscfs/nullfs/
H A Dnull_vfsops.c122 uint64_t blocks = 4711 * 4711; in nullfs_mount() local
261 blocks = vfa.f_blocks; in nullfs_mount()
290 sp->f_blocks = blocks; in nullfs_mount()
/xnu-11215/iokit/DriverKit/
H A DIODispatchQueue.iig65 * IODispatchQueue provides a queue for ordered execution of blocks.
68 * All blocks submitted to dispatch queues are dequeued in FIFO order.
144 … * concurrently with other blocks executed with DispatchConcurrent. The queue will be
/xnu-11215/osfmk/vm/
H A Dlz4.h44 #pragma mark - Building blocks
/xnu-11215/doc/vm/
H A Dmemorystatus.md173 …_snapshot` in `bsd/kern/kern_memorystatus.c` which is called right before the jetsam thread blocks.
185 …_notify`). To avoid unnecessary corpse forking and purging, memorystatus blocks all additional cor…
H A Dsanitize.md237 contain the basic blocks that could be chained to meet your specific
/xnu-11215/doc/building/
H A Dxnu_build_consolidation.md63 This has led in the past to a number of nested, conditionally-compiled blocks of code that are not …
/xnu-11215/doc/debugging/
H A Ddebugging.md36 In case you're planning on accessing large contiguous blocks of memory (e.g. reading a whole 10KB o…