Searched refs:xs (Results 1 – 3 of 3) sorted by relevance
/busybox-1.35.0/util-linux/volume_id/ |
D | xfs.c | 47 struct xfs_super_block *xs; in volume_id_probe_xfs() local 51 xs = volume_id_get_buffer(id, off, 0x200); in volume_id_probe_xfs() 52 if (xs == NULL) in volume_id_probe_xfs() 55 if (memcmp(xs->magic, "XFSB", 4) != 0) in volume_id_probe_xfs() 59 volume_id_set_label_string(id, xs->fname, 12); in volume_id_probe_xfs() 60 volume_id_set_uuid(id, xs->uuid, UUID_DCE); in volume_id_probe_xfs()
|
D | sysv.c | 95 struct xenix_super *xs; in volume_id_probe_sysv() local 114 xs = volume_id_get_buffer(id, off + (boff + XENIX_SUPERBLOCK_BLOCK), 0x200); in volume_id_probe_sysv() 115 if (xs == NULL) in volume_id_probe_sysv() 118 if (xs->s_magic == cpu_to_le32(XENIX_MAGIC) || xs->s_magic == cpu_to_be32(XENIX_MAGIC)) { in volume_id_probe_sysv() 120 volume_id_set_label_string(id, xs->s_fname, 6); in volume_id_probe_sysv()
|
/busybox-1.35.0/scripts/ |
D | checkstack.pl | 41 my (@stack, $re, $dre, $x, $xs, $funcre); 50 $xs = "[0-9a-f ]"; # hex character or space 143 next if $line !~ m/^($xs*)/; 161 next if $line !~ m/^($xs*)/;
|