Searched refs:area (Results 1 - 25 of 54) sorted by relevance

123

/freebsd-12-stable/contrib/telnet/libtelnet/
H A Dgetent.c45 static char *area; variable
56 retval = cgetent(&area, dba, tempnam) == 0 ? 1 : 0;
69 retval = cgetstr(area, tempid, &answer);
/freebsd-12-stable/contrib/tcsh/
H A Dvms.termcap.c202 * it in area (advancing area at same time). Expand escape sequences
206 tgetstr(char *id, char **area) argument
224 for (ret = *area, cp++; *cp && *cp != ':' ;
225 (*area)++, cp++)
228 **area = *++cp - '@'; /* fix (efth)*/
233 **area = CTL_ESC('\033');
236 **area = '\n';
239 **area = '\r';
242 **area
[all...]
/freebsd-12-stable/contrib/gdb/gdb/
H A Ds390-nat.c239 The only thing we actually need is the total address space area
280 struct watch_area *area; local
282 for (area = watch_base; area; area = area->next)
284 watch_lo_addr = min (watch_lo_addr, area->lo_addr);
285 watch_hi_addr = max (watch_hi_addr, area->hi_addr);
314 struct watch_area *area = xmalloc (sizeof (struct watch_area)); local
315 if (!area)
331 struct watch_area *area, **parea; local
[all...]
/freebsd-12-stable/lib/libc/rpc/
H A Dsvc_auth_unix.c67 struct area { struct
71 } *area; local
79 area = (struct area *) rqst->rq_clntcred;
80 aup = &area->area_aup;
81 aup->aup_machname = area->area_machname;
82 aup->aup_gids = area->area_gids;
H A Dsvc_auth_des.c129 struct area { struct
132 } *area; local
138 area = (struct area *)rqst->rq_clntcred;
139 cred = (struct authdes_cred *)&area->area_cred;
152 cred->adc_fullname.name = area->area_netname;
/freebsd-12-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_termcap.c345 * tgetstr(str, area)
353 NCURSES_SP_NAME(tgetstr) (NCURSES_SP_DCLx NCURSES_CONST char *id, char **area) argument
358 T((T_CALLED("tgetstr(%s,%p)"), id, (void *) area));
389 if (area != 0
390 && *area != 0) {
391 _nc_STRCPY(*area, result, 1024);
392 result = *area;
393 *area += strlen(*area) + 1;
403 tgetstr(NCURSES_CONST char *id, char **area) argument
[all...]
/freebsd-12-stable/tools/tools/locale/
H A DMakefile55 .for area enc in ${COLLATION_SPECIAL}
56 COLLATIONS_SPECIAL_ENV+= ${area}.${enc}
128 .for area enc in ${COLLATION_SPECIAL}
129 colldef.draft/${area}.${enc}.src: posix/${area}.${enc}.src
224 .for area in ${BASE_LOCALES_OF_INTEREST}
225 posixsrc: build-tools posix/${area}.UTF-8.src
226 .ORDER: build-tools posix/${area}.UTF-8.src
227 posix/${area}.UTF-8.src:
230 -d posix -m ${area}
[all...]
/freebsd-12-stable/sys/dev/fb/
H A Dcreator_vt.c225 const term_rect_t *area)
235 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
236 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
260 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
261 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
262 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
263 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
224 creatorfb_bitblt_text(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
/freebsd-12-stable/release/picobsd/tinyware/msh/
H A Dsh1.c789 /* -------- area.c -------- */
797 /* #include "area.h" */
801 int area; member in struct:region
806 * exclusively administered by the area management routines.
809 static struct region *areabot; /* bottom of area */
810 static struct region *areatop; /* top of area */
820 areabot->area = BUSY;
836 * round upwards and add administration area
840 if (p->area > areanum) {
844 while ((q = p->next)->area > areanu
[all...]
/freebsd-12-stable/sys/dev/vt/
H A Dvt_buf.c271 vtbuf_dirty(struct vt_buf *vb, const term_rect_t *area) argument
274 if (vb->vb_dirtyrect.tr_begin.tp_row > area->tr_begin.tp_row)
275 vb->vb_dirtyrect.tr_begin.tp_row = area->tr_begin.tp_row;
276 if (vb->vb_dirtyrect.tr_begin.tp_col > area->tr_begin.tp_col)
277 vb->vb_dirtyrect.tr_begin.tp_col = area->tr_begin.tp_col;
278 if (vb->vb_dirtyrect.tr_end.tp_row < area->tr_end.tp_row)
279 vb->vb_dirtyrect.tr_end.tp_row = area->tr_end.tp_row;
280 if (vb->vb_dirtyrect.tr_end.tp_col < area->tr_end.tp_col)
281 vb->vb_dirtyrect.tr_end.tp_col = area->tr_end.tp_col;
287 term_rect_t area; local
315 term_rect_t area; local
671 term_rect_t area; local
[all...]
H A Dvt_core.c693 * Compute the drawable area, so that the text is centered on
1195 vt_is_cursor_in_area(const struct vt_device *vd, const term_rect_t *area) argument
1206 if (mx >= area->tr_end.tp_col ||
1207 mx + vd->vd_mcursor->width <= area->tr_begin.tp_col ||
1208 my >= area->tr_end.tp_row ||
1209 my + vd->vd_mcursor->height <= area->tr_begin.tp_row)
1217 term_rect_t area; local
1229 area.tr_begin.tp_col = x / vf->vf_width;
1230 area.tr_begin.tp_row = y / vf->vf_height;
1231 area
1259 vt_set_border(struct vt_device *vd, const term_rect_t *area, const term_color_t c) argument
[all...]
H A Dvt.h230 void vtbuf_dirty(struct vt_buf *vb, const term_rect_t *area);
284 term_rect_t vw_draw_area; /* (?) Drawable area. */
326 const term_rect_t *area);
328 const term_rect_t *area);
453 const term_rect_t *area);
/freebsd-12-stable/contrib/gcc/config/mips/
H A Dcrti.asm1 /* 4 slots for argument spill area. 1 for cpreturn, 1 for stack.
H A Dcrtn.asm1 /* 4 slots for argument spill area. 1 for cpreturn, 1 for stack.
/freebsd-12-stable/usr.sbin/rtadvd/
H A Dadvcap.c358 * placed in area, which is a ref parameter which is updated.
359 * No checking on area overflow.
362 tgetstr(char *id, char **area) argument
378 return (tdecode(bp, area));
387 tdecode(char *str, char **area) argument
396 cp = *area;
435 str = *area;
436 *area = cp;
/freebsd-12-stable/sys/dev/vt/hw/fb/
H A Dvt_fb.c332 const term_rect_t *area)
343 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
344 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
381 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
382 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
383 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
384 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
398 vt_fb_invalidate_text(struct vt_device *vd, const term_rect_t *area) argument
331 vt_fb_bitblt_text(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
[all...]
/freebsd-12-stable/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c240 const term_rect_t *area)
250 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
251 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
275 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
276 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
277 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
278 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
239 ofwfb_bitblt_text(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
/freebsd-12-stable/contrib/apr/mmap/unix/
H A Dmmap.c62 rv = delete_area(mm->area);
106 /* There seems to be some strange interactions that mean our area must
115 /* we failed to get an area we can use... */
123 (*new)->area = aid;
/freebsd-12-stable/contrib/apr/include/
H A Dapr_mmap.h66 /** An area ID. Only valid on BeOS */
67 area_id area; member in struct:apr_mmap_t
72 /** The start of the real memory page area (mapped view) */
79 /** The start of the memory mapped area */
/freebsd-12-stable/usr.bin/tabs/
H A Dtabs.c85 char area[1024], *ap, *arg, *end; local
144 ap = area;
/freebsd-12-stable/lib/libc/iconv/
H A Dcitrus_mapper.c69 * create mapper area
75 const char *__restrict area)
89 snprintf(path, (size_t)PATH_MAX, "%s/%s", area, _CITRUS_MAPPER_DIR);
100 ma->ma_dir = strdup(area);
73 _citrus_mapper_create_area( struct _citrus_mapper_area *__restrict *__restrict rma, const char *__restrict area) argument
/freebsd-12-stable/contrib/amd/fsinfo/
H A Dfsi_util.c232 show_area_being_processed(char *area, int n) argument
245 if (!last_area || !STREQ(area, last_area)) {
251 (void) col_output(strlen(area) + 2);
252 fprintf(stdout, "[%s", area);
253 last_area = area;
H A Dfsinfo.h99 extern void show_area_being_processed(char *area, int n);
/freebsd-12-stable/sys/dev/vt/hw/vga/
H A Dvt_vga.c643 * i is in the margin used to center the text area on
719 * to mark the area dirty.
783 const term_rect_t *area)
795 * This is calculated from the top-left column of te dirty area:
800 * NOTE: x offset is used to center the text area on the
815 col = area->tr_begin.tp_col;
816 row = area->tr_begin.tp_row;
827 * on the "right border" of the dirty area.
830 col = area->tr_end.tp_col;
831 row = area
782 vga_bitblt_text_gfxmode(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
864 vga_bitblt_text_txtmode(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
922 vga_bitblt_text(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
934 vga_invalidate_text(struct vt_device *vd, const term_rect_t *area) argument
[all...]
/freebsd-12-stable/sys/dev/xen/grant_table/
H A Dgrant_table.c531 vm_offset_t area; local
533 area = kva_alloc(PAGE_SIZE * max_nr_grant_frames());
534 KASSERT(area, ("can't allocate VM space for grant table"));
535 shared = (grant_entry_t *)area;

Completed in 295 milliseconds

123