/src/sys/arch/mvme68k/stand/sboot/ |
clock.c | 104 struct clockreg *cl = clockreg; local in function:time 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 in function:db_show_all_devices 80 cl = "????"; 82 cl = classnames[i]; 85 db_printf(" %10s", cl);
|
/src/usr.bin/eject/ |
am_glue.c | 61 CLIENT *cl; local in function:ping_pmap 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 in function:main 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/lib/libc/citrus/ |
citrus_ctype_template.h | 515 _FUNCNAME(ctype_init)(void ** __restrict cl, 520 _DIAGASSERT(cl != NULL); 530 *cl = (void *)cei; 536 _FUNCNAME(ctype_uninit)(void *cl) 538 if (cl) { 539 _FUNCNAME(encoding_module_uninit)(_CEI_TO_EI(_TO_CEI(cl))); 540 free(cl); 546 _FUNCNAME(ctype_get_mb_cur_max)(void *cl) 548 return _ENCODING_MB_CUR_MAX(_CEI_TO_EI(_TO_CEI(cl))); 552 _FUNCNAME(ctype_mblen)(void * __restrict cl, 663 void *cl = cc->cc_closure; local in function:_FUNCNAME 798 void *cl = cc->cc_closure; local in function:_FUNCNAME [all...] |
citrus_csmapper.c | 222 struct _lookup *cl; local in function:find_dst 225 ret = _lookup_seq_open(&cl, CS_PIVOT, _LOOKUP_CASE_IGNORE); 229 ret = _lookup_seq_lookup(cl, pasrc->dst, &data); 238 ret = _lookup_seq_next(cl, NULL, &data); 240 _lookup_seq_close(cl); 250 struct _lookup *cl; local in function:find_best_pivot_lookup 256 ret = _lookup_seq_open(&cl, CS_PIVOT, _LOOKUP_CASE_IGNORE); 263 ret = _lookup_seq_lookup(cl, src, &data); 275 ret = _lookup_seq_next(cl, NULL, &data); 277 _lookup_seq_close(cl); [all...] |
citrus_lookup.c | 90 seq_get_num_entries_db(struct _citrus_lookup *cl) 92 return cl->cl_dbnum; 96 seq_next_db(struct _citrus_lookup *cl, 100 if (cl->cl_key) { 102 _region_init(key, cl->cl_key, cl->cl_keylen); 103 return _db_lookup_by_s(cl->cl_db, cl->cl_key, data, 104 &cl->cl_dblocator); 107 if (cl->cl_rewind) 275 struct _citrus_lookup *cl; local in function:_citrus_lookup_seq_open 337 struct _citrus_lookup *cl; local in function:_citrus_lookup_simple [all...] |
/src/lib/libc/rpc/ |
clnt_generic.c | 232 CLIENT *cl = NULL; /* client handle */ local in function:clnt_tp_create 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 in function:clnt_tli_create [all...] |
rpc_soc.c | 111 CLIENT *cl; local in function:clnt_com_create 156 cl = clnt_tli_create(fd, nconf, &bindaddr, prog, vers, 158 if (cl) { 163 (void) CLNT_CONTROL(cl, CLSET_FD_CLOSE, NULL); 168 return (cl); 186 CLIENT *cl; local in function:clntudp_bufcreate 191 cl = clnt_com_create(raddr, (rpcprog_t)prog, (rpcvers_t)vers, sockp, 193 if (cl == NULL) { 196 (void) CLNT_CONTROL(cl, CLSET_RETRY_TIMEOUT, (char *)(void *)&wait); 197 return (cl); [all...] |
/src/lib/libskey/ |
put.c | 2235 unsigned char cl; local in function:insert 2248 cl = (y >> 16) & 0xff; 2253 s[start / 8] |= cl; 2289 unsigned char cl; local in function:extract 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 in function:readfat 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 in function:comparefat 480 cl_t cl; local in function:writefat [all...] |
/src/sys/arch/sparc64/dev/ |
pcons.c | 231 struct clist *cl; local in function:pconsstart 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 in function:pconsstart 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 in function:_m_explode 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/usr.sbin/spray/ |
spray.c | 66 CLIENT *cl; local in function:main 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/tests/lib/libm/ |
t_round.c | 64 long double al = VALL, bl, cl; local in function:ATF_TC_BODY 76 cl = roundl(-al); 80 ATF_CHECK(fabsl(cl) < SMALL_NUM);
|
/src/usr.sbin/bthcid/ |
client.c | 143 struct client *cl; local in function:process_control 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 in function:process_client 260 struct client *cl; local in function:send_client_request [all...] |
/src/sys/arch/bebox/stand/boot/ |
wdc.c | 152 uint8_t drive, cl, ch; local in function:wdcprobe 210 cl = WDC_READ_REG(chp, wd_cyl_lo); 212 if (cl == 0x14 && ch == 0xeb) {
|
/src/sys/arch/vax/vax/ |
gencons.c | 196 struct clist *cl; local in function:gencnstart 207 cl = &tp->t_outq; 211 ch = getc(cl);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/ |
nouveau_nvkm_subdev_fb_nv50.c | 147 const struct nvkm_enum *en, *re, *cl, *sc; local in function:nv50_fb_intr 181 cl = nvkm_enum_find(vm_client, st2); 182 if (cl && cl->data) sc = nvkm_enum_find(cl->data, st3); 195 st2, cl ? cl->name : "", st3, sc ? sc->name : "",
|
/src/sys/fs/ntfs/ |
ntfs_subr.h | 59 cn_t * cl; member in struct:ntvattr::__anonee9b4d39010a::__anonee9b4d390208 69 #define va_vruncl va_d.vrun.cl
|
/src/usr.sbin/rpc.pcnfsd/ |
pcnfsd_test.c | 9 CLIENT *cl; variable in typeref:typename:CLIENT * 45 cl = clnt_create(server, PCNFSDPROG, PCNFSDVERS, transport); 46 if(cl == NULL) {
|
/src/lib/libcurses/ |
color.c | 660 uint32_t cl = COLOR_PAIR(pair); local in function:__change_pair 676 if ((lp->line[x].attr & __COLOR) == cl) 686 __COLOR) == cl) {
|
/src/sys/kern/ |
sched_4bsd.c | 467 lwp_t *pl, *cl; local in function:sched_proc_exit 473 cl = LIST_FIRST(&child->p_lwps); 476 if (cl->l_estcpu > estcpu) { 478 pl->l_estcpu = ESTCPULIM(pl->l_estcpu + cl->l_estcpu - estcpu);
|
/src/usr.bin/make/ |
hash.c | 205 unsigned b, cl, max_cl = 0; local in function:HashTable_MaxChain 208 for (cl = 0; he != NULL; he = he->next) 209 cl++; 210 if (cl > max_cl) 211 max_cl = cl;
|