Searched refs:rl (Results 76 - 100 of 217) sorted by relevance

123456789

/freebsd-11-stable/sys/dev/sound/pcm/
H A Dfeeder_mixer.c193 b->rl = 0;
207 if (b->rl < sndbuf_getalign(b)) {
208 b->rl = 0;
216 rdy = b->rl;
252 if (b->rl != 0)
259 b->rl = rdy;
267 b->rl = 1;
H A Dbuffer.h47 volatile int rl; /* length of ready area */ member in struct:snd_dbuf
77 void sndbuf_fillsilence_rl(struct snd_dbuf *b, u_int rl);
/freebsd-11-stable/sys/mips/mips/
H A Dnexus.c229 struct resource_list *rl = &ndev->nx_resources; local
232 if (STAILQ_FIRST(rl))
235 retval += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
236 retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
351 struct resource_list *rl = &ndev->nx_resources; local
357 rle = resource_list_add(rl, type, rid, start, start + count - 1,
370 struct resource_list *rl = &ndev->nx_resources; local
373 rle = resource_list_find(rl, type, rid);
387 struct resource_list *rl = &ndev->nx_resources; local
391 resource_list_delete(rl, typ
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-resp.c190 #define TEST_RET_LEN(rl) \
191 if (rl < 0) { goto trunc; } else { return rl; }
198 #define TEST_RET_LEN_NORETURN(rl) \
199 if (rl < 0) { goto trunc; }
/freebsd-11-stable/contrib/wpa/src/tls/
H A Dtlsv1_client_write.c132 if (conn->rl.tls_version >= TLS_VERSION_1_2) {
248 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
330 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
526 suite = tls_get_cipher_suite(conn->rl.cipher_suite);
559 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
621 if (conn->rl.tls_version == TLS_VERSION_1_2) {
686 if (conn->rl.tls_version >= TLS_VERSION_1_2) {
730 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
758 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_CHANGE_CIPHER_SPEC,
767 if (tlsv1_record_change_write_cipher(&conn->rl) <
[all...]
H A Dtlsv1_client_i.h21 struct tlsv1_record_layer rl; member in struct:tlsv1_client
H A Dtlsv1_server_i.h22 struct tlsv1_record_layer rl; member in struct:tlsv1_server
/freebsd-11-stable/sys/kern/
H A Dsubr_bus.c3084 * @param rl the resource list to initialise
3087 resource_list_init(struct resource_list *rl) argument
3089 STAILQ_INIT(rl);
3098 * @param rl the resource list to free
3101 resource_list_free(struct resource_list *rl) argument
3105 while ((rle = STAILQ_FIRST(rl)) != NULL) {
3108 STAILQ_REMOVE_HEAD(rl, link);
3120 * @param rl the resource list to edit
3127 resource_list_add_next(struct resource_list *rl, int type, rman_res_t start, argument
3133 while (resource_list_find(rl, typ
3155 resource_list_add(struct resource_list *rl, int type, int rid, rman_res_t start, rman_res_t end, rman_res_t count) argument
3195 resource_list_busy(struct resource_list *rl, int type, int rid) argument
3224 resource_list_reserved(struct resource_list *rl, int type, int rid) argument
3245 resource_list_find(struct resource_list *rl, int type, int rid) argument
3264 resource_list_delete(struct resource_list *rl, int type, int rid) argument
3313 resource_list_reserve(struct resource_list *rl, device_t bus, device_t child, int type, int *rid, rman_res_t start, rman_res_t end, rman_res_t count, u_int flags) argument
3370 resource_list_alloc(struct resource_list *rl, device_t bus, device_t child, int type, int *rid, rman_res_t start, rman_res_t end, rman_res_t count, u_int flags) argument
3443 resource_list_release(struct resource_list *rl, device_t bus, device_t child, int type, int rid, struct resource *res) argument
3500 resource_list_release_active(struct resource_list *rl, device_t bus, device_t child, int type) argument
3543 resource_list_unreserve(struct resource_list *rl, device_t bus, device_t child, int type, int rid) argument
3581 resource_list_print_type(struct resource_list *rl, const char *name, int type, const char *format) argument
3616 resource_list_purge(struct resource_list *rl) argument
4343 struct resource_list * rl = NULL; local
4374 struct resource_list * rl = NULL; local
4396 struct resource_list * rl = NULL; local
4418 struct resource_list * rl = NULL; local
4442 struct resource_list * rl = NULL; local
[all...]
H A Dkern_resource.c560 struct rlimit rl; local
565 lim_rlimit(td, uap->which, &rl);
576 olim.rlim_cur = rl.rlim_cur > 0x7fffffff ? 0x7fffffff : rl.rlim_cur;
577 olim.rlim_max = rl.rlim_max > 0x7fffffff ? 0x7fffffff : rl.rlim_max;
1241 struct rlimit rl; local
1243 lim_rlimit(td, which, &rl);
1244 return (rl.rlim_max);
1250 struct rlimit rl; local
1263 struct rlimit rl; local
1272 struct rlimit rl; local
[all...]
/freebsd-11-stable/contrib/tnftp/src/
H A Dcmdtab.c214 { "dir", H(lshelp), 1, 1, 1, CMPL(rl) ls },
226 { "get", H(receivehelp), 1, 1, 1, CMPL(rl) get },
236 { "ls", H(lshelp), 1, 1, 1, CMPL(rl) ls },
252 { "nlist", H(lshelp), 1, 1, 1, CMPL(rl) ls },
271 { "recv", H(receivehelp), 1, 1, 1, CMPL(rl) get },
272 { "reget", H(regethelp), 1, 1, 1, CMPL(rl) reget },
/freebsd-11-stable/sys/dev/bhnd/
H A Dbhnd.c387 struct resource_list *rl; local
392 rl = BUS_GET_RESOURCE_LIST(dev, child);
393 if (rl != NULL) {
394 retval += resource_list_print_type(rl, "mem", SYS_RES_MEMORY,
415 struct resource_list *rl; local
441 rl = BUS_GET_RESOURCE_LIST(dev, child);
442 if (rl != NULL)
443 resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
/freebsd-11-stable/lib/libc/locale/
H A Dascii.c64 _ascii_init(struct xlocale_ctype *l,_RuneLocale *rl) argument
72 l->runes = rl;
H A Dbig5.c74 _BIG5_init(struct xlocale_ctype *l, _RuneLocale *rl) argument
82 l->runes = rl;
H A Dgb2312.c64 _GB2312_init(struct xlocale_ctype *l, _RuneLocale *rl) argument
67 l->runes = rl;
H A Dgbk.c71 _GBK_init(struct xlocale_ctype *l, _RuneLocale *rl) argument
79 l->runes = rl;
H A Dmskanji.c76 _MSKanji_init(struct xlocale_ctype *l, _RuneLocale *rl) argument
84 l->runes = rl;
H A Dnone.c74 _none_init(struct xlocale_ctype *l, _RuneLocale *rl) argument
82 l->runes = rl;
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_shift.c59 shift(SCR *sp, EXCMD *cmdp, enum which rl) argument
117 if (rl == RIGHT)
/freebsd-11-stable/sys/powerpc/powermac/
H A Dmacio.c442 struct resource_list *rl; local
446 rl = &dinfo->mdi_resources;
450 retval += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
451 retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
463 struct resource_list *rl; local
468 rl = &dinfo->mdi_resources;
473 resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
474 resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
H A Duninorth.c420 struct resource_list *rl; local
424 rl = &dinfo->udi_resources;
428 retval += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
429 retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
440 struct resource_list *rl; local
445 rl = &dinfo->udi_resources;
450 resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
451 resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
/freebsd-11-stable/sys/sparc64/ebus/
H A Debus.c433 struct resource_list *rl; local
444 rl = BUS_GET_RESOURCE_LIST(bus, child);
450 rle = resource_list_find(rl, type, *rid);
506 return (resource_list_alloc(rl, bus, child, type, rid, start,
559 struct resource_list *rl; local
564 rl = BUS_GET_RESOURCE_LIST(bus, child);
576 rle = resource_list_find(rl, type, rid);
585 return (resource_list_release(rl, bus, child, type, rid, res));
/freebsd-11-stable/sys/mips/rt305x/
H A Dobio.c380 struct resource_list *rl; local
383 rl = obio_get_resource_list(dev, child);
384 if (rl == NULL)
386 rle = resource_list_find(rl, type, rid);
580 struct resource_list *rl = &ivar->resources; local
583 if (STAILQ_FIRST(rl))
586 retval += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
587 retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
/freebsd-11-stable/usr.sbin/rpcbind/
H A Drpcbind.c132 struct rlimit rl; local
147 getrlimit(RLIMIT_NOFILE, &rl);
148 if (rl.rlim_cur < 128) {
149 if (rl.rlim_max <= 128)
150 rl.rlim_cur = rl.rlim_max;
152 rl.rlim_cur = 128;
153 setrlimit(RLIMIT_NOFILE, &rl);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_restrict.c239 restrict_u * rl; local
247 rl = eallocarray(count, cb);
249 res = (void *)((char *)rl + (count - 1) * cb);
254 INSIST(rl == res);
265 restrict_u * rl; local
273 rl = eallocarray(count, cb);
275 res = (void *)((char *)rl + (count - 1) * cb);
280 INSIST(rl == res);
/freebsd-11-stable/sys/sparc64/central/
H A Dcentral.c220 struct resource_list *rl; local
235 rl = BUS_GET_RESOURCE_LIST(bus, child);
239 return (resource_list_alloc(rl, bus, child, type, rid, start,
243 rle = resource_list_find(rl, type, *rid);

Completed in 362 milliseconds

123456789