Home
last modified time | relevance | path

Searched refs:mp (Results 1 – 10 of 10) sorted by relevance

/busybox-1.35.0/util-linux/
Dmount.c489 static void FAST_FUNC update_mtab_entry_on_move(const struct mntent *mp) in update_mtab_entry_on_move() argument
518 if (strcmp(entries[i].mnt_dir, mp->mnt_fsname) != 0) in update_mtab_entry_on_move()
521 addmntent(mountTable, mp); in update_mtab_entry_on_move()
702 static int mount_it_now(struct mntent *mp, unsigned long vfsflags, char *filteropts) in mount_it_now() argument
711 mp->mnt_fsname, mp->mnt_dir, mp->mnt_type, in mount_it_now()
719 rc = verbose_mount(mp->mnt_fsname, mp->mnt_dir, mp->mnt_type, in mount_it_now()
726 if (HELPERS_ALLOWED && mp->mnt_type) { in mount_it_now()
729 args[0] = xasprintf("mount.%s", mp->mnt_type); in mount_it_now()
735 args[rc++] = mp->mnt_fsname; in mount_it_now()
736 args[rc++] = mp->mnt_dir; in mount_it_now()
[all …]
Dfstrim.c44 char *arg_o, *arg_l, *arg_m, *mp; in fstrim_main() local
80 mp = argv[optind]; in fstrim_main()
83 fd = xopen_nonblocking(mp); in fstrim_main()
94 printf("%s: %llu bytes trimmed\n", mp, (unsigned long long)range.len); in fstrim_main()
/busybox-1.35.0/networking/
Dtls_pstm_montgomery_reduce.c63 mu = c[x] * mp
123 mu = c[x] * mp
247 mu = c[x] * mp
308 mu = c[x] * mp
347 mu = c[x] * mp
368 pstm_digit mp, pstm_digit *paD, uint32 paDlen) in pstm_montgomery_reduce() argument
Dtls_pstm.h254 #define pstm_montgomery_reduce(pool, a, m, mp, paD, paDlen) \ argument
255 pstm_montgomery_reduce( a, m, mp, paD, paDlen)
257 pstm_digit mp, pstm_digit *paD, uint32 paDlen) FAST_FUNC;
Dping.c879 struct cmsghdr *mp; in ping6() local
889 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) { in ping6()
890 if (mp->cmsg_level == SOL_IPV6 in ping6()
891 && mp->cmsg_type == IPV6_HOPLIMIT in ping6()
896 move_from_unaligned_int(hoplimit, CMSG_DATA(mp)); in ping6()
Dtls_pstm.c1607 pstm_digit buf, mp; in pstm_exptmod() local
1622 if ((err = pstm_montgomery_setup (P, &mp)) != PSTM_OKAY) { in pstm_exptmod()
1678 if ((err = pstm_montgomery_reduce(pool, &M[1 << (winsize - 1)], P, mp, in pstm_exptmod()
1702 if ((err = pstm_montgomery_reduce(pool, &M[x], P, mp, paD, paDlen)) != in pstm_exptmod()
1747 if ((err = pstm_montgomery_reduce(pool, &res, P, mp, paD, paDlen)) in pstm_exptmod()
1765 if ((err = pstm_montgomery_reduce(pool, &res, P, mp, paD, in pstm_exptmod()
1776 if ((err = pstm_montgomery_reduce(pool, &res, P, mp, paD, paDlen)) in pstm_exptmod()
1796 if ((err = pstm_montgomery_reduce(pool, &res, P, mp, paD, paDlen)) in pstm_exptmod()
1809 if ((err = pstm_montgomery_reduce(pool, &res, P, mp, paD, in pstm_exptmod()
1821 if ((err = pstm_montgomery_reduce(pool, &res, P, mp, paD, paDlen)) != in pstm_exptmod()
Dtls_sp_c32.c1012 sp_digit mp = p256_mp_mod; in sp_512to256_mont_reduce_8() local
1017 if (mp != 1) { in sp_512to256_mont_reduce_8()
/busybox-1.35.0/shell/ash_test/ash-glob/
Dglob_dir.tests9 echo *"/z.t"mp
19 echo *"\\/z.t"mp
/busybox-1.35.0/shell/hush_test/hush-glob/
Dglob_dir.tests9 echo *"/z.t"mp
19 echo *"\\/z.t"mp
/busybox-1.35.0/coreutils/
Dstty.c1293 const struct mode_info *mp; in stty_main() local
1301 mp = find_mode(arg+1); in stty_main()
1302 if (mp) { in stty_main()
1303 if (!(mp->flags & REV)) in stty_main()
1345 mp = find_mode(arg); in stty_main()
1346 if (mp) { in stty_main()
1439 const struct mode_info *mp; in stty_main() local
1446 mp = find_mode(arg+1); in stty_main()
1447 if (mp) { in stty_main()
1448 set_mode(mp, 1 /* reversed */, &mode); in stty_main()
[all …]