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

12

/freebsd-current/contrib/telnet/libtelnet/
H A Dgetent.c41 static char *area; variable
52 retval = cgetent(&area, dba, tempnam) == 0 ? 1 : 0;
65 retval = cgetstr(area, tempid, &answer);
/freebsd-current/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-current/lib/libc/rpc/
H A Dsvc_auth_unix.c60 struct area { struct
64 } *area; local
72 area = (struct area *) rqst->rq_clntcred;
73 aup = &area->area_aup;
74 aup->aup_machname = area->area_machname;
75 aup->aup_gids = area->area_gids;
H A Dsvc_auth_des.c123 struct area { struct
126 } *area; local
132 area = (struct area *)rqst->rq_clntcred;
133 cred = (struct authdes_cred *)&area->area_cred;
146 cred->adc_fullname.name = area->area_netname;
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dlib_termcap.c350 * tgetstr(str, area)
358 NCURSES_SP_NAME(tgetstr) (NCURSES_SP_DCLx const char *id, char **area) argument
362 T((T_CALLED("tgetstr(%s,%p)"), id, (void *) area));
394 if (area != 0
395 && *area != 0) {
396 _nc_STRCPY(*area, result, 1024);
397 result = *area;
398 *area += strlen(*area) + 1;
408 tgetstr(const char *id, char **area) argument
[all...]
/freebsd-current/sys/dev/vt/
H A Dvt_buf.c267 vtbuf_dirty(struct vt_buf *vb, const term_rect_t *area) argument
270 if (vb->vb_dirtyrect.tr_begin.tp_row > area->tr_begin.tp_row)
271 vb->vb_dirtyrect.tr_begin.tp_row = area->tr_begin.tp_row;
272 if (vb->vb_dirtyrect.tr_begin.tp_col > area->tr_begin.tp_col)
273 vb->vb_dirtyrect.tr_begin.tp_col = area->tr_begin.tp_col;
274 if (vb->vb_dirtyrect.tr_end.tp_row < area->tr_end.tp_row)
275 vb->vb_dirtyrect.tr_end.tp_row = area->tr_end.tp_row;
276 if (vb->vb_dirtyrect.tr_end.tp_col < area->tr_end.tp_col)
277 vb->vb_dirtyrect.tr_end.tp_col = area->tr_end.tp_col;
283 term_rect_t area; local
311 term_rect_t area; local
699 term_rect_t area; local
[all...]
H A Dvt_core.c719 * Compute the drawable area, so that the text is centered on
1255 vt_is_cursor_in_area(const struct vt_device *vd, const term_rect_t *area) argument
1266 if (mx >= area->tr_end.tp_col ||
1267 mx + vd->vd_mcursor->width <= area->tr_begin.tp_col ||
1268 my >= area->tr_end.tp_row ||
1269 my + vd->vd_mcursor->height <= area->tr_begin.tp_row)
1277 term_rect_t area; local
1289 area.tr_begin.tp_col = x / vf->vf_width;
1290 area.tr_begin.tp_row = y / vf->vf_height;
1291 area
1319 vt_set_border(struct vt_device *vd, const term_rect_t *area, term_color_t c) argument
1349 vt_flush_to_buffer(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
1389 vt_bitblt_buffer(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
[all...]
H A Dvt.h242 void vtbuf_dirty(struct vt_buf *vb, const term_rect_t *area);
297 term_rect_t vw_draw_area; /* (?) Drawable area. */
341 const term_rect_t *area);
343 const term_rect_t *area);
450 const term_rect_t *area);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dz_AIX_asm.S85 std 0, 16(1) # Save LR to the linkage area
93 // Compute the size of the "argc" portion of the parameter save area.
94 // The parameter save area is always at least 64 bytes long (i.e. 8 regs)
168 // pre-increment loads and stores in the loop below). The parameter save area
180 std 2, 40(1) # Save the TOC pointer to the linkage area
191 ld 2, 40(1) # Restore TOC pointer from linkage area
207 mtlr 0 # Restore LR from the linkage area
239 stw 0, 8(1) # Save LR to the linkage area
247 // Compute the size of the "argc" portion of the parameter save area.
248 // The parameter save area i
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/ve/
H A Dgrow_stack_align.S21 ld %s63, 0x18(,%tp) # load param area
H A Dgrow_stack.S21 ld %s63, 0x18(,%tp) # load param area
/freebsd-current/usr.sbin/rtadvd/
H A Dadvcap.c357 * placed in area, which is a ref parameter which is updated.
358 * No checking on area overflow.
361 tgetstr(char *id, char **area) argument
377 return (tdecode(bp, area));
386 tdecode(char *str, char **area) argument
395 cp = *area;
434 str = *area;
435 *area = cp;
/freebsd-current/sys/dev/vt/hw/fb/
H A Dvt_fb.c337 const term_rect_t *area)
348 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
349 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
389 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
390 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
391 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
392 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
406 vt_fb_invalidate_text(struct vt_device *vd, const term_rect_t *area) argument
336 vt_fb_bitblt_text(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
[all...]
/freebsd-current/tools/tools/locale/
H A DMakefile168 .for area in ${BASE_LOCALES_OF_INTEREST}
169 posixsrc: posix/${area}.UTF-8.src
170 .ORDER: posix/${area}.UTF-8.src
171 posix/${area}.UTF-8.src:
174 -d posix -m ${area} -c UTF-8
/freebsd-current/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c247 const term_rect_t *area)
257 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) {
258 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col;
282 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width;
283 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height;
284 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width;
285 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height;
246 ofwfb_bitblt_text(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
/freebsd-current/share/mk/
H A Dsrc.tools.mk5 # area.
/freebsd-current/usr.bin/tabs/
H A Dtabs.c82 char area[1024], *ap, *arg, *end; local
141 ap = area;
/freebsd-current/lib/libc/iconv/
H A Dcitrus_mapper.c67 * create mapper area
73 const char *__restrict area)
87 snprintf(path, (size_t)PATH_MAX, "%s/%s", area, _CITRUS_MAPPER_DIR);
98 ma->ma_dir = strdup(area);
71 _citrus_mapper_create_area( struct _citrus_mapper_area *__restrict *__restrict rma, const char *__restrict area) argument
/freebsd-current/sys/dev/vt/hw/vga/
H A Dvt_vga.c641 * i is in the margin used to center the text area on
717 * to mark the area dirty.
781 const term_rect_t *area)
793 * This is calculated from the top-left column of te dirty area:
798 * NOTE: x offset is used to center the text area on the
813 col = area->tr_begin.tp_col;
814 row = area->tr_begin.tp_row;
825 * on the "right border" of the dirty area.
828 col = area->tr_end.tp_col;
829 row = area
780 vga_bitblt_text_gfxmode(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
862 vga_bitblt_text_txtmode(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
923 vga_bitblt_text(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
935 vga_invalidate_text(struct vt_device *vd, const term_rect_t *area) argument
[all...]
/freebsd-current/contrib/libpcap/
H A Dnametoaddr.c695 u_int node, area; local
697 if (sscanf(s, "%d.%d", &area, &node) != 2)
700 *addr = (area << AREASHIFT) & AREAMASK;
/freebsd-current/sys/dev/usb/net/
H A Dif_usievar.h149 uint8_t area; member in struct:usie_lsi
/freebsd-current/contrib/unbound/util/
H A Dlocks.h86 #define lock_protect(lock, area, size) /* nop */
87 #define lock_unprotect(lock, area) /* nop */
/freebsd-current/contrib/tcpdump/
H A Dprint-decnet.c64 #define AREAMASK 0176000 /* mask for area field */
65 #define AREASHIFT 10 /* bit-offset for area field */
82 byte lg_darea; /* destination area (reserved) */
85 byte lg_sarea; /* source area (reserved) */
225 byte eh_area; /* area (reserved) */
747 u_int area; local
758 area = GET_LE_U_2(rp);
764 ND_PRINT("{areas %u-%u cost %u hops %u} ", area, area + count,
1173 u_int area local
[all...]
/freebsd-current/sys/dev/virtio/gpu/
H A Dvirtio_gpu.c145 const term_rect_t *area)
154 vt_fb_bitblt_text(vd, vw, area);
156 x = area->tr_begin.tp_col * vw->vw_font->vf_width + vw->vw_draw_area.tr_begin.tp_col;
157 y = area->tr_begin.tp_row * vw->vw_font->vf_height + vw->vw_draw_area.tr_begin.tp_row;
158 width = area->tr_end.tp_col * vw->vw_font->vf_width + vw->vw_draw_area.tr_begin.tp_col - x;
159 height = area->tr_end.tp_row * vw->vw_font->vf_height + vw->vw_draw_area.tr_begin.tp_row - y;
144 vtgpu_fb_bitblt_text(struct vt_device *vd, const struct vt_window *vw, const term_rect_t *area) argument
/freebsd-current/contrib/libedit/
H A Dterminal.c841 char *area; local
850 area = buf;
896 &area));
1459 char *area; local
1465 area = buf;
1524 scap = tgetstr(ct_encode_string(*argv, &el->el_scratch), &area);

Completed in 483 milliseconds

12