Searched refs:ls (Results 1 – 13 of 13) sorted by relevance
| /xnu-10002.81.5/bsd/kern/ |
| H A D | subr_log_stream.c | 229 log_stream_block(const log_stream_t *ls, uint64_t block_seq) in log_stream_block() argument 231 return block_seq % ls->ls_blk_count; in log_stream_block() 235 log_stream_offset(const log_stream_t *ls, uint64_t block_seq) in log_stream_offset() argument 237 return blocks_size(log_stream_block(ls, block_seq)); in log_stream_offset() 241 log_stream_bytes(const log_stream_t *ls, size_t pos) in log_stream_bytes() argument 243 assert(pos >= ls->ls_commited_wraps); in log_stream_bytes() 244 return pos - ls->ls_commited_wraps; in log_stream_bytes() 248 log_stream_written(const log_stream_t *ls, size_t pos) in log_stream_written() argument 250 assert(log_stream_bytes(ls, ls->ls_commited.v) >= pos); in log_stream_written() 251 return log_stream_bytes(ls, ls->ls_commited.v) - pos; in log_stream_written() [all …]
|
| /xnu-10002.81.5/tools/lldbmacros/ |
| H A D | log.py | 400 def show_log_stream(pp, ls, read_pos): argument 405 if not ls: 409 commited, logged_bytes = ls.logged 410 pp.kvprint("Address", "{:#0x}", ls.address) 411 pp.kvprint("State", "{:s}", "Enabled" if ls.enabled else "Disabled") 413 ls.block_size(ls.block_count), ls.block_count) 414 pp.kvprint("Reserved", "{:d}", ls.reserved) 417 block, offset = ls.block_position(commited) 421 block, offset = ls.block_position(read_pos)
|
| /xnu-10002.81.5/osfmk/arm64/ |
| H A D | bzero.s | 78 b.ls 1f // directly to the cleanup pass. 125 b.ls 1f // directly to the cleanup store.
|
| H A D | WKdmDecompress_16k.s | 235 b.ls 1f // if QPOS_AREA_END <= QPOS_AREA_START, skip L_WK_unpack_4bits 240 b.ls 2f // do loop of 2 only if w14 >= 5 273 b.ls 1f // if START>=END, skip L_WK_unpack_3_tenbits 361 b.ls L_done // if next_tag >= tag_area_end, we're done
|
| H A D | WKdmDecompress_4k.s | 235 b.ls 1f // if QPOS_AREA_END <= QPOS_AREA_START, skip L_WK_unpack_4bits 240 b.ls 2f // do loop of 2 only if w14 >= 5 273 b.ls 1f // if START>=END, skip L_WK_unpack_3_tenbits 361 b.ls L_done // if next_tag >= tag_area_end, we're done
|
| H A D | bcopy.s | 143 b.ls L_forwardCleanup 254 b.ls L_reverseCleanup
|
| H A D | lz4_decode_arm64.s | 157 b.ls L_copy_short_literal // 96% likely: n_literals in 0..14 214 b.ls L_copy_short_match_small_distance
|
| H A D | memcmp_zero.s | 93 b.ls L_cleanup
|
| H A D | strncmp.s | 120 b.ls L_naiveVector
|
| H A D | WKdmCompress_16k.s | 384 b.ls 2f // if (next_qp >= endQPosArray) skip the following zero paddings 400 b.ls L20 // if (endQPosArray <= tempQPosArray) skip the following
|
| H A D | WKdmCompress_4k.s | 382 b.ls 2f // if (next_qp >= endQPosArray) skip the following zero paddings 398 b.ls L20 // if (endQPosArray <= tempQPosArray) skip the following
|
| H A D | caches_asm.s | 168 b.ls 1b // next level
|
| /xnu-10002.81.5/bsd/vfs/ |
| H A D | vfs_cluster.c | 7555 int index, i, fs, ls; in vfs_drt_get_cluster() local 7585 for (ls = 0; i < DRT_BITVECTOR_PAGES; i++, ls++) { in vfs_drt_get_cluster() 7593 length = ls * PAGE_SIZE; in vfs_drt_get_cluster()
|