Home
last modified time | relevance | path

Searched refs:ind (Results 1 – 25 of 130) sorted by relevance

123456

/onnv-gate/usr/src/uts/common/avs/ns/rdc/
H A Drdc_bitmap.h52 #define IND_BYTE(ind) ((ind) >> 3) argument
53 #define IND_BIT(ind) (1 << ((ind) & 0x7)) argument
68 #define BMAP_BIT_SET(bmap, ind) ((bmap)[IND_BYTE(ind)] |= IND_BIT(ind)) argument
69 #define BMAP_BIT_CLR(bmap, ind) ((bmap)[IND_BYTE(ind)] &= ~IND_BIT(ind)) argument
70 #define BMAP_BIT_ISSET(bmap, ind) \ argument
71 ((bmap)[IND_BYTE(ind)] & IND_BIT(ind))
75 #define BMAP_REF_SET(krdc, ind) (((krdc)->bm_refs->bmap_ref_set)(krdc, ind)) argument
76 #define BMAP_REF_CLR(krdc, ind) (((krdc)->bm_refs->bmap_ref_clr)(krdc, ind)) argument
77 #define BMAP_REF_ISSET(krdc, ind) (((krdc)->bm_refs->bmap_ref_isset)(krdc, ind)) argument
78 #define BMAP_REF_FORCE(krdc, ind, val) \ argument
[all …]
/onnv-gate/usr/src/cmd/svr4pkg/libinst/
H A Dnblk.c43 fsblkcnt_t tot, count, count1, d_indirect, t_indirect, ind; in nblk() local
53 ind = howmany(bsize, sizeof (daddr_t)); in nblk()
54 d_indirect = ind + DIRECT; /* double indirection */ in nblk()
55 t_indirect = ind * (ind + 1) + DIRECT; /* triple indirection */ in nblk()
60 count1 = (tot - ind * ind - (DIRECT + 1)) / ind; in nblk()
61 count = count1 + count1 / ind + ind + 3; in nblk()
63 count = (tot - (DIRECT + 1)) / ind + 2; in nblk()
/onnv-gate/usr/src/cmd/cron/
H A Delm.c138 struct index *indprev, *ind; local
188 ind = (struct index *)xmalloc(sizeof (struct index));
189 ind->key = k;
191 index = ind;
193 indprev->right = ind;
194 indprev = ind; }
212 ind = (struct index *)xmalloc(sizeof (struct index));
213 ind->key = k;
214 ind->right = NULL;
215 indprev->right = ind;
[all …]
/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_ipaddr.c192 int ind; in addhost() local
240 for (ind = 0; in addhost()
241 aliases[ind] != NULL; in addhost()
242 ind++) { in addhost()
244 aliases[ind]); in addhost()
255 for (ind = 0; in addhost()
256 aliases[ind] != NULL; in addhost()
257 ind++) { in addhost()
259 aliases[ind]); in addhost()
360 int ind; in lgetipnodebyname() local
[all …]
/onnv-gate/usr/src/common/openssl/crypto/x509v3/
H A Dv3_ocsp.c83 static int i2r_ocsp_serviceloc(X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind);
151 static int i2r_ocsp_crlid(X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind) in i2r_ocsp_crlid() argument
156 if (!BIO_printf(bp, "%*scrlUrl: ", ind, "")) goto err; in i2r_ocsp_crlid()
162 if (!BIO_printf(bp, "%*scrlNum: ", ind, "")) goto err; in i2r_ocsp_crlid()
168 if (!BIO_printf(bp, "%*scrlTime: ", ind, "")) goto err; in i2r_ocsp_crlid()
177 static int i2r_ocsp_acutoff(X509V3_EXT_METHOD *method, void *cutoff, BIO *bp, int ind) in i2r_ocsp_acutoff() argument
179 if (!BIO_printf(bp, "%*s", ind, "")) return 0; in i2r_ocsp_acutoff()
185 static int i2r_object(X509V3_EXT_METHOD *method, void *oid, BIO *bp, int ind) in i2r_object() argument
187 if (!BIO_printf(bp, "%*s", ind, "")) return 0; in i2r_object()
254 static int i2r_ocsp_serviceloc(X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind) in i2r_ocsp_serviceloc() argument
[all …]
H A Dv3_ncons.c69 void *a, BIO *bp, int ind);
72 BIO *bp, int ind, char *name);
159 void *a, BIO *bp, int ind) in i2r_NAME_CONSTRAINTS() argument
163 bp, ind, "Permitted"); in i2r_NAME_CONSTRAINTS()
165 bp, ind, "Excluded"); in i2r_NAME_CONSTRAINTS()
171 BIO *bp, int ind, char *name) in do_i2r_name_constraints() argument
176 BIO_printf(bp, "%*s%s:\n", ind, "", name); in do_i2r_name_constraints()
180 BIO_printf(bp, "%*s", ind + 2, ""); in do_i2r_name_constraints()
/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
H A DLocation.cxx23 Offset startOffset(Index ind) const;
25 Boolean isNamedCharRef(Index ind, NamedCharRef &ref) const;
32 size_t nPrecedingCharRefs(Index ind) const;
160 Offset Origin::startOffset(Index ind) const in startOffset()
162 return ind; in startOffset()
252 size_t InputSourceOriginImpl::nPrecedingCharRefs(Index ind) const in nPrecedingCharRefs()
259 || ind > charRefs_.back().replacementIndex) in nPrecedingCharRefs()
271 if (charRefs_[mid].replacementIndex >= ind) in nPrecedingCharRefs()
280 Offset InputSourceOriginImpl::startOffset(Index ind) const in startOffset()
283 size_t n = nPrecedingCharRefs(ind); in startOffset()
[all …]
/onnv-gate/usr/src/cmd/vi/port/
H A Dex_vwind.c101 vup(int cnt, int ind, bool scroll) in vup() argument
112 ind -= cnt - i; in vup()
113 if (ind < 0) in vup()
114 ind = 0; in vup()
129 if (ind > basWLINES / 2) in vup()
130 ind = basWLINES / 3; in vup()
132 vcontext(dot + ind - cnt, '.'); in vup()
138 vcline += ind, dot += ind; in vup()
149 vdown(int cnt, int ind, bool scroll) in vdown() argument
160 ind -= cnt - i; in vdown()
[all …]
H A Dex_vops.c498 int i, ind, cnt; in vchange() local
549 ind = -1; in vchange()
559 ind = lindent(dot); in vchange()
561 ind = whitecnt(linebuf); in vchange()
599 if (ind >= 0) { in vchange()
605 *genindent(ind) = 0; in vchange()
635 if (ind >= 0) { in vchange()
647 ind = 0; in vchange()
655 vappend('x', 1, ind); in vchange()
729 int ind = 0, i; in voOpen() local
[all …]
H A Dex_vmain.c78 int ind, nlput; local
380 ind = vcline, cnt += ind;
382 ind = 0;
384 vup(cnt, ind, 1);
400 ind = vcnt - vcline - 1, cnt += ind;
402 ind = 0;
404 vdown(cnt, ind, 1);
427 ind = vcnt - vcline - 1 + cnt;
428 vdown(ind, ind, 1);
441 ind = vcline + cnt;
[all …]
/onnv-gate/usr/src/lib/libxcurses/src/terminfo/
H A Dmisc49 sc=\E7, rc=\E8, ind=\ED, ri=\EM, nel=\EE,
60 cr=^M, cud1=^J, ind=^J, bel=^G, il1=\E[L, am, cub1=^H, ed=\E[J,
74 is2=\E[?7h\E[?3l\E[?5l, smkx@, rmkx@, cr=^M, cud1=^J, ind=^J,
88 cr=^M, cud1=^J, ind=^J, bel=^G, cols#132, hc, os,
90 cr=^M, cud1=^J, ind=^J, bel=^G,
95 cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, am,
99 ind=\ED, ri=\EM, da, db, rmacs=\E[1m, smacs=\E[0m, msgr, ht=^I,
104 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=^W$<40>, el=^V$<20>,
108 cr=^M, cud1=^J, ind=^J, bel=^G, rmso=^O, smso=^N, use=vc404,
125 tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G,
[all …]
H A Dhomebrew30 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H,
34 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, clear=^L$<1>,
37 cr=^M, cud1=^J, ind=^J, bel=^G, il1=^E, am, el=^U, clear=^Z$<100>,
42 cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#80, home=^Q,
44 cr=^M, cud1=^J, ind=^J, bel=^G, il1=^P^J^X, am, cub1=^H,
50 cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#64, clear=^L, home=^Q,
55 cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=^F^E$<2000>, el=^E$<1600>,
59 cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=^F^E$<2000>, el=^E$<1600>,
64 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ht=^I, el=\Ed,
68 cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#12,
H A Dhazeltine35 cub1=^H, home=^K, clear=^L, cuf1= , cols#80, lines#12, cr=^M, cud1=^J, ind=^J, bel=^G,
40 cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE, dl1=\EO,
43 cr=^M, cud1=^J, ind=^J, bel=^G,
47 cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, am, lines#24, cols#80,
51 cr=^M, cud1=^J, ind=^J, bel=^G, il1=~^Z$<40>, am,
56 cr=^M, cud1=^J, ind=^J, bel=^G,
60 cr=^M, cud1=^J, ind=^J, bel=^G, il1=~^Z, am, cub1=^H,
65 cud1=^J, ind=^J, bel=^G,
H A Ddiablo33 cr=^M, cud1=^J, ind=^J, bel=^G, tbc=\E2, hts=\E1, hpa=\E\t%i%p1%c, kbs=^H,
36 cr=^M, cud1=^J, ind=^J, bel=^G, cols#124, is2=\r \E9, use=1620,
51 bel=^G, cud1=^J, ind=^J, il1=^P^Z, am, cub1=^H,
58 tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G,
62 cr=^M, cud1=^J, ind=^J, bel=^G,
64 cr=^M, cud1=^J, ind=^J, bel=^G,
69 tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G,
73 tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G,
78 cr=^M, cud1=^J, ind=^J, bel=^G,
/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/ilbadm/
H A Dilbadm_stats.c401 int i, ind; in of_rule_stats() local
405 case ILBST_PKT_U: ind = RLSTA_PKT_U; in of_rule_stats()
407 case ILBST_BYTES_U: ind = RLSTA_BYTES_U; in of_rule_stats()
409 case ILBST_PKT_D: ind = RLSTA_PKT_D; in of_rule_stats()
411 case ILBST_BYTES_D: ind = RLSTA_BYTES_D; in of_rule_stats()
413 case ILBST_ICMP_P: ind = RLSTA_ICMP_P; in of_rule_stats()
415 case ILBST_ICMP_D: ind = RLSTA_ICMP_D; in of_rule_stats()
417 case ILBST_ICMP2BIG_P: ind = RLSTA_ICMP2BIG_P; in of_rule_stats()
419 case ILBST_ICMP2BIG_D: ind = RLSTA_ICMP2BIG_D; in of_rule_stats()
421 case ILBST_NOMEMP_D: ind = RLSTA_NOMEMPKT_D; in of_rule_stats()
[all …]
/onnv-gate/usr/src/uts/common/sys/ib/adapters/hermon/
H A Dhermon_misc.h272 #define HERMON_IND_BYTE(ind) ((ind) >> 3) argument
273 #define HERMON_IND_BIT(ind) (1 << ((ind) & 0x7)) argument
275 #define HERMON_BMAP_BIT_SET(bmap, ind) \ argument
276 ((bmap)[HERMON_IND_BYTE(ind)] |= HERMON_IND_BIT(ind))
277 #define HERMON_BMAP_BIT_CLR(bmap, ind) \ argument
278 ((bmap)[HERMON_IND_BYTE(ind)] &= ~HERMON_IND_BIT(ind))
279 #define HERMON_BMAP_BIT_ISSET(bmap, ind) \ argument
280 ((bmap)[HERMON_IND_BYTE(ind)] & HERMON_IND_BIT(ind))
/onnv-gate/usr/src/cmd/terminfo/
H A Dhomebrew.ti35 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H,
39 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, clear=^L$<1>,
42 cr=^M, cud1=^J, ind=^J, bel=^G, il1=^E, am, el=^U, clear=^Z$<100>,
50 cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#80, home=^Q,
52 cr=^M, cud1=^J, ind=^J, bel=^G, il1=^P^J^X, am, cub1=^H,
57 cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#64, clear=^L, home=^Q,
64 cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=^F^E$<2000>, el=^E$<1600>,
69 cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=^F^E$<2000>, el=^E$<1600>,
73 cr=^M, cud1=^J, ind=^J, bel=^G, smacs=\EG@, am, rmacs=\EGB,
81 cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE, am, cub1=^H, cbt=\EI,
[all …]
H A Dhardcopy.ti34 cr=^M$<200>, cud1=^J, ind=^J, bel=^G,
37 cr=^M, cud1=^J, ind=^J, bel=^G,
40 cr=^M, cud1=^J, ind=^J, bel=^G,
42 cr=^M, cud1=^J, ind=^J, bel=^G, cols#132, hc, os,
45 cr=^M, cud1=^J, ind=^J, bel=^G,
H A Dvisual.ti32 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, il1=\EL, dl1=\EM,
43 cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#80,
58 cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24,
76 cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G,
87 cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G,
93 cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G,
98 cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G,
111 cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G,
H A Ddiablo.ti40 cr=^M, cud1=^J, ind=^J, bel=^G, tbc=\E2, hts=\E1, hpa=\E\t%p1%{1}%+%c,
44 cr=^M, cud1=^J, ind=^J, bel=^G, cols#124, is2=\r \E9, use=1620,
59 bel=^G, .cud1=^J, ind=^J, il1=^P^Z, am, cub1=^H,
66 tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, kbs=^h,
70 cr=^M, cud1=^J, ind=^J, bel=^G,
72 cr=^M, cud1=^J, ind=^J, bel=^G,
78 tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G,
82 tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G,
89 cr=^M, cud1=^J, ind=^J, bel=^G,
98 cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, hc, os, cols#132,
H A Dhazeltine.ti42 cols#80, lines#12, cr=^M, cud1=^J, ind=^J, bel=^G,
44 cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, am, lines#24, cols#80,
48 cr=^M, cud1=^J, ind=^J, bel=^G, il1=~^Z$<40>, hz, am,
57 cr=^M, ind=^J, cud1=^J, bel=^G,
65 cr=^M, cud1=^J, ind=^J, bel=^G,
91 ind=^J,
115 cr=^M, cud1=^J, ind=^J, bel=^G, il1=~^Z, am, cub1=^H,
127 dl1=\EO, ed=\EJ, el=\EK, ht=\t, il1=\EE, ind=\n,
132 cr=^M, cud1=^J, ind=^J, bel=^G,
139 cud1=^J, ind=^J, bel=^G,
[all …]
H A Dmisc.ti55 ind=\E;1100\072004=000200??;1300\047\200\001\n\E\072004=0002??00;1200\001\n,
58 tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G,
81 cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE, am, cub1=^H,
129 cuf1=\E[C, ht=^I, rc=\E8, sc=\E7, rmso=\E[0m, ind=\n$<280>,
141 lf4=PF4, cuf1=\E[C, ht=^I, rmso=\E[0m, ind=\n$<280>,
144 cr=^M, cud1=^J, ind=^J, bel=^G, cup=\02%i%p1%c%p2%c, cols#80,
161 cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#40, am,
169 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, bw, ed=^w, el=^v,
180 cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=^P$<62>, el=^O$<3>,
186 cub1=^H, cr=^M, cud1=^J, ind=^J, bel=^G, cuf1=^U, cuu1=^Z, home=^Y,
[all …]
/onnv-gate/usr/src/cmd/oamuser/user/
H A Duserdefs.c115 static int ind = NDEF - 1; in scan() local
117 int lastind = ind; in scan()
128 ind++; in scan()
129 ind %= NDEF; in scan()
131 if (strncmp(cur_p, tab[ind].name, tab[ind].nmsz) == 0) { in scan()
132 *start_p = cur_p + tab[ind].nmsz; in scan()
133 return (&tab[ind]); in scan()
135 } while (ind != lastind); in scan()
/onnv-gate/usr/src/cmd/avs/sdbc/
H A Dsd_trace.c536 int ind, i, k, len; in dual_stats() local
605 ind = IND_VOLUME_DOWN; in dual_stats()
607 ind = IND_FCAL_FAILED; in dual_stats()
609 ind = IND_BITMAP_FAILED; in dual_stats()
613 ind = IND_RESYNC_NEEDED; in dual_stats()
616 ind = IND_REV_RESYNC_NEEDED; in dual_stats()
618 ind = IND_LOGGING; in dual_stats()
622 ind = IND_RESYNC_REVERSE; in dual_stats()
624 ind = IND_RESYNC; in dual_stats()
627 ind = IND_RESYNC; in dual_stats()
[all …]
/onnv-gate/usr/src/uts/common/os/
H A Ddevpolicy.c584 int ind; in devpolicy_get() local
614 ind = 1; in devpolicy_get()
618 itmp[ind].dps_maj = devpolicy[i].t_major; in devpolicy_get()
619 itmp[ind].dps_rdp = de->dpe_plcy->dp_rdp; in devpolicy_get()
620 itmp[ind].dps_wrp = de->dpe_plcy->dp_wrp; in devpolicy_get()
622 (void) strcpy(itmp[ind].dps_minornm, in devpolicy_get()
625 (void) strcpy(itmp[ind].dps_minornm, "*"); in devpolicy_get()
627 itmp[ind].dps_lomin = de->dpe_lomin; in devpolicy_get()
628 itmp[ind].dps_himin = de->dpe_himin; in devpolicy_get()
629 itmp[ind].dps_isblock = de->dpe_spec == VBLK; in devpolicy_get()
[all …]

123456