Searched refs:blk (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Dblist.c132 static daddr_t blst_leaf_alloc(blmeta_t *scan, daddr_t blk, int count);
133 static daddr_t blst_meta_alloc(blmeta_t *scan, daddr_t blk,
137 daddr_t radix, int skip, daddr_t blk);
138 static void blst_copy(blmeta_t *scan, daddr_t blk, daddr_t radix,
143 static void blst_radix_print(blmeta_t *scan, daddr_t blk,
222 daddr_t blk = SWAPBLK_NONE; local
226 blk = blst_leaf_alloc(bl->bl_root, 0, count);
228 blk = blst_meta_alloc(bl->bl_root, 0, count,
230 if (blk != SWAPBLK_NONE)
233 return(blk);
318 blst_leaf_alloc(blmeta_t *scan, daddr_t blk, int count) argument
395 blst_meta_alloc(blmeta_t *scan, daddr_t blk, daddr_t count, daddr_t radix, int skip) argument
477 blst_leaf_free(blmeta_t *scan, daddr_t blk, int count) argument
518 blst_meta_free(blmeta_t *scan, daddr_t freeBlk, daddr_t count, daddr_t radix, int skip, daddr_t blk) argument
606 blst_copy(blmeta_t *scan, daddr_t blk, daddr_t radix, daddr_t skip, blist_t dest, daddr_t count) argument
775 blst_radix_print(blmeta_t *scan, daddr_t blk, daddr_t radix, int skip, int tab) argument
897 daddr_t blk = blist_alloc(bl, count); local
[all...]
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_lockf.c1272 struct lockf *lf, *blk; local
1291 TAILQ_FOREACH(blk, &lf->lf_blkhd, lf_block) {
1292 printf("\n\t\tlock request %p for ", (void *)blk);
1293 if (blk->lf_flags & F_POSIX)
1295 (long)((struct proc *)blk->lf_id)->p_pid);
1297 printf("id %p", (void *)blk->lf_id);
1299 blk->lf_type == F_RDLCK ? "shared" :
1300 blk->lf_type == F_WRLCK ? "exclusive" :
1301 blk->lf_type == F_UNLCK ? "unlock" :
1302 "unknown", (intmax_t)blk
[all...]
/darwin-on-arm/xnu/bsd/dev/random/YarrowCoreLib/src/
H A Dsha1mod.c49 /* blk0() and blk() perform the initial expand. */
57 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \ macro
62 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
63 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
64 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
65 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_btreeio.c556 daddr64_t blk; local
559 blk = offset / blksize;
563 bp = buf_getblk(vp, blk, blksize, 0, 0, BLK_META);
585 if ((blk % 32) == 0)
591 if ((blk % 32) == 0)
597 ++blk;
H A Dhfs_vfsutils.c2597 u_int32_t blk; local
2766 blk = zonesize / vcb->blockSize;
2770 hfsmp->hfs_metazone_end = blk - 1;
2773 hfsmp->hfs_hotfile_start = blk - (filesize / vcb->blockSize);
H A Dhfs_readwrite.c4784 daddr64_t blk; local
4808 for (i = 0, blk = blkno; (i < breadcnt) && (blk < last_blk); ++i, ++blk) {
4809 error = (int)buf_meta_bread(vp, blk, iosize, cred, &bp);
4834 printf("hfs_clonesysfile: getblk failed on blk %qd\n", start_blk + blkno);

Completed in 242 milliseconds