Home
last modified time | relevance | path

Searched refs:nsl (Results 1 – 3 of 3) sorted by relevance

/linux-6.15/drivers/net/dsa/hirschmann/
H A Dhellcreek_ptp.c33 u16 nsl, nsh; in hellcreek_ptp_clock_read() local
50 nsl = hellcreek_ptp_read(hellcreek, PR_SS_SYNC_DATA_C); in hellcreek_ptp_clock_read()
53 return (u64)nsl | ((u64)nsh << 16); in hellcreek_ptp_clock_read()
108 u16 secl, nsh, nsl; in hellcreek_ptp_settime() local
112 nsl = ts->tv_nsec & 0xffff; in hellcreek_ptp_settime()
125 hellcreek_ptp_write(hellcreek, nsl, PR_CLOCK_WRITE_C); in hellcreek_ptp_settime()
H A Dhellcreek_hwtstamp.c202 u16 nsl, nsh; in hellcreek_ptp_hwtstamp_read() local
208 nsl = hellcreek_ptp_read(hellcreek, ts_reg); in hellcreek_ptp_hwtstamp_read()
210 return (u64)nsl | ((u64)nsh << 16); in hellcreek_ptp_hwtstamp_read()
/linux-6.15/net/ceph/
H A Dosdmap.c2409 int nsl = oloc->pool_ns->len; in __ceph_object_locator_to_pg() local
2410 size_t total = nsl + 1 + oid->name_len; in __ceph_object_locator_to_pg()
2414 memcpy(buf, oloc->pool_ns->str, nsl); in __ceph_object_locator_to_pg()
2415 buf[nsl] = '\037'; in __ceph_object_locator_to_pg()
2416 memcpy(buf + nsl + 1, oid->name, oid->name_len); in __ceph_object_locator_to_pg()
2422 oid->name, nsl, oloc->pool_ns->str, in __ceph_object_locator_to_pg()