| /src/external/lgpl3/gmp/dist/mpz/ |
| realloc.c | 6 This file is part of the GNU MP Library. 8 The GNU MP Library is free software; you can redistribute it and/or modify 23 The GNU MP Library is distributed in the hope that it will be useful, but 29 GNU Lesser General Public License along with the GNU MP Library. If not, 39 mp_ptr mp; local 63 mp = __GMP_ALLOCATE_FUNC_LIMBS (new_alloc); 67 mp = __GMP_REALLOCATE_FUNC_LIMBS (PTR (m), ALLOC (m), new_alloc); 75 PTR (m) = mp; 77 return (void *) mp;
|
| /src/tools/compat/ |
| getmode.c | 39 mode_t *mp = malloc(sizeof(mode_t)); local 41 *mp = strtoul(str, NULL, 8); 43 return mp; 47 getmode(const void *mp, mode_t mode) 51 m = *((const mode_t *)mp);
|
| /src/external/bsd/openldap/dist/servers/slapd/back-monitor/ |
| operational.c | 63 monitor_entry_t *mp; local 65 mp = ( monitor_entry_t * )rs->sr_entry->e_private; 67 assert( mp != NULL ); 69 hs = MONITOR_HAS_CHILDREN( mp );
|
| listener.c | 44 monitor_entry_t *mp; local 114 mp = monitor_entrypriv_create(); 115 if ( mp == NULL ) { 118 e->e_private = ( void * )mp; 119 mp->mp_info = ms; 120 mp->mp_flags = ms->mss_flags
|
| /src/external/ibm-public/postfix/dist/src/tls/ |
| tls_proxy_client_misc.c | 100 VSTREAM *mp; local 102 if ((mp = vstream_memopen(buf, O_WRONLY)) == 0 103 || print_fn(mp, ATTR_FLAG_NONE, 107 || vstream_fclose(mp) != 0) 119 VSTREAM *mp; local 121 if ((mp = vstream_memopen(buf, O_WRONLY)) == 0 122 || print_fn(mp, ATTR_FLAG_NONE, 126 || vstream_fclose(mp) != 0)
|
| /src/external/bsd/am-utils/dist/amd/ |
| amfs_union.c | 111 am_node *mp; local 119 for (mp = get_first_exported_ap(&index); 120 mp; 121 mp = get_next_exported_ap(&index)) { 122 if (mp->am_al->al_mnt == mf) { 124 (void) mapc_keyiter((mnt_map *) mp->am_al->al_mnt->mf_private, 126 mp);
|
| /src/external/bsd/am-utils/dist/conf/umount/ |
| umount_aix.c | 56 mntlist *mlist, *mp, *mp_save = NULL; local 59 mp = mlist = read_mtab(mntdir, mnttabname); 65 while (mp) { 66 if (STREQ(mp->mnt->mnt_dir, mntdir)) 67 mp_save = mp; 68 mp = mp->mnext; 135 mp = mlist = read_mtab(mntdir, mnttabname); 142 while (mp) { 143 if (STREQ(mp->mnt->mnt_dir, mntdir) [all...] |
| umount_default.c | 56 mntlist *mlist, *mp, *mp_save = NULL; local 59 mp = mlist = read_mtab(mntdir, mnttabname); 65 while (mp) { 66 if (STREQ(mp->mnt->mnt_dir, mntdir)) 67 mp_save = mp; 68 mp = mp->mnext; 135 mp = mlist = read_mtab(mntdir, mnttabname); 142 while (mp) { 143 if (STREQ(mp->mnt->mnt_dir, mntdir) [all...] |
| /src/games/backgammon/teachgammon/ |
| tutor.h | 40 int mp[4]; member in struct:situatn
|
| /src/sbin/mount_fdesc/ |
| mount_fdesc.c | 120 mntoptparse_t mp; local 126 mp = getmntopts(optarg, mopts, mntflags, 0); 127 if (mp == NULL) 129 freemntopts(mp);
|
| /src/sbin/mount_kernfs/ |
| mount_kernfs.c | 120 mntoptparse_t mp; local 126 mp = getmntopts(optarg, mopts, mntflags, 0); 127 if (mp == NULL) 129 freemntopts(mp);
|
| /src/sbin/mount_null/ |
| mount_null.c | 86 mntoptparse_t mp; local 92 mp = getmntopts(optarg, mopts, &mntflags, 0); 93 if (mp == NULL) 95 freemntopts(mp);
|
| /src/sbin/mount_overlay/ |
| mount_overlay.c | 86 mntoptparse_t mp; local 92 mp = getmntopts(optarg, mopts, &mntflags, 0); 93 if (mp == NULL) 95 freemntopts(mp);
|
| /src/sys/compat/common/ |
| compat_util.c | 109 struct mount *mp; local 111 mp = vp->v_mount; 114 msg, mp->mnt_stat.f_mntonname, mp->mnt_stat.f_mntfromname);
|
| /src/external/bsd/am-utils/dist/fsinfo/ |
| wr_exportfs.c | 53 fsi_mount *mp; local 55 ITER(mp, fsi_mount, q) { 56 if (mp->m_mask & (1 << DM_EXPORTFS)) 57 fprintf(ef, "%s\t%s\n", mp->m_volname, mp->m_exportfs); 58 if (mp->m_mount) 59 errors += write_export_info(ef, mp->m_mount, 0);
|
| /src/external/bsd/libarchive/dist/libarchive/test/ |
| test_write_disk_lookup.c | 30 int *mp = d; local 31 assertEqualInt(*mp, 0x13579); 32 *mp = 0x2468; 38 int *mp = d; local 42 assertEqualInt(*mp, 0x13579); 51 int *mp = d; local 52 assertEqualInt(*mp, 0x1234); 53 *mp = 0x2345; 59 int *mp = d; local 63 assertEqualInt(*mp, 0x1234) [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| msgl-english.c | 43 message_ty *mp = mlp->item[j]; local 45 if (mp->msgid_plural == NULL) 47 if (mp->msgstr_len == 1 && mp->msgstr[0] == '\0') 49 mp->msgstr = mp->msgid; /* no need for xstrdup */ 50 mp->msgstr_len = strlen (mp->msgid) + 1; 55 if (mp->msgstr_len == 2 56 && mp->msgstr[0] == '\0' && mp->msgstr[1] == '\0' [all...] |
| /src/external/ibm-public/postfix/dist/src/local/ |
| file.c | 88 MBOX *mp; local 163 mp = mbox_open(path, O_APPEND | O_CREAT | O_WRONLY, 167 if (mp != 0) { 169 vstream_fclose(mp->fp); 172 mail_copy_status = mail_copy(COPY_ATTR(state.msg_attr), mp->fp, 177 mbox_release(mp);
|
| /src/sbin/mount_ados/ |
| mount_ados.c | 83 mntoptparse_t mp; local 105 mp = getmntopts(optarg, mopts, &mntflags, 0); 106 if (mp == NULL) 108 freemntopts(mp);
|
| /src/sbin/mount_autofs/ |
| mount_autofs.c | 74 mntoptparse_t mp; local 84 mp = getmntopts(optarg, mopts, mntflags, 0); 85 if (mp == NULL) 87 freemntopts(mp);
|
| /src/sbin/mount_chfs/ |
| mount_chfs.c | 73 mntoptparse_t mp; local 85 mp = getmntopts(optarg, mopts, mntflags, 0); 86 if (mp == NULL) 88 freemntopts(mp);
|
| /src/sbin/mount_efs/ |
| mount_efs.c | 60 mntoptparse_t mp; local 68 mp = getmntopts(optarg, mopts, mntflags, NULL); 69 if (mp == NULL) 71 freemntopts(mp);
|
| /src/sbin/mount_ext2fs/ |
| mount_ext2fs.c | 95 mntoptparse_t mp; local 103 mp = getmntopts(optarg, mopts, mntflags, 0); 104 if (mp == NULL) 106 freemntopts(mp);
|
| /src/sbin/mount_ffs/ |
| mount_ffs.c | 100 mntoptparse_t mp; local 108 mp = getmntopts(optarg, mopts, mntflags, 0); 109 if (mp == NULL) 111 freemntopts(mp);
|
| /src/sbin/mount_filecore/ |
| mount_filecore.c | 123 mntoptparse_t mp; local 153 mp = getmntopts(optarg, mopts, &mntflags, 0); 154 if (mp == NULL) 156 freemntopts(mp);
|