| /src/external/bsd/libarchive/dist/libarchive/test/ |
| test_archive_cmdline.c | 33 struct archive_cmdline *cl; local 36 assert((cl = __archive_cmdline_allocate()) != NULL); 37 if (cl == NULL) 39 assertEqualInt(ARCHIVE_OK, __archive_cmdline_parse(cl, "gzip")); 40 assertEqualInt(1, cl->argc); 41 assertEqualString("gzip", cl->path); 42 assertEqualString("gzip", cl->argv[0]); 43 assertEqualInt(ARCHIVE_OK, __archive_cmdline_free(cl)); 45 assert((cl = __archive_cmdline_allocate()) != NULL); 46 if (cl == NULL [all...] |
| /src/external/bsd/tmux/dist/compat/ |
| memmem.c | 42 const char *cl = l; local 47 return (void *)cl; 58 last = cl + l_len - s_len; 60 for (cur = cl; cur <= last; cur++)
|
| /src/sys/arch/mvme68k/stand/sboot/ |
| clock.c | 104 struct clockreg *cl = clockreg; local 107 cl->cl_csr |= CLK_READ; /* enable read (stop time) */ 108 sec = cl->cl_sec; 109 min = cl->cl_min; 110 hour = cl->cl_hour; 111 day = cl->cl_mday; 112 mon = cl->cl_month; 113 year = cl->cl_year; 114 cl->cl_csr &= ~CLK_READ; /* time wears on */
|
| /src/sys/ddb/ |
| db_autoconf.c | 69 const char *cl; local 80 cl = "????"; 82 cl = classnames[i]; 85 db_printf(" %10s", cl);
|
| /src/external/lgpl3/gmp/dist/mpn/generic/ |
| mul_1.c | 41 mp_limb_t ul, cl, hpl, lpl; local 46 cl = 0; 52 lpl += cl; 53 cl = (lpl < cl) + hpl; 59 return cl; 69 mp_limb_t shifted_vl, ul, lpl, hpl, prev_hpl, xw, cl, xl; local 77 cl = 0; 85 xw = prev_hpl + lpl + cl; 86 cl = xw >> GMP_NUMB_BITS [all...] |
| diveby3.c | 145 mp_limb_t s, sm, cl, q, qx, c2, c3; local 152 cl = cy == 0 ? 0 : cy == 1 ? -MODLIMB_INVERSE_3 : -2*MODLIMB_INVERSE_3; 159 q = (cl + sm) & GMP_NUMB_MASK; 167 cl = (-c2 & -MODLIMB_INVERSE_3) + (-c3 & -MODLIMB_INVERSE_3);
|
| mod_1_2.c | 86 mp_limb_t rh, rl, bi, ph, pl, ch, cl, r; local 131 umul_ppmm (ch, cl, rl, B2modb); 132 add_ssaaaa (ph, pl, ph, pl, ch, cl); 138 umul_ppmm (rh, cl, rh, B1modb); 139 add_ssaaaa (rh, rl, rh, rl, CNST_LIMB(0), cl);
|
| mod_1_3.c | 89 mp_limb_t rh, rl, bi, ph, pl, ch, cl, r; local 136 umul_ppmm (ch, cl, ap[i + 2], B2modb); 137 add_ssaaaa (ph, pl, ph, pl, ch, cl); 139 umul_ppmm (ch, cl, rl, B3modb); 140 add_ssaaaa (ph, pl, ph, pl, ch, cl); 146 umul_ppmm (rh, cl, rh, B1modb); 147 add_ssaaaa (rh, rl, rh, rl, CNST_LIMB(0), cl);
|
| submul_1.c | 80 mp_limb_t shifted_v0, u0, r0, p0, p1, prev_p1, cl, xl, c1, c2, c3; local 89 cl = 0; 99 SUBC_LIMB (c3, xl, xl, cl); 100 cl = c1 + c2 + c3; 106 return prev_p1 + cl; 116 mp_limb_t shifted_v0, u0, r0, p0, p1, prev_p1, xw, cl, xl; local 125 cl = 0; 133 xw = r0 - (prev_p1 + p0) + cl; 134 cl = (mp_limb_signed_t) xw >> GMP_NUMB_BITS; /* FIXME: non-portable */ 141 return prev_p1 - cl; [all...] |
| mod_1_4.c | 92 mp_limb_t rh, rl, bi, ph, pl, ch, cl, r; local 110 umul_ppmm (ch, cl, ap[n - 2], B2modb); 111 add_ssaaaa (ph, pl, ph, pl, ch, cl); 147 umul_ppmm (ch, cl, ap[i + 2], B2modb); 148 add_ssaaaa (ph, pl, ph, pl, ch, cl); 150 umul_ppmm (ch, cl, ap[i + 3], B3modb); 151 add_ssaaaa (ph, pl, ph, pl, ch, cl); 153 umul_ppmm (ch, cl, rl, B4modb); 154 add_ssaaaa (ph, pl, ph, pl, ch, cl); 160 umul_ppmm (rh, cl, rh, B1modb) [all...] |
| /src/external/cddl/osnet/dist/lib/libgen/common/ |
| gmatch.c | 59 n = mbtowc(&cl, p, MB_LEN_MAX); \ 60 c = cl; \ 72 wchar_t cl; local 75 n = mbtowc(&cl, s, MB_LEN_MAX); 80 scc = cl; 83 n = mbtowc(&cl, p, MB_LEN_MAX); 89 c = cl; 171 n = mbtowc(&cl, s, MB_LEN_MAX);
|
| /src/usr.bin/eject/ |
| am_glue.c | 61 CLIENT *cl; local 73 if ((cl = clntudp_bufcreate(&si, PMAPPROG, PMAPVERS, pingtv, 82 rv = CLNT_CALL(cl, (rpcproc_t)PMAPPROC_GETPORT, 86 CLNT_DESTROY(cl);
|
| /src/usr.bin/rwall/ |
| rwall.c | 105 CLIENT *cl; local 123 cl = clnt_create(wallhost, WALLPROG, WALLVERS, "udp"); 124 if (cl == NULL) { 135 if (clnt_call(cl, WALLPROC_WALL, xdr_wrapstring, (void *)&mbuf, 142 clnt_perror(cl, wallhost);
|
| /src/external/lgpl3/gmp/dist/mpn/sparc64/ |
| mod_1_4.c | 94 mp_limb_t rh, rl, bi, ph, pl, ch, cl, r; local 114 umul_ppmm_s (ch, cl, ap[n - 2], B2modb); 115 add_ssaaaa (ph, pl, ph, pl, ch, cl); 151 umul_ppmm_s (ch, cl, ap[i + 2], B2modb); 152 add_ssaaaa (ph, pl, ph, pl, ch, cl); 154 umul_ppmm_s (ch, cl, ap[i + 3], B3modb); 155 add_ssaaaa (ph, pl, ph, pl, ch, cl); 157 umul_ppmm_s (ch, cl, rl, B4modb); 158 add_ssaaaa (ph, pl, ph, pl, ch, cl); 164 umul_ppmm_s (rh, cl, rh, B1modb) [all...] |
| /src/lib/libc/rpc/ |
| clnt_generic.c | 232 CLIENT *cl = NULL; /* client handle */ local 246 &cl)) == NULL) { 250 if (cl == NULL) { 251 cl = clnt_tli_create(RPC_ANYFD, nconf, svcaddr, 255 if (CLNT_CONTROL(cl, CLSET_SVC_ADDR, (void *)svcaddr) == TRUE) { 256 if (cl->cl_netid == NULL) { 257 cl->cl_netid = strdup(nconf->nc_netid); 258 if (cl->cl_netid == NULL) 261 if (cl->cl_tp == NULL) { 262 cl->cl_tp = strdup(nconf->nc_device) 300 CLIENT *cl; \/* client handle *\/ local [all...] |
| /src/lib/libskey/ |
| put.c | 2235 unsigned char cl; local 2248 cl = (y >> 16) & 0xff; 2253 s[start / 8] |= cl; 2289 unsigned char cl; local 2299 cl = s[start / 8]; 2302 x = ((int) (cl << 8 | cc) << 8 | cr);
|
| /src/sbin/fsck_msdos/ |
| fat.c | 52 checkclnum(struct bootblock *boot, u_int fat, cl_t cl, cl_t *next) 67 cl, fat, 123 cl_t cl; local 200 for (cl = CLUST_FIRST; cl < boot->NumClusters;) { 203 fat[cl].next = p[0] + (p[1] << 8) 205 fat[cl].next &= boot->ClustMask; 206 ret |= checkclnum(boot, no, cl, &fat[cl].next); 207 cl++ 328 cl_t cl; local 480 cl_t cl; local [all...] |
| /src/sys/arch/sparc64/dev/ |
| pcons.c | 231 struct clist *cl; local 242 cl = &tp->t_outq; 243 len = q_to_b(cl, buf, OFBURSTLEN);
|
| /src/sys/arch/sun2/dev/ |
| pcons.c | 231 struct clist *cl; local 242 cl = &tp->t_outq; 243 len = q_to_b(cl, buf, OFBURSTLEN);
|
| /src/sys/dev/pci/cxgb/ |
| cxgb_osdep.c | 105 void m_cljset(struct mbuf *m, void *cl, int type) 107 MEXTADD(m, cl, m->m_len, M_DEVBUF, NULL, NULL); 114 uint8_t *cl; local 135 cl = mv->mv_vec[i].mi_base; 140 m0 = (struct mbuf *)cl; 143 m0->m_data = cl + offset; 158 m_cljset(m0, (uint8_t *)cl, type); 167 cl = mv->mv_vec[first].mi_base; 170 m_cljset(m, cl, type);
|
| /src/tests/lib/libm/ |
| t_round.c | 64 long double al = VALL, bl, cl; local 76 cl = roundl(-al); 80 ATF_CHECK(fabsl(cl) < SMALL_NUM);
|
| /src/usr.sbin/bthcid/ |
| client.c | 143 struct client *cl; local 159 cl = malloc(sizeof(struct client)); 160 if (cl == NULL) { 166 memset(cl, 0, sizeof(struct client)); 167 cl->fd = fd; 169 event_set(&cl->ev, fd, EV_READ | EV_PERSIST, process_client, cl); 170 if (event_add(&cl->ev, NULL) < 0) { 172 free(cl); 178 LIST_INSERT_HEAD(&client_list, cl, next) 188 struct client *cl = arg; local 260 struct client *cl; local [all...] |
| /src/usr.sbin/spray/ |
| spray.c | 66 CLIENT *cl; local 127 cl = clnt_create(*argv, SPRAYPROG, SPRAYVERS, "udp"); 128 if (cl == NULL) { 141 clnt_control(cl, CLSET_TIMEOUT, (caddr_t)&NO_DEFAULT); 145 if (clnt_call(cl, SPRAYPROC_CLEAR, xdr_void, NULL, xdr_void, NULL, TIMEOUT) != RPC_SUCCESS) { 146 clnt_perror(cl, progname); 156 clnt_call(cl, SPRAYPROC_SPRAY, xdr_sprayarr, &host_array, xdr_void, NULL, ONE_WAY); 165 if (clnt_call(cl, SPRAYPROC_GET, xdr_void, NULL, xdr_spraycumul, &host_stats, TIMEOUT) != RPC_SUCCESS) { 166 clnt_perror(cl, progname);
|
| /src/crypto/external/bsd/heimdal/dist/kdc/ |
| kdc-replay.c | 184 Der_class cl; local 188 &cl, &ty, &tag2, NULL); 191 if (MAKE_TAG(cl, ty, 0) != clty) 193 (int)MAKE_TAG(cl, ty, 0), (int)clty);
|
| process.c | 312 Der_class cl; local 316 &cl, &ty, &tag, NULL); 321 krb5_store_uint32(sp, MAKE_TAG(cl, ty, 0));
|