Searched refs:ind (Results 1 - 25 of 119) sorted by relevance

12345

/freebsd-11-stable/stand/common/
H A Dmerge_help.awk12 ind = 0;
36 ind++;
37 if (ind == 1)
39 first = ind;
40 help[ind, "T"] = T;
41 help[ind, "S"] = S;
42 help[ind, "link"] = -1;
54 help[j, "link"] = ind;
55 help[ind, "link"] = -1;
57 help[ind, "lin
[all...]
/freebsd-11-stable/contrib/ntp/libntp/
H A Dhextolfp.c22 char *ind = NULL; local
38 (ind = strchr(digits, *cp)) != NULL) {
40 dec_i += ((ind - digits) > 15)
41 ? (u_long)(ind - digits - 6)
42 : (u_long)(ind - digits);
46 if ((cp - cpstart) < 8 || ind == NULL)
53 (ind = strchr(digits, *cp)) != NULL) {
55 dec_f += ((ind - digits) > 15)
56 ? (u_long)(ind - digits - 6)
57 : (u_long)(ind
[all...]
H A Datolfp.c38 char *ind; local
69 while (*cp != '\0' && (ind = strchr(digits, *cp)) != NULL) {
71 dec_i += (u_long)(ind - digits);
80 && (ind = strchr(digits, *cp)) != NULL) {
83 dec_f += (u_long)(ind - digits);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dxatexit.c52 int ind; /* next index in this table */ member in struct:xatexit
76 if (p->ind >= XATEXIT_SIZE)
80 p->ind = 0;
84 p->fns[p->ind++] = fn;
97 for (n = p->ind; --n >= 0;)
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dxatexit.c52 int ind; /* next index in this table */ member in struct:xatexit
76 if (p->ind >= XATEXIT_SIZE)
80 p->ind = 0;
84 p->fns[p->ind++] = fn;
97 for (n = p->ind; --n >= 0;)
/freebsd-11-stable/lib/libcam/
H A Dscsi_cmdparse.c107 int ind = 0; local
187 if (ind >= len) {
191 bits = buff[ind++];
213 if (ind + width > len) {
219 ARG_PUT(buff[ind]);
220 ind++;
224 ARG_PUT(buff[ind] << 8 | buff[ind + 1]);
225 ind += 2;
229 ARG_PUT(buff[ind] << 1
550 int ind; local
[all...]
/freebsd-11-stable/contrib/apr/misc/unix/
H A Dgetopt.c64 (*os)->ind = 1;
78 if (os->ind >= os->argc || *(os->place = os->argv[os->ind]) != '-') {
84 ++os->ind;
101 ++os->ind;
112 ++os->ind;
117 else if (os->argc <= ++os->ind) { /* no arg */
132 *optarg = os->argv[os->ind];
134 ++os->ind;
155 * non-option arguments, os->skip_end is where we stopped, and os->ind
[all...]
/freebsd-11-stable/sys/contrib/ngatm/netnatm/sig/
H A Dsig_party.c78 struct uniapi_party_created *ind; local
85 if ((ind = ALLOC_API(struct uniapi_party_created, api)) == NULL) {
90 ind->cref.cref = c->cref;
91 ind->cref.flag = c->mine;
92 MK_IE_EPREF(ind->epref, epref, mine);
93 ind->epref.h.act = UNI_IEACT_DEFAULT;
154 struct uniapi_party_destroyed *ind; local
165 ind = ALLOC_API(struct uniapi_party_destroyed, api);
166 if (ind != NULL) {
167 ind
331 struct uniapi_add_party_indication *ind; local
387 struct uniapi_party_alerting_indication *ind; local
423 struct uniapi_add_party_ack_indication *ind; local
459 struct uniapi_add_party_rej_indication *ind; local
490 struct uniapi_drop_party_ack_indication *ind; local
525 struct uniapi_drop_party_ack_indication *ind; local
553 struct uniapi_drop_party_indication *ind; local
592 struct uniapi_drop_party_ack_indication *ind; local
653 struct uniapi_drop_party_ack_indication *ind; local
718 struct uniapi_drop_party_indication *ind; local
842 struct uniapi_drop_party_ack_indication *ind; local
890 struct uniapi_drop_party_ack_indication *ind; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_ocsp.c92 BIO *bp, int ind);
161 int ind)
165 if (BIO_printf(bp, "%*scrlUrl: ", ind, "") <= 0)
173 if (BIO_printf(bp, "%*scrlNum: ", ind, "") <= 0)
181 if (BIO_printf(bp, "%*scrlTime: ", ind, "") <= 0)
194 BIO *bp, int ind)
196 if (BIO_printf(bp, "%*s", ind, "") <= 0)
204 int ind)
206 if (BIO_printf(bp, "%*s", ind, "") <= 0)
287 BIO *bp, int ind)
160 i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind) argument
193 i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, BIO *bp, int ind) argument
203 i2r_object(const X509V3_EXT_METHOD *method, void *oid, BIO *bp, int ind) argument
286 i2r_ocsp_serviceloc(const X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind) argument
[all...]
/freebsd-11-stable/contrib/flex/
H A Dccl.c40 int ind, len, i; local
43 ind = cclmap[cclp];
46 if (ccltbl[ind + i] == ch)
59 int ind, len, newpos, i; local
64 ind = cclmap[cclp];
69 if (ccltbl[ind + i] == ch)
76 newpos = ind + len;
/freebsd-11-stable/sys/opencrypto/
H A Dcriov.c107 int ind, len; local
109 ind = 0;
110 while (loc >= 0 && ind < uio->uio_iovcnt) {
111 len = uio->uio_iov[ind].iov_len;
114 return (ind);
117 ind++;
120 if (ind > 0 && loc == 0) {
121 ind--;
122 *off = uio->uio_iov[ind].iov_len;
123 return (ind);
[all...]
/freebsd-11-stable/contrib/libreadline/
H A Dmbutil.c321 _rl_char_value (buf, ind)
323 int ind;
331 return ((wchar_t) buf[ind]);
333 if (ind >= l - 1)
334 return ((wchar_t) buf[ind]);
336 tmp = mbrtowc (&wc, buf + ind, l - ind, &ps);
338 return ((wchar_t) buf[ind]);
/freebsd-11-stable/lib/libc/stdlib/
H A Datexit.c70 int ind; /* next index in this table */ member in struct:atexit
102 else while (p->ind >= ATEXIT_SIZE) {
117 p->ind = 0;
121 p->fns[p->ind++] = *fptr;
216 for (n = p->ind; --n >= 0;) {
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal.h473 arena_t *arena_init(tsdn_t *tsdn, unsigned ind);
474 arena_tdata_t *arena_tdata_get_hard(tsd_t *tsd, unsigned ind);
556 arena_tdata_t *arena_tdata_get(tsd_t *tsd, unsigned ind,
558 arena_t *arena_get(tsdn_t *tsdn, unsigned ind, bool init_if_missing);
559 ticker_t *decay_ticker_get(tsd_t *tsd, unsigned ind);
826 arena_tdata_get(tsd_t *tsd, unsigned ind, bool refresh_if_missing)
833 return (arena_tdata_get_hard(tsd, ind));
835 if (unlikely(ind >= tsd_narenas_tdata_get(tsd))) {
837 * ind is invalid, cache is old (too small), or tdata to be
840 return (refresh_if_missing ? arena_tdata_get_hard(tsd, ind)
[all...]
/freebsd-11-stable/contrib/apr/include/
H A Dapr_getopt.h58 int ind; member in struct:apr_getopt_t
144 * When APR_SUCCESS is returned, os->ind gives the index of the first
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dntpaths.c109 isc_ntpaths_get(int ind) { argument
113 switch (ind) {
/freebsd-11-stable/contrib/groff/src/devices/grohtml/
H A Dhtml-table.h116 html_indent (simple_output *op, int ind, int pageoffset, int linelength);
119 void get_reg (int *ind, int *pageoffset, int *linelength);
/freebsd-11-stable/crypto/heimdal/lib/kafs/
H A Dcommon.c177 int ind = *idx; local
190 for(i = 0; i < ind; i++)
193 if(i == ind){
196 tmp = realloc(*cells, (ind + 1) * sizeof(**cells));
200 (*cells)[ind] = strdup(cell);
201 if ((*cells)[ind] == NULL)
203 ++ind;
207 *idx = ind;
/freebsd-11-stable/contrib/groff/contrib/mm/
H A Dmmroff.pl88 my ($f, $ind, $macro) = @_;
92 for $i (sort @$ind) {
/freebsd-11-stable/usr.bin/sort/
H A Dcoll.h151 struct key_value *get_key_from_keys_array(struct keys_array *ka, size_t ind);
152 void set_key_on_keys_array(struct keys_array *ka, struct bwstring *s, size_t ind);
/freebsd-11-stable/contrib/subversion/subversion/svnversion/
H A Dsvnversion.c207 if (os->ind > argc || os->ind < argc - 2)
215 (os->ind < argc) ? os->argv[os->ind] : ".",
222 if (os->ind+1 < argc)
223 SVN_ERR(svn_utf_cstring_to_utf8(&trail_url, os->argv[os->ind+1], pool));
/freebsd-11-stable/sys/contrib/ngatm/netnatm/api/
H A Dcc_conn.c1115 struct uniapi_drop_party_ack_indication *ind = uni_msg_rptr(msg, local
1118 cc_party_drop_ack_ind(conn, &ind->drop);
1306 struct uniapi_setup_indication *ind = uni_msg_rptr(msg, local
1317 conn->blli[i] = ind->setup.blli[i];
1318 conn->bearer = ind->setup.bearer;
1319 conn->traffic = ind->setup.traffic;
1320 conn->qos = ind->setup.qos;
1321 conn->exqos = ind->setup.exqos;
1322 conn->called = ind->setup.called;
1323 conn->calledsub = ind
1383 struct uniapi_proceeding_indication *ind = uni_msg_rptr(msg, local
1406 struct uniapi_alerting_indication *ind = uni_msg_rptr(msg, local
1567 struct uniapi_add_party_ack_indication *ind = uni_msg_rptr(msg, local
1584 struct uniapi_add_party_rej_indication *ind = uni_msg_rptr(msg, local
1604 struct uniapi_drop_party_indication *ind = uni_msg_rptr(msg, local
[all...]
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_srq.c459 int ind; local
462 ind = wqe_addr >> srq->wqe_shift;
467 *wqe_to_link(last_free) = ind;
468 last_free->nda_op = htonl((ind << srq->wqe_shift) | 1);
469 *wqe_to_link(get_wqe(srq, ind)) = -1;
470 srq->last_free = ind;
483 int ind; local
495 ind = srq->first_free;
496 wqe = get_wqe(srq, ind);
532 srq->wrid[ind]
582 int ind; local
[all...]
/freebsd-11-stable/bin/sh/
H A Dshow.c71 shtree(union node *n, int ind, char *pfx, FILE *fp) argument
79 indent(ind, pfx, fp);
90 shtree(n->nbinary.ch1, ind, NULL, fp);
91 /* if (ind < 0) */
93 shtree(n->nbinary.ch2, ind, NULL, fp);
97 if (ind >= 0)
108 if (ind >= 0)
113 if (ind >= 0)
/freebsd-11-stable/sys/tools/
H A Dvnode_if.awk67 function add_debug_code(name, arg, pos, ind)
74 printc(ind"ASSERT_VI_UNLOCKED("star"a->a_"arg", \""uname"\");");
77 printc(ind"ASSERT_VOP_LOCKED(" star "a->a_"arg", \""uname"\");");
79 printc(ind"ASSERT_VOP_UNLOCKED(" star "a->a_"arg", \""uname"\");");
81 printc(ind"ASSERT_VOP_ELOCKED(" star "a->a_"arg", \""uname"\");");

Completed in 240 milliseconds

12345