| /freebsd-14-stable/contrib/tcsh/ |
| HD | 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-14-stable/lib/libc/rpc/ |
| HD | svc_auth_unix.c | 64 struct area { in _svcauth_unix() struct 68 } *area; in _svcauth_unix() local 76 area = (struct area *) rqst->rq_clntcred; in _svcauth_unix() 77 aup = &area->area_aup; in _svcauth_unix() 78 aup->aup_machname = area->area_machname; in _svcauth_unix() 79 aup->aup_gids = area->area_gids; in _svcauth_unix()
|
| HD | svc_auth_des.c | 126 struct area { in _svcauth_des() struct 129 } *area; in _svcauth_des() local 135 area = (struct area *)rqst->rq_clntcred; in _svcauth_des() 136 cred = (struct authdes_cred *)&area->area_cred; in _svcauth_des() 149 cred->adc_fullname.name = area->area_netname; in _svcauth_des()
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/usb/ |
| HD | 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-14-stable/contrib/ncurses/ncurses/tinfo/ |
| HD | 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-14-stable/sys/dev/vt/ |
| HD | vt_buf.c | 268 vtbuf_dirty(struct vt_buf *vb, const term_rect_t *area) in vtbuf_dirty() argument 271 if (vb->vb_dirtyrect.tr_begin.tp_row > area->tr_begin.tp_row) in vtbuf_dirty() 272 vb->vb_dirtyrect.tr_begin.tp_row = area->tr_begin.tp_row; in vtbuf_dirty() 273 if (vb->vb_dirtyrect.tr_begin.tp_col > area->tr_begin.tp_col) in vtbuf_dirty() 274 vb->vb_dirtyrect.tr_begin.tp_col = area->tr_begin.tp_col; in vtbuf_dirty() 275 if (vb->vb_dirtyrect.tr_end.tp_row < area->tr_end.tp_row) in vtbuf_dirty() 276 vb->vb_dirtyrect.tr_end.tp_row = area->tr_end.tp_row; in vtbuf_dirty() 277 if (vb->vb_dirtyrect.tr_end.tp_col < area->tr_end.tp_col) in vtbuf_dirty() 278 vb->vb_dirtyrect.tr_end.tp_col = area->tr_end.tp_col; in vtbuf_dirty() 284 term_rect_t area; in vtbuf_dirty_cell() local [all …]
|
| HD | vt_core.c | 1265 vt_is_cursor_in_area(const struct vt_device *vd, const term_rect_t *area) in vt_is_cursor_in_area() argument 1276 if (mx >= area->tr_end.tp_col || in vt_is_cursor_in_area() 1277 mx + vd->vd_mcursor->width <= area->tr_begin.tp_col || in vt_is_cursor_in_area() 1278 my >= area->tr_end.tp_row || in vt_is_cursor_in_area() 1279 my + vd->vd_mcursor->height <= area->tr_begin.tp_row) in vt_is_cursor_in_area() 1287 term_rect_t area; in vt_mark_mouse_position_as_dirty() local 1299 area.tr_begin.tp_col = x / vf->vf_width; in vt_mark_mouse_position_as_dirty() 1300 area.tr_begin.tp_row = y / vf->vf_height; in vt_mark_mouse_position_as_dirty() 1301 area.tr_end.tp_col = in vt_mark_mouse_position_as_dirty() 1303 area.tr_end.tp_row = in vt_mark_mouse_position_as_dirty() [all …]
|
| HD | vt.h | 242 void vtbuf_dirty(struct vt_buf *vb, const term_rect_t *area); 341 const term_rect_t *area); 343 const term_rect_t *area); 455 const term_rect_t *area);
|
| /freebsd-14-stable/contrib/one-true-awk/testdir/ |
| HD | p.43 | 2 { area[$4] += $2 } 3 END { for (name in area) 4 print name ":" area[name] }
|
| /freebsd-14-stable/sys/dev/vt/hw/fb/ |
| HD | vt_fb.c | 385 const term_rect_t *area) in vt_fb_bitblt_text() argument 396 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) { in vt_fb_bitblt_text() 397 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col; in vt_fb_bitblt_text() 437 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width; in vt_fb_bitblt_text() 438 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height; in vt_fb_bitblt_text() 439 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width; in vt_fb_bitblt_text() 440 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height; in vt_fb_bitblt_text() 454 vt_fb_invalidate_text(struct vt_device *vd, const term_rect_t *area) in vt_fb_invalidate_text() argument 459 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) { in vt_fb_invalidate_text() 460 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col; in vt_fb_invalidate_text()
|
| /freebsd-14-stable/usr.sbin/rtadvd/ |
| HD | 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-14-stable/sys/contrib/device-tree/Bindings/watchdog/ |
| HD | 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-14-stable/contrib/telnet/libtelnet/ |
| HD | 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-14-stable/contrib/llvm-project/openmp/runtime/src/ |
| HD | z_AIX_asm.S | 85 std 0, 16(1) # Save LR to the linkage 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 334 stw 2, 20(1) # Save the TOC pointer to the linkage area 345 lwz 2, 20(1) # Restore TOC pointer from linkage area 361 mtlr 0 # Restore LR from the linkage area
|
| /freebsd-14-stable/sys/contrib/device-tree/Bindings/ata/ |
| HD | 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-14-stable/sys/dev/vt/hw/vga/ |
| HD | vt_vga.c | 784 const term_rect_t *area) in vga_bitblt_text_gfxmode() argument 816 col = area->tr_begin.tp_col; in vga_bitblt_text_gfxmode() 817 row = area->tr_begin.tp_row; in vga_bitblt_text_gfxmode() 831 col = area->tr_end.tp_col; in vga_bitblt_text_gfxmode() 832 row = area->tr_end.tp_row; in vga_bitblt_text_gfxmode() 866 const term_rect_t *area) in vga_bitblt_text_txtmode() argument 879 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) { in vga_bitblt_text_txtmode() 880 for (col = area->tr_begin.tp_col; in vga_bitblt_text_txtmode() 881 col < area->tr_end.tp_col; in vga_bitblt_text_txtmode() 927 const term_rect_t *area) in vga_bitblt_text() argument [all …]
|
| /freebsd-14-stable/contrib/llvm-project/libcxx/include/ |
| HD | 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-14-stable/sys/dev/vt/hw/ofwfb/ |
| HD | ofwfb.c | 260 const term_rect_t *area) in ofwfb_bitblt_text() argument 270 for (row = area->tr_begin.tp_row; row < area->tr_end.tp_row; ++row) { in ofwfb_bitblt_text() 271 for (col = area->tr_begin.tp_col; col < area->tr_end.tp_col; in ofwfb_bitblt_text() 295 drawn_area.tr_begin.tp_col = area->tr_begin.tp_col * vf->vf_width; in ofwfb_bitblt_text() 296 drawn_area.tr_begin.tp_row = area->tr_begin.tp_row * vf->vf_height; in ofwfb_bitblt_text() 297 drawn_area.tr_end.tp_col = area->tr_end.tp_col * vf->vf_width; in ofwfb_bitblt_text() 298 drawn_area.tr_end.tp_row = area->tr_end.tp_row * vf->vf_height; in ofwfb_bitblt_text()
|
| /freebsd-14-stable/tools/tools/locale/ |
| HD | 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-14-stable/sys/contrib/device-tree/Bindings/media/ |
| HD | tango-ir.txt | 6 - reg: address/size of NEC+RC5 area, address/size of RC6 area
|
| /freebsd-14-stable/contrib/file/magic/Magdir/ |
| HD | 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 …]
|
| HD | 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-14-stable/sys/contrib/device-tree/Bindings/arm/ |
| 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-14-stable/sys/contrib/device-tree/Bindings/mtd/ |
| HD | 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-14-stable/sys/contrib/device-tree/Bindings/gpu/ |
| 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
|