Home | History | Annotate | Download | only in lfs

Lines Matching defs:firstblock

758 	void *firstblock;
760 firstblock = (char *)fip + FINFOSIZE(fs);
763 return ((int64_t *)firstblock)[idx];
765 return ((int32_t *)firstblock)[idx];
772 void *firstblock;
774 firstblock = (char *)fip + FINFOSIZE(fs);
777 ((int64_t *)firstblock)[idx] = blk;
779 ((int32_t *)firstblock)[idx] = blk;
1419 void *firstblock;
1421 firstblock = (char *)fip + FINFOSIZE(fs);
1423 bp->b64 = (int64_t *)firstblock;
1425 bp->b32 = (int32_t *)firstblock;