Home
last modified time | relevance | path

Searched refs:un (Results 1 – 25 of 234) sorted by relevance

12345678910

/NextBSD/usr.sbin/pmcstudy/
HDpmcstudy.c482 double un, par, res; in allocstall1() local
487 un = unhalt->vals[pos] * 1.0; in allocstall1()
490 un = unhalt->sum * 1.0; in allocstall1()
492 res = par/un; in allocstall1()
504 double un, par, res; in allocstall2() local
509 un = unhalt->vals[pos] * 1.0; in allocstall2()
512 un = unhalt->sum * 1.0; in allocstall2()
514 res = par/un; in allocstall2()
526 double br, un, con, res; in br_mispredict() local
533 un = unhalt->vals[pos] * 1.0; in br_mispredict()
[all …]
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
HDunique.c82 unique_t *un = kmem_alloc(sizeof (unique_t), KM_SLEEP); in unique_insert() local
84 un->un_value = value; in unique_insert()
87 while (un->un_value == 0 || un->un_value & ~UNIQUE_MASK || in unique_insert()
88 avl_find(&unique_avl, un, &idx)) { in unique_insert()
90 (void) random_get_pseudo_bytes((void*)&un->un_value, in unique_insert()
91 sizeof (un->un_value)); in unique_insert()
92 un->un_value &= UNIQUE_MASK; in unique_insert()
96 avl_insert(&unique_avl, un, idx); in unique_insert()
99 return (un->un_value); in unique_insert()
106 unique_t *un; in unique_remove() local
[all …]
/NextBSD/sys/fs/msdosfs/
HDmsdosfs_conv.c237 dos2unixfn(u_char dn[11], u_char *un, int lower, struct msdosfsmount *pmp) in dos2unixfn() argument
259 *un++ = *c++; in dos2unixfn()
270 *un++ = '.'; in dos2unixfn()
276 *un++ = *c++; in dos2unixfn()
281 *un++ = 0; in dos2unixfn()
298 unix2dosfn(const u_char *un, u_char dn[12], size_t unlen, u_int gen, in unix2dosfn() argument
320 if (un[0] == '.' && unlen == 1) { in unix2dosfn()
324 if (un[0] == '.' && un[1] == '.' && unlen == 2) { in unix2dosfn()
333 for (cp = un, i = unlen; --i >= 0; cp++) in unix2dosfn()
343 for (cp = un, i = unlen; i > 0;) in unix2dosfn()
[all …]
HDdirentry.h149 int dos2unixfn(u_char dn[11], u_char *un, int lower,
151 int unix2dosfn(const u_char *un, u_char dn[12], size_t unlen, u_int gen,
153 int unix2winfn(const u_char *un, size_t unlen, struct winentry *wep, int cnt,
155 int winChkName(struct mbnambuf *nbp, const u_char *un, size_t unlen,
160 int winSlotCnt(const u_char *un, size_t unlen, struct msdosfsmount *pmp);
161 size_t winLenFixup(const u_char *un, size_t unlen);
/NextBSD/tools/regression/sockets/pr_atomic/
HDpr_atomic.c57 struct sockaddr_un un; in main() local
66 memset(&un, 0, sizeof(un)); in main()
67 un.sun_family = AF_LOCAL; in main()
69 strcpy(un.sun_path, socket_path); in main()
70 if (bind(s, (struct sockaddr *)&un, sizeof(un)) == -1) in main()
83 if (sendto(conn, buf, sizeof(buf), 0, (struct sockaddr *)&un, in main()
84 sizeof(un)) != sizeof(buf)) in main()
/NextBSD/contrib/llvm/tools/lldb/source/Host/freebsd/
HDHostInfoFreeBSD.cpp29 struct utsname un; in GetOSVersion() local
31 ::memset(&un, 0, sizeof(utsname)); in GetOSVersion()
32 if (uname(&un) < 0) in GetOSVersion()
35 int status = sscanf(un.release, "%u.%u", &major, &minor); in GetOSVersion()
61 struct utsname un; in GetOSKernelDescription() local
63 ::memset(&un, 0, sizeof(utsname)); in GetOSKernelDescription()
66 if (uname(&un) < 0) in GetOSKernelDescription()
69 s.assign(un.version); in GetOSKernelDescription()
/NextBSD/usr.sbin/lpr/common_source/
HDstartdaemon.c59 struct sockaddr_un un; in startdaemon() local
69 memset(&un, 0, sizeof(un)); in startdaemon()
70 un.sun_family = AF_LOCAL; in startdaemon()
71 strcpy(un.sun_path, _PATH_SOCKETNAME); in startdaemon()
76 connectres = connect(s, (struct sockaddr *)&un, SUN_LEN(&un)); in startdaemon()
/NextBSD/contrib/tcpdump/
HDprint-chdlc.c130 } un; member
163 ipaddr_string(ndo, &slarp->un.addr.addr), in chdlc_slarp_print()
164 ipaddr_string(ndo, &slarp->un.addr.mask))); in chdlc_slarp_print()
168 EXTRACT_32BITS(&slarp->un.keep.myseq), in chdlc_slarp_print()
169 EXTRACT_32BITS(&slarp->un.keep.yourseq), in chdlc_slarp_print()
170 EXTRACT_16BITS(&slarp->un.keep.rel))); in chdlc_slarp_print()
/NextBSD/crypto/heimdal/lib/kadm5/
HDcontext_s.c59 set_socket_name(krb5_context context, struct sockaddr_un *un) in set_socket_name() argument
63 memset(un, 0, sizeof(*un)); in set_socket_name()
64 un->sun_family = AF_UNIX; in set_socket_name()
65 strlcpy (un->sun_path, fn, sizeof(un->sun_path)); in set_socket_name()
/NextBSD/contrib/ntp/lib/isc/
HDnetaddr.c59 if (strcmp(a->type.un, b->type.un) != 0) in isc_netaddr_equal()
147 alen = strlen(netaddr->type.un); in isc_netaddr_totext()
151 (const unsigned char *)(netaddr->type.un), in isc_netaddr_totext()
306 if (strlen(path) > sizeof(netaddr->type.un) - 1) in isc_netaddr_frompath()
311 strlcpy(netaddr->type.un, path, sizeof(netaddr->type.un)); in isc_netaddr_frompath()
354 memcpy(t->type.un, s->type.sunix.sun_path, sizeof(t->type.un)); in isc_netaddr_fromsockaddr()
/NextBSD/contrib/amd/
HDFREEBSD-upgrade47 r1.3 un-mandocafied, un4.4BSD'ed
57 r1.3 un-mandocafied, un4.4BSD'ed
59 r1.3 un-mandocafied, un4.4BSD'ed
71 r1.3 un-mandocafied, un4.4BSD'ed
79 r1.2 un-mandocafied, un4.4BSD'ed
82 r1.2 un-mandocafied, un4.4BSD'ed
93 r1.4 un-mandocafied, un4.4BSD'ed
96 r1.2 un-mandocafied, un4.4BSD'ed
/NextBSD/cddl/contrib/opensolaris/lib/pyzfs/common/
HDallow.py273 un = (sys.argv[1] == "unallow")
284 if un:
317 if un:
321 if len(sys.argv) == 3 and not un:
347 if un and len(args) == expected_len-1:
390 if not un and perms:
395 ds.set_fsacl(un, d)
396 if un and options.recursive:
398 child.set_fsacl(un, d)
/NextBSD/contrib/nvi/catalog/
HDspanish.base29 030 "El archivo %s no es un cat�logo de mensajes"
37 038 "determinar: opci�n %s: %s es un n�mero ilegal"
90 097 "Referencia a un n�mero de l�nea menor que 0"
99 106 "Las abreviaturas deben terminar con un car�cter de \"palabra\" "
108 115 "No hay un comando anterior para reemplazar a \"!\""
117 124 "El comando %s no puede usarse como parte de un comando global o v"
120 127 "%s/%s: sin fuente: puede ser escrito por un usuario que no sea el propietario"
123 130 "%s: sin fuente: puede ser escrito por un usuario que no sea el propietario"
129 136 "Marca de nombres debe ser un s�lo car�cter"
151 158 "No se ingres� un identificador anterior"
[all …]
/NextBSD/usr.bin/vi/catalog/
HDspanish.UTF-8.base29 030 "El archivo %s no es un catálogo de mensajes"
37 038 "determinar: opción %s: %s es un número ilegal"
90 097 "Referencia a un número de línea menor que 0"
99 106 "Las abreviaturas deben terminar con un carácter de \"palabra\" "
108 115 "No hay un comando anterior para reemplazar a \"!\""
117 124 "El comando %s no puede usarse como parte de un comando global o v"
120 127 "%s/%s: sin fuente: puede ser escrito por un usuario que no sea el propietario"
123 130 "%s: sin fuente: puede ser escrito por un usuario que no sea el propietario"
129 136 "Marca de nombres debe ser un sólo carácter"
151 158 "No se ingresó un identificador anterior"
[all …]
HDfrench.UTF-8.base15 016 "L'entrée et la sortie Vi standards doivent être un terminal"
29 030 "Ce fichier %s n'est pas un catalogue de messages"
37 038 "Définition : option %s : %s n'est pas un nombre valide"
90 097 "Référence à un numéro de ligne inférieure à 0"
99 106 "Les abréviations doivent finir par un caractère \"mot\""
101 108 "Les abréviations ne peuvent pas contenir un mélange de caractères mot/non-mot, sauf à la fin"
120 127 "%s/%s : échec de source : peut être écrit par un utilisateur autre que le propriétaire"
123 130 "%s : échec de source : peut être écrit par un utilisateur autre que le propriétaire"
129 136 "Les noms de marque ne doivent avoir qu'un caractère"
166 173 "La commande %s nécessite qu'un fichier ait déjà été lu en mémoire"
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
HDPlatformFreeBSD.cpp594 struct utsname un; in GetStatus() local
598 ::memset(&un, 0, sizeof(utsname)); in GetStatus()
599 if (uname(&un) == -1) in GetStatus()
602 strm << un.sysname << ' ' << un.release; in GetStatus()
603 if (un.nodename[0] != '\0') in GetStatus()
604 strm << " (" << un.nodename << ')'; in GetStatus()
608 strm << "Host: " << un.sysname << ' ' << un.release << ' ' << un.version << '\n'; in GetStatus()
/NextBSD/usr.bin/ee/nls/fr_FR.ISO8859-1/
HDee.msg23 13 "lire un fichier"
24 14 "�crire un fichier"
25 15 "enregistrer un fichier"
50 40 "^e entrer recherche ^m nouvelle ligne ^w effacer un mot "
58 48 "lire : lire un fichier caract : code ascii d'un caract�re"
59 49 "�crire : cr�er un fichier minmaj : recherche sensible aux maj/min"
74 64 "�crire: cr�e un fich. |minmaj: rech. sensible min/maj|fin: quitte et sauve"
94 84 "le fichier \"%s\" est un r�pertoire"
102 92 "entrez un nom de fichier : "
160 150 "^e fin de ligne ^m nouvelle ligne ^w effacer un mot "
/NextBSD/contrib/tcsh/nls/italian/
HDset1310 7 where: / non ha senso all'interno di un comando\n
11 8 %S è un alias per
12 9 %S è un comando interno\n
HDset120 17 È troppo pericoloso creare un alias in questo caso
45 42 L'argomento di -c finisce con un backslash
51 48 Non in un while/foreach
62 59 Non esiste un lavoro predefinito
63 60 Non esiste un lavoro precedente
65 62 Annidamento del `fork' > %d; potrebbe causare `...` un ciclo chiuso
84 81 A capo in un nome di variabile
HDset2016 13 -a elenca o definisce un tasto nella tabella dei tasti alternativi\n
19 16 -c interpreta COMANDO come un comando interno o esterno\n
25 22 -k interpreta TASTO come un nome simbolico di tasto freccia\n
26 23 -- forza un'interruzione nella interpretazione delle opzioni\n
HDset410 7 cancella un carattere
17 14 inserisce un carattere
19 16 inserisce un carattere di riallineamento
/NextBSD/usr.sbin/bluetooth/sdpd/
HDserver.c68 struct sockaddr_un un; in server_init() local
93 memset(&un, 0, sizeof(un)); in server_init()
94 un.sun_len = sizeof(un); in server_init()
95 un.sun_family = AF_LOCAL; in server_init()
96 strlcpy(un.sun_path, control, sizeof(un.sun_path)); in server_init()
98 if (bind(unsock, (struct sockaddr *) &un, sizeof(un)) < 0) { in server_init()
/NextBSD/contrib/tcsh/nls/french/
HDset120 17 Trop dangereux d'attribuer un alias à cela
45 42 L'argument pour -c se termine avec un anti-slash
50 47 Impossible à partir d'un terminal
57 54 Impossible de créer un tube
75 72 Ce n'est pas un shell de connexion
79 76 Impossible d'interrompre un shell de connexion
84 81 Retour-chariot dans un nom de variable
105 102 Il manque un nom pour rediriger
/NextBSD/crypto/heimdal/admin/
HDChangeLog12 un-consting avoid shadowing
15 un-consting avoid shadowing
19 un-consting.
44 * list.c: un c99'ify, from Anders.Magnusson@ltu.se
/NextBSD/usr.sbin/ppp/
HDserver.c391 struct sockaddr_un un; in server_Close() local
392 int sz = sizeof un; in server_Close()
394 if (getsockname(server.fd, (struct sockaddr *)&un, &sz) == 0 && in server_Close()
395 un.sun_family == AF_LOCAL && sz == sizeof un) in server_Close()
396 unlink(un.sun_path); in server_Close()

12345678910