Symbol: glue
lib/libc/stdio/findfp.c
58
static struct glue uglue = { 0, FOPEN_MAX - 3, usual };
lib/libc/stdio/findfp.c
59
static struct glue *lastglue = &uglue;
lib/libc/stdio/findfp.c
71
static struct glue sglue2 = { &uglue, 1, __stderr };
lib/libc/stdio/findfp.c
72
static struct glue sglue1 = { &sglue2, 1, __stdout };
lib/libc/stdio/findfp.c
73
struct glue __sglue = { &sglue1, 1, __stdin };
lib/libc/stdio/findfp.c
75
static struct glue *
lib/libc/stdio/findfp.c
78
struct glue *g;
lib/libc/stdio/findfp.c
84
g = (struct glue *)data;
lib/libc/stdio/findfp.c
99
struct glue *g;
lib/libc/stdio/fwalk.c
44
struct glue *g;
lib/libc/stdio/glue.h
40
struct glue *next;
lib/libc/stdio/glue.h
46
extern struct glue __sglue;
sys/dev/fdt/dwpcie.c
393
int atu, config, ctrl, glue;
sys/dev/fdt/dwpcie.c
428
glue = OF_getindex(faa->fa_node, "cfg", "reg-names");
sys/dev/fdt/dwpcie.c
429
if (glue < 0 || glue >= faa->fa_nreg) {
sys/dev/fdt/dwpcie.c
434
sc->sc_glue_base = faa->fa_reg[glue].addr;
sys/dev/fdt/dwpcie.c
435
sc->sc_glue_size = faa->fa_reg[glue].size;
sys/dev/fdt/dwpcie.c
440
glue = OF_getindex(faa->fa_node, "apb", "reg-names");
sys/dev/fdt/dwpcie.c
441
if (glue < 0 || glue >= faa->fa_nreg) {
sys/dev/fdt/dwpcie.c
446
sc->sc_glue_base = faa->fa_reg[glue].addr;
sys/dev/fdt/dwpcie.c
447
sc->sc_glue_size = faa->fa_reg[glue].size;
sys/dev/fdt/dwpcie.c
451
glue = OF_getindex(faa->fa_node, "link", "reg-names");
sys/dev/fdt/dwpcie.c
452
if (glue < 0 || glue >= faa->fa_nreg) {
sys/dev/fdt/dwpcie.c
457
sc->sc_glue_base = faa->fa_reg[glue].addr;
sys/dev/fdt/dwpcie.c
458
sc->sc_glue_size = faa->fa_reg[glue].size;
usr.sbin/npppd/common/radish.c
337
struct radish *parent = cur->rd_p, *glue;
usr.sbin/npppd/common/radish.c
347
R_Malloc(glue, struct radish *, sizeof(*glue) + slen);
usr.sbin/npppd/common/radish.c
348
if (glue == NULL) {
usr.sbin/npppd/common/radish.c
352
Bzero(glue, sizeof(*glue) + slen);
usr.sbin/npppd/common/radish.c
362
glue->rd_route = (struct sockaddr *)(glue + 1);
usr.sbin/npppd/common/radish.c
363
glue->rd_masklen = 8 * misbyte + maskb;
usr.sbin/npppd/common/radish.c
364
glue->rd_masklim = misbyte;
usr.sbin/npppd/common/radish.c
365
glue->rd_bmask = rd_bmask[maskb];
usr.sbin/npppd/common/radish.c
366
glue->rd_btest = rd_btest[maskb];
usr.sbin/npppd/common/radish.c
367
glue->rd_rtent = NULL;
usr.sbin/npppd/common/radish.c
368
glue->rd_p = parent;
usr.sbin/npppd/common/radish.c
369
glue->rd_mask = (struct sockaddr *)
usr.sbin/npppd/common/radish.c
370
((u_char *)head->rdh_masks + slen * glue->rd_masklen);
usr.sbin/npppd/common/radish.c
373
gp = (u_char *)glue->rd_route;
usr.sbin/npppd/common/radish.c
380
gp[misbyte] = cp[misbyte] & glue->rd_bmask;
usr.sbin/npppd/common/radish.c
382
if (glue->rd_btest & cp[misbyte]) {
usr.sbin/npppd/common/radish.c
383
glue->rd_r = cur;
usr.sbin/npppd/common/radish.c
384
glue->rd_l = new;
usr.sbin/npppd/common/radish.c
386
glue->rd_r = new;
usr.sbin/npppd/common/radish.c
387
glue->rd_l = cur;
usr.sbin/npppd/common/radish.c
393
new->rd_p = cur->rd_p = glue;
usr.sbin/npppd/common/radish.c
399
parent->rd_l = glue;
usr.sbin/npppd/common/radish.c
401
parent->rd_r = glue;