/freebsd/contrib/tcsh/ |
H A D | vms.termcap.c | 206 tgetstr(char *id, char **area) in tgetstr() argument 224 for (ret = *area, cp++; *cp && *cp != ':' ; in tgetstr() 225 (*area)++, cp++) in tgetstr() 228 **area = *++cp - '@'; /* fix (efth)*/ in tgetstr() 233 **area = CTL_ESC('\033'); in tgetstr() 236 **area = '\n'; in tgetstr() 239 **area = '\r'; in tgetstr() 242 **area = '\t'; in tgetstr() 245 **area = '\b'; in tgetstr() 248 **area = '\f'; in tgetstr() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/usb/ |
H A D | cdns-usb3.txt | 6 - HOST registers area 7 - DEVICE registers area 8 - OTG/DRD registers area 9 - reg-names - register memory area names: 39 reg = <0xf3000000 0x10000>, /* memory area for HOST registers */ 40 <0xf3010000 0x10000>, /* memory area for DEVICE registers */ 41 <0xf3020000 0x10000>; /* memory area for OTG/DRD registers */
|
/freebsd/lib/libc/rpc/ |
H A D | svc_auth_unix.c | 60 struct area { in _svcauth_unix() struct 64 } *area; in _svcauth_unix() local 72 area = (struct area *) rqst->rq_clntcred; in _svcauth_unix() 73 aup = &area->area_aup; in _svcauth_unix() 74 aup->aup_machname = area->area_machname; in _svcauth_unix() 75 aup->aup_gids = area->area_gids; in _svcauth_unix()
|
H A D | svc_auth_des.c | 123 struct area { in _svcauth_des() struct 126 } *area; in _svcauth_des() local 132 area = (struct area *)rqst->rq_clntcred; in _svcauth_des() 133 cred = (struct authdes_cred *)&area->area_cred; in _svcauth_des() 146 cred->adc_fullname.name = area->area_netname; in _svcauth_des()
|
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | lib_termcap.c | 358 NCURSES_SP_NAME(tgetstr) (NCURSES_SP_DCLx const char *id, char **area) in NCURSES_SP_NAME() 362 T((T_CALLED("tgetstr(%s,%p)"), id, (void *) area)); in NCURSES_SP_NAME() 394 if (area != 0 in NCURSES_SP_NAME() 395 && *area != 0) { in NCURSES_SP_NAME() 396 _nc_STRCPY(*area, result, 1024); in NCURSES_SP_NAME() 397 result = *area; in NCURSES_SP_NAME() 398 *area += strlen(*area) + 1; in NCURSES_SP_NAME() 408 tgetstr(const char *id, char **area) in tgetstr() argument 410 return NCURSES_SP_NAME(tgetstr) (CURRENT_SCREEN, id, area); in tgetstr()
|
/freebsd/sys/dev/vt/ |
H A D | vt_buf.c | 267 vtbuf_dirty(struct vt_buf *vb, const term_rect_t *area) in vtbuf_dirty() argument 270 if (vb->vb_dirtyrect.tr_begin.tp_row > area->tr_begin.tp_row) in vtbuf_dirty() 271 vb->vb_dirtyrect.tr_begin.tp_row = area->tr_begin.tp_row; in vtbuf_dirty() 272 if (vb->vb_dirtyrect.tr_begin.tp_col > area->tr_begin.tp_col) in vtbuf_dirty() 273 vb->vb_dirtyrect.tr_begin.tp_col = area->tr_begin.tp_col; in vtbuf_dirty() 274 if (vb->vb_dirtyrect.tr_end.tp_row < area->tr_end.tp_row) in vtbuf_dirty() 275 vb->vb_dirtyrect.tr_end.tp_row = area->tr_end.tp_row; in vtbuf_dirty() 276 if (vb->vb_dirtyrect.tr_end.tp_col < area->tr_end.tp_col) in vtbuf_dirty() 277 vb->vb_dirtyrect.tr_end.tp_col = area->tr_end.tp_col; in vtbuf_dirty() 283 term_rect_t area; in vtbuf_dirty_cell() local [all …]
|
H A D | vt_core.c | 1267 vt_is_cursor_in_area(const struct vt_device *vd, const term_rect_t *area) in vt_is_cursor_in_area() argument 1278 if (mx >= area->tr_end.tp_col || in vt_is_cursor_in_area() 1279 mx + vd->vd_mcursor->width <= area->tr_begin.tp_col || in vt_is_cursor_in_area() 1280 my >= area->tr_end.tp_row || in vt_is_cursor_in_area() 1281 my + vd->vd_mcursor->height <= area->tr_begin.tp_row) in vt_is_cursor_in_area() 1289 term_rect_t area; in vt_mark_mouse_position_as_dirty() local 1301 area.tr_begin.tp_col = x / vf->vf_width; in vt_mark_mouse_position_as_dirty() 1302 area.tr_begin.tp_row = y / vf->vf_height; in vt_mark_mouse_position_as_dirty() 1303 area.tr_end.tp_col = in vt_mark_mouse_position_as_dirty() 1305 area.tr_end.tp_row = in vt_mark_mouse_position_as_dirty() [all …]
|
H A D | vt.h | 242 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); 455 const term_rect_t *area);
|
/freebsd/sys/dev/vt/hw/fb/ |
H A D | vt_fb.c | 384 const term_rect_t *area) in vt_fb_bitblt_text() 395 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) { in vt_fb_bitblt_text() 396 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col; in vt_fb_bitblt_text() 436 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width; in vt_fb_postswitch() 437 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height; in vt_fb_postswitch() 438 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width; 439 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height; 453 vt_fb_invalidate_text(struct vt_device *vd, const term_rect_t *area) in vt_fb_init_colors() 337 vt_fb_bitblt_text(struct vt_device * vd,const struct vt_window * vw,const term_rect_t * area) vt_fb_bitblt_text() argument 406 vt_fb_invalidate_text(struct vt_device * vd,const term_rect_t * area) vt_fb_invalidate_text() argument [all...] |
/freebsd/contrib/one-true-awk/testdir/ |
H A D | p.43 | 2 { area[$4] += $2 } 3 END { for (name in area) 4 print name ":" area[name] }
|
/freebsd/usr.sbin/rtadvd/ |
H A D | advcap.c | 361 tgetstr(char *id, char **area) in tgetstr() argument 377 return (tdecode(bp, area)); in tgetstr() 386 tdecode(char *str, char **area) in tdecode() argument 395 cp = *area; in tdecode() 434 str = *area; in tdecode() 435 *area = cp; in tdecode()
|
/freebsd/sys/contrib/device-tree/Bindings/watchdog/ |
H A D | mpc8xxx-wdt.txt | 8 - reg: base physical address and length of the area hosting the 10 On the 83xx, "Watchdog Timer Registers" area: <0x200 0x100> 11 On the 86xx, "Watchdog Timer Registers" area: <0xe4000 0x100> 12 On the 8xx, "General System Interface Unit" area: <0x0 0x10>
|
/freebsd/contrib/telnet/libtelnet/ |
H A D | getent.c | 41 static char *area; variable 52 retval = cgetent(&area, dba, tempnam) == 0 ? 1 : 0; in getent() 65 retval = cgetstr(area, tempid, &answer); in Getstr()
|
/freebsd/sys/contrib/device-tree/Bindings/ata/ |
H A D | ahci-fsl-qoriq.txt | 4 - reg: Physical base address and size of the controller's register area. 12 - reg-names: register area names when there are more than 1 register area.
|
/freebsd/sys/dev/vt/hw/vga/ |
H A D | vt_vga.c | 643 * i is in the margin used to center the text area on in vga_bitblt_one_text_pixels_block() 719 * to mark the area dirty. in vga_bitblt_one_text_pixels_block() 783 const term_rect_t *area) in vga_bitblt_text_gfxmode() 795 * This is calculated from the top-left column of te dirty area: in vga_bitblt_text_gfxmode() 800 * NOTE: x offset is used to center the text area on the in vga_bitblt_text_gfxmode() 815 col = area->tr_begin.tp_col; in vga_bitblt_text_gfxmode() 816 row = area->tr_begin.tp_row; in vga_bitblt_text_gfxmode() 827 * on the "right border" of the dirty area. in vga_bitblt_text_gfxmode() 830 col = area->tr_end.tp_col; in vga_bitblt_text_gfxmode() 831 row = area in vga_bitblt_text_gfxmode() 781 vga_bitblt_text_gfxmode(struct vt_device * vd,const struct vt_window * vw,const term_rect_t * area) vga_bitblt_text_gfxmode() argument 863 vga_bitblt_text_txtmode(struct vt_device * vd,const struct vt_window * vw,const term_rect_t * area) vga_bitblt_text_txtmode() argument 924 vga_bitblt_text(struct vt_device * vd,const struct vt_window * vw,const term_rect_t * area) vga_bitblt_text() argument 935 vga_invalidate_text(struct vt_device * vd,const term_rect_t * area) vga_invalidate_text() argument [all...] |
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | streambuf | 45 // 27.6.2.2.3 Get area: 56 // 27.6.2.2.5 Put area: 66 // 27.6.2.3.2 Get area: 73 // 27.6.2.3.3 Put area: 92 // 27.6.2.4.3 Get area: 101 // 27.6.2.4.5 Put area: 173 // 27.6.2.2.3 Get area: 213 // 27.6.2.2.5 Put area: 231 // 27.6.2.3.2 Get area: 247 // 27.6.2.3.3 Put area: [all …]
|
/freebsd/sys/dev/vt/hw/ofwfb/ |
H A D | ofwfb.c | 259 const term_rect_t *area) in ofwfb_bitblt_text() 269 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) { in ofwfb_bitblt_text() 270 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col; in ofwfb_bitblt_text() 294 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width; in ofwfb_bitblt_text() 295 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height; in ofwfb_bitblt_text() 296 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width; in ofwfb_bitblt_text() 297 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height; 247 ofwfb_bitblt_text(struct vt_device * vd,const struct vt_window * vw,const term_rect_t * area) ofwfb_bitblt_text() argument
|
/freebsd/tools/tools/locale/ |
H A D | Makefile | 168 .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/sys/contrib/device-tree/Bindings/media/ |
H A D | tango-ir.txt | 6 - reg: address/size of NEC+RC5 area, address/size of RC6 area
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | wordprocessors | 72 # pointer to document area like: 10h 73 >>>4 ulelong !0x10 \b, at %#x document area 78 # no document area, so point to end of file; so this is file size like: 23381 2978 32835 3355 3775 … 116 # pointer to index area with string "smalldrs" like: 46h 117 >>>4 uleshort !0x46 \b, at %#x index area 129 # TODO: skip DROID x-fmt-395-signature-id-132.wpg by check for existing document area 138 # pointer to document area like: 10h 1Ah 139 >>>4 ulelong !0x1A \b, at %#x document area 154 # jump to document area with some marker and equation 158 # pointer to document area like: 17C4h [all …]
|
H A D | mail.news | 123 # JAM(mbp) Fidonet message area databases 125 0 string JAM\0 JAM message area header file 128 # Squish Fidonet message area databases 129 # SQD file (requires at least one message in the area) 131 #256 leshort 0xAFAE4453 Squish message area data file
|
/freebsd/sys/contrib/device-tree/Bindings/mtd/ |
H A D | gpmc-nand.txt | 121 Higher ECC schemes require more OOB/Spare area to store ECC syndrome, 123 area to accommodate ECC for entire page. In general following expression 127 OOBSIZE number of bytes in OOB/spare area 128 PAGESIZE number of bytes in main-area of device page 146 which can be accommodated in the OOB/Spare area of this device
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | juno,scpi.txt | 10 Each sub-node represents the reserved area for SCPI. 13 - reg : The base offset and size of the reserved area with the SRAM
|
/freebsd/sys/contrib/device-tree/Bindings/gpu/ |
H A D | brcm,bcm-v3d.txt | 10 register areas are always required. The "gca" register area 12 "bridge" register area is required if an external reset
|
/freebsd/sys/contrib/device-tree/Bindings/firmware/ |
H A D | coreboot.txt | 17 2.) The CBMEM area. This is a downward-growing memory region used by 21 0xc0389481 that resides in the topmost 8 bytes of the area.
|