Searched refs:ntype (Results 1 - 20 of 20) sorted by relevance

/freebsd-current/contrib/nvi/vi/
H A Dv_increment.c56 CHAR_T *ntype, nbuf[100]; local
115 ntype = p[beg + 1] == 'X' ? fmt[HEXC] : fmt[HEXL];
121 ntype = fmt[OCTAL];
125 ntype = fmt[SDEC];
131 ntype = fmt[DEC];
146 ntype = fmt[DEC];
199 if (lval == 0 && ntype == fmt[SDEC])
200 ntype = fmt[DEC];
201 nlen = SPRINTF(nbuf, SIZE(nbuf), ntype, lval);
223 nlen = SPRINTF(nbuf, SIZE(nbuf), ntype, wle
[all...]
/freebsd-current/contrib/one-true-awk/
H A Dparse.c46 a->ntype = NSTAT;
115 x->ntype = NSTAT;
124 x->ntype = NSTAT;
133 x->ntype = NSTAT;
142 x->ntype = NSTAT;
151 x->ntype = NEXPR;
160 x->ntype = NEXPR;
169 x->ntype = NEXPR;
178 x->ntype = NEXPR;
187 x->ntype
[all...]
H A Dawk.h169 int ntype; member in struct:Node
218 #define isvalue(n) ((n)->ntype == NVALUE)
219 #define isexpr(n) ((n)->ntype == NEXPR)
H A Db.c40 #define info(v) (v)->ntype /* badly overloaded here */
/freebsd-current/cddl/contrib/opensolaris/common/ctf/
H A Dctf_lookup.c89 ctf_id_t ntype, ptype; local
114 ntype = fp->ctf_ptrtab[LCTF_TYPE_TO_INDEX(fp, type)];
115 if (ntype == 0) {
116 ntype = ctf_type_resolve(fp, type);
117 if (ntype == CTF_ERR || (ntype = fp->ctf_ptrtab[
118 LCTF_TYPE_TO_INDEX(fp, ntype)]) == 0) {
124 type = LCTF_INDEX_TO_TYPE(fp, ntype,
H A Dctf_types.c648 ctf_id_t ntype; local
653 if ((ntype = fp->ctf_ptrtab[LCTF_TYPE_TO_INDEX(fp, type)]) != 0)
654 return (LCTF_INDEX_TO_TYPE(fp, ntype, (fp->ctf_flags & LCTF_CHILD)));
662 if ((ntype = fp->ctf_ptrtab[LCTF_TYPE_TO_INDEX(fp, type)]) != 0)
663 return (LCTF_INDEX_TO_TYPE(fp, ntype, (fp->ctf_flags & LCTF_CHILD)));
/freebsd-current/contrib/libedit/
H A Dkeymacro.c194 int ntype)
202 if (ntype == XK_CMD && val->cmd == ED_SEQUENCE_LEAD_IN) {
213 (void) node__try(el, el->el_keymacro.map, key, val, ntype);
318 keymacro_value_t *val, int ntype)
352 switch (ptr->type = ntype) {
361 EL_ABORT((el->el_errfile, "Bad XK_ type %d\n", ntype));
368 (void) node__try(el, ptr->next, str, val, ntype);
584 int ntype)
591 switch (ntype) {
595 ntype
193 keymacro_add(EditLine *el, const wchar_t *key, keymacro_value_t *val, int ntype) argument
317 node__try(EditLine *el, keymacro_node_t *ptr, const wchar_t *str, keymacro_value_t *val, int ntype) argument
583 keymacro_kprint(EditLine *el, const wchar_t *key, keymacro_value_t *val, int ntype) argument
[all...]
H A Dmap.c1260 int ntype, rem; local
1274 ntype = XK_CMD;
1284 ntype = XK_STR;
1356 switch (ntype) {
1364 terminal_set_arrow(el, in, keymacro_map_str(el, out), ntype);
1366 keymacro_add(el, in, keymacro_map_str(el, out), ntype);
1378 terminal_set_arrow(el, in, keymacro_map_cmd(el, cmd), ntype);
1381 keymacro_add(el, in, keymacro_map_cmd(el, cmd), ntype);
1392 EL_ABORT((el->el_errfile, "Bad XK_ type %d\n", ntype));
/freebsd-current/usr.bin/mail/
H A Dnames.c48 nalloc(char str[], int ntype) argument
55 np->n_type = ntype;
82 extract(char *line, int ntype) argument
95 t = nalloc(nbuf, ntype);
111 detract(struct name *np, int ntype) argument
117 comma = ntype & GCOMMA;
120 ntype &= ~GCOMMA;
125 if (ntype && (p->n_type & GMASK) != ntype)
137 if (ntype
482 gexpand(struct name *nlist, struct grouphead *gh, int metoo, int ntype) argument
[all...]
/freebsd-current/contrib/tcsh/
H A Ded.xmap.c23 * void AddXkey(Xkey, val, ntype);
26 * int ntype;
209 AddXkey(const CStr *Xkey, XmapVal *val, int ntype) argument
219 if (ntype == XK_CMD && val->cmd == F_XKEY) {
230 (void) TryNode(Xmap, &cs, val, ntype);
235 TryNode(XmapNode *ptr, CStr *str, XmapVal *val, int ntype) argument
276 switch (ptr->type = ntype) {
296 (void) TryNode(ptr->next, str, val, ntype);
541 printOne(const Char *key, const XmapVal *val, int ntype) argument
548 switch (ntype) {
[all...]
H A Dtc.bind.c56 int ntype, no, removeb, key, bindk; local
69 ntype = XK_CMD;
89 ntype = XK_STR;
92 ntype = XK_EXE;
180 switch (ntype) {
189 if (SetArrowKeys(&in, XmapStr(&out), ntype) == -1)
195 AddXkey(&in, XmapStr(&out), ntype);
204 (void) SetArrowKeys(&in, XmapCmd((int) cmd), ntype);
207 AddXkey(&in, XmapCmd((int) cmd), ntype);
/freebsd-current/contrib/pjdfstest/
H A Dpjdfstest.c849 mode_t ntype; local
868 ntype = S_IFCHR;
870 ntype = S_IFBLK;
872 ntype = S_IFIFO;
874 ntype = S_IFDIR;
876 ntype = S_IFREG;
883 rval = mknod(STR(0), ntype | NUM(2), dev);
887 rval = mknodat(NUM(0), STR(1), ntype | NUM(3), dev);
/freebsd-current/contrib/ofed/infiniband-diags/src/
H A Dibroute.c258 char ntype[50], sguid[30]; local
316 mad_dump_val(IB_NODE_TYPE_F, ntype, sizeof ntype,
H A Ddump_fts.c237 char ntype[50], sguid[30]; local
295 mad_dump_val(IB_NODE_TYPE_F, ntype, sizeof ntype,
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dddt.c931 ddt_type_t ntype = DDT_TYPE_DEFAULT; local
965 (otype != ntype || oclass != nclass || total_refcnt == 0)) {
972 dde->dde_type = ntype;
975 if (!ddt_object_exists(ddt, ntype, nclass))
976 ddt_object_create(ddt, ntype, nclass, tx);
977 VERIFY0(ddt_object_update(ddt, ntype, nclass, dde, tx));
/freebsd-current/contrib/ofed/opensm/opensm/
H A Dosm_ucast_dfsssp.c1900 uint8_t ntype = 0; local
1934 ntype = osm_node_get_type(dest_port->p_node);
1935 if (ntype == IB_NODE_TYPE_CA || ntype == IB_NODE_TYPE_SWITCH) {
1937 if (ntype == IB_NODE_TYPE_SWITCH
1960 ntype = osm_node_get_type(dest_port->p_node);
1961 if (ntype == IB_NODE_TYPE_CA || ntype == IB_NODE_TYPE_SWITCH) {
1963 if (ntype == IB_NODE_TYPE_SWITCH
1983 ntype
[all...]
/freebsd-current/contrib/tcpdump/
H A Dprint-decnet.c702 u_int ntype = info & 3; local
703 switch (ntype) {
704 case 0: ND_PRINT("reserved-ntype? "); break;
773 u_int ntype = info & II_TYPEMASK; local
774 switch (ntype) {
775 case 0: ND_PRINT("reserved-ntype? "); break;
/freebsd-current/sys/cam/scsi/
H A Dscsi_enc_ses.c1345 int ntype; local
1422 ntype = 0;
1438 ntype += buf_subenc->num_types;
1445 ses_types = malloc(ntype * sizeof(*ses_types),
1451 ses_cache->ses_ntypes = ntype;
1456 last_buf_type = cur_buf_type + ntype - 1;
/freebsd-current/usr.sbin/bhyve/
H A Dpci_e82545.c1088 int desc, dtype, ntype, iovcnt, tcp, tso, paylen, seg, tiovcnt, pv; local
1096 ntype = 0;
1129 ntype = dtype;
1135 ntype = dtype;
1142 assert(dtype == ntype);
/freebsd-current/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c163 enum ntype { enum
179 enum ntype type;

Completed in 392 milliseconds