HomeSort by: relevance | last modified time | path
    Searched defs:gp (Results 1 - 25 of 228) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/games/hangman/
getword.c 51 char *wp, *gp; local
71 gp = Known;
74 *gp++ = '-';
77 *gp = '\0';
  /src/lib/libc/arch/hppa/gen/
_lwp.c 54 __greg_t *gp; local
68 gp = (__greg_t *)(fp & ~3);
69 fp = gp[0];
70 gr[_REG_R19] = gp[1];
makecontext.c 55 __greg_t *gp, rp, fp; local
73 gp = (__greg_t *)(rp & ~3);
74 rp = gp[0];
75 sp[-8] = gp[1];
80 gp = (__greg_t *)(fp & ~3);
81 fp = gp[0];
82 gr[_REG_R19] = gp[1];
  /src/external/bsd/nvi/dist/ex/
ex_tcl.c 51 GS *gp; local
56 gp = sp->gp;
57 if (gp->tcl_interp == NULL && tcl_init(gp))
74 if (Tcl_Eval(gp->tcl_interp, buf) == TCL_OK &&
75 Tcl_Eval(gp->tcl_interp, cmdp->argv[0]->bp) == TCL_OK)
78 msgq(sp, M_ERR, "Tcl: %s", ((Tcl_Interp *)gp->tcl_interp)->result);
ex_screen.c 109 GS *gp; local
114 gp = sp->gp;
115 if ((tsp = TAILQ_FIRST(&gp->hq)) == NULL) {
ex_util.c 134 GS *gp; local
136 gp = sp->gp;
138 if (gp->scr_screen(sp, SC_EX))
140 (void)gp->scr_attr(sp, SA_ALTERNATE, 0);
ex_append.c 83 GS *gp; local
91 gp = sp->gp;
212 if (gp->scr_screen(sp, SC_EX)) {
  /src/external/bsd/nvi/dist/ip/
ip_screen.c 38 GS *gp; local
41 gp = sp->gp;
45 if (F_ISSET(gp, G_SRESTART)) {
48 F_CLR(gp, G_SRESTART);
92 rval = ip_term_end(wp->gp);
  /src/sys/external/bsd/gnu-efi/dist/apps/
t6.c 9 unsigned long gp; member in struct:__anon6053
  /src/sys/arch/amiga/dev/
grf_cc.c 122 struct grf_softc *gp; local
125 gp = &congrf;
126 gp->g_device = &temp;
127 temp.dv_private = gp;
129 gp = device_private(self);
130 gp->g_device = self;
138 memcpy(&gp->g_display, &congrf.g_display,
139 (char *)&gp[1] - (char *)&gp->g_display);
141 gp->g_unit = GRF_CC_UNIT
    [all...]
  /src/sys/arch/ia64/include/
md_var.h 40 uint64_t gp; member in struct:ia64_fdesc
44 #define FDESC_GP(fn) (((struct ia64_fdesc *) fn)->gp)
  /src/sys/arch/x68k/dev/
grf_machdep.c 136 struct grf_softc *gp; local
143 gp = device_private(self);
144 gp->g_device = self;
145 gp->g_cfaddr = addr;
146 grfinit(gp, addr);
149 gp->g_display.gd_dwidth, gp->g_display.gd_dheight);
150 if (gp->g_display.gd_colors == 2)
153 aprint_normal("%d colors", gp->g_display.gd_colors);
154 aprint_normal(" %s display\n", gp->g_sw->gd_desc)
    [all...]
grf.c 115 struct grf_softc *gp; local
118 gp = device_lookup_private(&grf_cd, GRFUNIT(dev));
119 if (gp == NULL)
122 if ((gp->g_flags & GF_ALIVE) == 0)
125 if ((gp->g_flags & (GF_OPEN|GF_EXCLUDE)) == (GF_OPEN|GF_EXCLUDE))
133 if ((gp->g_flags & GF_OPEN) == 0) {
134 gp->g_flags |= GF_OPEN;
135 error = grfon(gp);
144 struct grf_softc *gp = device_lookup_private(&grf_cd, GRFUNIT(dev)); local
146 if ((gp->g_flags & GF_ALIVE) == 0
160 struct grf_softc *gp = device_lookup_private(&grf_cd, GRFUNIT(dev)); local
263 struct grf_softc *gp = device_lookup_private(&grf_cd, GRFUNIT(dev)); local
284 struct grf_softc *gp = device_lookup_private(&grf_cd, GRFUNIT(dev)); local
    [all...]
  /src/tests/lib/libc/ttyio/
t_ptm.c 65 struct group *gp; local
97 ATF_REQUIRE_MSG((gp = getgrnam("tty")) != NULL,
99 ATF_REQUIRE_EQ_MSG(sts.st_gid, gp->gr_gid, "bad slave grid");
130 struct group *gp; local
161 ATF_REQUIRE_MSG((gp = getgrnam("tty")) != NULL,
164 ATF_REQUIRE_EQ_MSG(sts.st_gid, gp->gr_gid, "bad slave gid");
  /src/usr.bin/mail/
vars.c 170 struct group *gp; local
177 for (gp = gh->g_list; gp != NULL; gp = gp->ge_link)
178 (void)printf(" %s", gp->ge_name);
  /src/external/bsd/nvi/dist/common/
gs.c 37 GS *gp; local
45 CALLOC_NOMSG(NULL, gp, GS *, 1, sizeof(GS));
46 if (gp == NULL)
49 gp->progname = name;
53 TAILQ_INIT(&gp->dq);
55 TAILQ_INIT(&gp->hq);
56 gp->noprint = DEFAULT_NOPRINT;
59 TAILQ_INIT(&gp->frefq);
60 TAILQ_INIT(&gp->exfq);
61 LIST_INIT(&gp->seqq)
    [all...]
screen.c 45 screen_init(GS *gp, SCR *orig, SCR **spp)
55 sp->id = ++gp->id;
58 sp->gp = gp; /* All ref the GS structure. */
241 GS *gp; local
246 gp = sp->gp;
255 if ((next = TAILQ_FIRST(&gp->hq)) != NULL) {
256 TAILQ_REMOVE(&gp->hq, next, q);
seq.c 119 LIST_INSERT_HEAD(&sp->gp->seqq, qp, q);
126 bit_set(sp->gp->seqb, qp->input[0]);
193 for (lqp = NULL, qp = LIST_FIRST(&sp->gp->seqq);
255 seq_close(GS *gp)
259 while ((qp = LIST_FIRST(&gp->seqq)) != NULL) {
281 GS *gp; local
286 gp = sp->gp;
287 LIST_FOREACH(qp, &gp->seqq, q) {
331 LIST_FOREACH(qp, &sp->gp->seqq, q)
    [all...]
  /src/external/lgpl3/gmp/dist/mpz/
gcdext.c 42 mp_ptr gp, tmp_gp, tmp_sp; local
71 gp = MPZ_NEWALLOC (g, asize);
72 MPN_COPY (gp, PTR (a), asize);
129 gp = MPZ_NEWALLOC (g, gsize);
130 MPN_COPY (gp, tmp_gp, gsize);
  /src/usr.sbin/chroot/
chroot.c 85 struct group *gp; local
87 if ((gp = getgrnam(group)) != NULL)
88 return gp->gr_gid;
  /src/usr.sbin/umcpmioctl/
putflash.c 56 uint8_t *gp; local
69 req->u.gp.gp0_settings = current_flash.res.mcp2221_get_flash_res.u.gp.gp0_settings;
70 req->u.gp.gp1_settings = current_flash.res.mcp2221_get_flash_res.u.gp.gp1_settings;
71 req->u.gp.gp2_settings = current_flash.res.mcp2221_get_flash_res.u.gp.gp2_settings;
72 req->u.gp.gp3_settings = current_flash.res.mcp2221_get_flash_res.u.gp.gp3_settings;
75 fprintf(stderr, "CURRENT FLASH: %02x %02x %02x %02x\n", current_flash.res.mcp2221_get_flash_res.u.gp.gp0_settings, current_flash.res.mcp2221_get_flash_res.u.gp.gp1_settings, current_flash.res.mcp2221 (…)
172 uint8_t *gp; local
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/test/
test_acl_platform_posix1e.c 174 gid_t g, *gp; local
201 gp = acl_get_qualifier(aclent);
202 g = *gp;
203 acl_free(gp);
  /src/games/hack/
hack.main.c 295 char *gp = genocided; local
299 *gp++ = pm->mlet;
302 *gp = 0;
  /src/sys/arch/atari/dev/
grf.c 171 struct grf_softc *gp; local
176 gp = grfsp[GRFUNIT(dev)];
177 if (gp == NULL)
180 if ((gp->g_flags & GF_ALIVE) == 0)
183 if ((gp->g_flags & (GF_OPEN|GF_EXCLUDE)) == (GF_OPEN|GF_EXCLUDE))
185 grf_viewsync(gp);
194 struct grf_softc *gp; local
196 gp = grfsp[GRFUNIT(dev)];
198 gp->g_flags &= GF_ALIVE;
206 struct grf_softc *gp; local
271 struct grf_softc *gp; local
304 struct grf_softc *gp; local
322 struct grf_softc *gp; local
346 struct grf_softc *gp; local
    [all...]
  /src/sys/dev/fdt/
fdt_gpio.c 115 struct fdtbus_gpio_pin *gp = NULL; local
134 gp = kmem_alloc(sizeof(*gp), KM_SLEEP);
135 gp->gp_gc = gc;
136 gp->gp_priv = gc->gc_funcs->acquire(gc->gc_dev,
138 if (gp->gp_priv == NULL) {
139 kmem_free(gp, sizeof(*gp));
148 return gp;
152 fdtbus_gpio_release(struct fdtbus_gpio_pin *gp)
    [all...]

Completed in 34 milliseconds

1 2 3 4 5 6 7 8 910