/freebsd/sys/dev/vt/ |
H A D | vt_buf.c | 46 #define VTBUF_LOCK(vb) mtx_lock_spin(&(vb)->vb_lock) argument 47 #define VTBUF_UNLOCK(vb) mtx_unlock_spin(&(vb)->vb_lock) argument 56 static int vtbuf_htw(const struct vt_buf *vb, int row); 57 static int vtbuf_wth(const struct vt_buf *vb, int row); 70 vthistory_seek(struct vt_buf *vb, int offset, int whence) in vthistory_seek() argument 75 if ((vb->vb_flags & VBF_SCROLL) == 0) { in vthistory_seek() 76 if (vb->vb_roffset != vb->vb_curroffset) { in vthistory_seek() 77 vb->vb_roffset = vb->vb_curroffset; in vthistory_seek() 84 bottom = vb->vb_curroffset; in vthistory_seek() 85 top = (vb->vb_flags & VBF_HISTORY_FULL) ? in vthistory_seek() [all …]
|
H A D | vt.h | 241 void vtbuf_scroll_mode(struct vt_buf *vb, int yes); 242 void vtbuf_dirty(struct vt_buf *vb, const term_rect_t *area); 246 int vtbuf_iscursor(const struct vt_buf *vb, int row, int col); 249 int vtbuf_set_mark(struct vt_buf *vb, int type, int col, int row); 250 int vtbuf_get_marked_len(struct vt_buf *vb); 251 void vtbuf_extract_marked(struct vt_buf *vb, term_char_t *buf, int sz, int mark); 262 #define VTBUF_SLCK_ENABLE(vb) vtbuf_scroll_mode((vb), 1) argument 263 #define VTBUF_SLCK_DISABLE(vb) vtbuf_scroll_mode((vb), argument 265 VTBUF_MAX_HEIGHT(vb) global() argument 267 VTBUF_GET_ROW(vb,r) global() argument 269 VTBUF_GET_FIELD(vb,r,c) global() argument 271 VTBUF_FIELD(vb,r,c) global() argument 273 VTBUF_ISCURSOR(vb,r,c) global() argument [all...] |
/freebsd/crypto/openssl/crypto/srp/ |
H A D | srp_vfy.c | 280 SRP_VBASE *vb = OPENSSL_malloc(sizeof(*vb)); in SRP_VBASE_new() local 282 if (vb == NULL) in SRP_VBASE_new() 284 if ((vb->users_pwd = sk_SRP_user_pwd_new_null()) == NULL in SRP_VBASE_new() 285 || (vb->gN_cache = sk_SRP_gN_cache_new_null()) == NULL) { in SRP_VBASE_new() 286 sk_SRP_user_pwd_free(vb->users_pwd); in SRP_VBASE_new() 287 OPENSSL_free(vb); in SRP_VBASE_new() 290 vb->default_g = NULL; in SRP_VBASE_new() 291 vb->default_N = NULL; in SRP_VBASE_new() 292 vb->seed_key = NULL; in SRP_VBASE_new() 293 if ((seed_key != NULL) && (vb->seed_key = OPENSSL_strdup(seed_key)) == NULL) { in SRP_VBASE_new() [all …]
|
/freebsd/lib/libc/string/ |
H A D | strlen.c | 78 long va, vb; in strlen() local 92 vb = ((~*lp) & mask80); in strlen() 94 if (va & vb) in strlen() 103 vb = ((~*lp) & mask80); in strlen() 104 if (va & vb) { in strlen()
|
/freebsd/sys/libkern/ |
H A D | strlen.c | 78 long va, vb; in size_t() local 92 vb = ((~*lp) & mask80); in size_t() 94 if (va & vb) in size_t() 103 vb = ((~*lp) & mask80); in size_t() 104 if (va & vb) { in size_t()
|
/freebsd/contrib/bearssl/src/ |
H A D | inner.h | 2402 #define vsldoi(vt, va, vb, sh) vsldoi_(vt, va, vb, sh) argument 2409 #define vcipher(vt, va, vb) vcipher_(vt, va, vb) argument 2410 #define vcipherlast(vt, va, vb) vcipherlast_(vt, va, vb) argument 2411 #define vncipher(vt, va, vb) vncipher_(vt, va, vb) argument 2412 #define vncipherlast(vt, va, vb) vncipherlast_(vt, va, vb) argument 2413 #define vperm(vt, va, vb, vc) vperm_(vt, va, vb, vc) argument 2414 #define vpmsumd(vt, va, vb) vpmsumd_(vt, va, vb) argument 2415 #define xxpermdi(vt, va, vb, d) xxpermdi_(vt, va, vb, d) argument 2439 #define vsldoi_(vt, va, vb, sh) "\tvsldoi\t" #vt "," #va "," #vb "," #sh "\n" argument 2446 #define vcipher_(vt, va, vb) "\tvcipher\t" #vt "," #va "," #vb "\n" argument [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SRP_VBASE_new.pod | 22 void SRP_VBASE_free(SRP_VBASE *vb); 24 int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file); 26 int SRP_VBASE_add0_user(SRP_VBASE *vb, SRP_user_pwd *user_pwd); 27 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username); 28 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username); 44 The SRP_VBASE_free() function frees up the B<vb> structure. 45 If B<vb> is NULL, nothing is done. 48 populates the B<vb> structure. 56 to the B<vb> structure. See L<SRP_user_pwd_new(3)> to create and populate this
|
/freebsd/crypto/openssl/apps/lib/ |
H A D | tlssrp_depr.c | 197 srp_callback_parm->vb = SRP_VBASE_new(srpuserseed); in set_up_srp_verifier_file() 201 if (srp_callback_parm->vb == NULL) { in set_up_srp_verifier_file() 206 SRP_VBASE_init(srp_callback_parm->vb, in set_up_srp_verifier_file() 223 srp_callback_parm->user = SRP_VBASE_get1_by_user(srp_callback_parm->vb, in lookup_srp_user()
|
/freebsd/contrib/ntp/libntp/ |
H A D | work_fork.c | 49 void * vb, in netread() argument 53 char * b = vb; in netread() 65 return (size_t)(b - (char *)vb); in netread() 72 const void * vb, in netwrite() argument 76 const char * b = vb; in netwrite() 88 return (size_t)(b - (const char *)vb); in netwrite()
|
/freebsd/sys/compat/linux/ |
H A D | linux_ioctl.c | 2681 linux_to_bsd_v4l_buffer(struct l_video_buffer *lvb, struct video_buffer *vb) in linux_to_bsd_v4l_buffer() argument 2683 vb->base = PTRIN(lvb->base); /* possible pointer size conversion */ in linux_to_bsd_v4l_buffer() 2684 vb->height = lvb->height; in linux_to_bsd_v4l_buffer() 2685 vb->width = lvb->width; in linux_to_bsd_v4l_buffer() 2686 vb->depth = lvb->depth; in linux_to_bsd_v4l_buffer() 2687 vb->bytesperline = lvb->bytesperline; in linux_to_bsd_v4l_buffer() 2692 bsd_to_linux_v4l_buffer(struct video_buffer *vb, struct l_video_buffer *lvb) in bsd_to_linux_v4l_buffer() argument 2694 lvb->base = PTROUT(vb->base); /* possible pointer size conversion */ in bsd_to_linux_v4l_buffer() 2695 lvb->height = vb->height; in bsd_to_linux_v4l_buffer() 2696 lvb->width = vb->width; in bsd_to_linux_v4l_buffer() [all …]
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | srp.h.in | 107 void SRP_VBASE_free(SRP_VBASE *vb); 109 int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file); 112 int SRP_VBASE_add0_user(SRP_VBASE *vb, SRP_user_pwd *user_pwd); 116 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username); 206 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username);
|
H A D | srp.h | 178 void SRP_VBASE_free(SRP_VBASE *vb); 180 int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file); 183 int SRP_VBASE_add0_user(SRP_VBASE *vb, SRP_user_pwd *user_pwd); 187 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username); 277 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username);
|
/freebsd/tests/sys/netpfil/pf/ |
H A D | altq.sh | 312 vb=$(jexec ${j}b ifconfig vlan create) 314 jexec ${j}b ifconfig ${vb} vlan 42 vlandev ${epair}b up 315 jexec ${j}b ifconfig ${vb} inet 192.0.2.2/24
|
/freebsd/sys/dev/vt/hw/vga/ |
H A D | vt_vga.c | 613 const struct vt_buf *vb; in vga_bitblt_one_text_pixels_block() 623 vb = &vw->vw_buf; in vga_bitblt_one_text_pixels_block() 662 c = VTBUF_GET_FIELD(vb, row, col); in vga_bitblt_one_text_pixels_block() 665 vt_determine_colors(c, VTBUF_ISCURSOR(vb, row, col), &fg, &bg); in vga_bitblt_one_text_pixels_block() 868 const struct vt_buf *vb; in vga_bitblt_text_txtmode() 876 vb = &vw->vw_buf; in vga_bitblt_text_txtmode() 886 c = VTBUF_GET_FIELD(vb, row, col); in vga_bitblt_text_txtmode() 887 vt_determine_colors(c, VTBUF_ISCURSOR(vb, row, col), in vga_bitblt_text_txtmode() 611 const struct vt_buf *vb; vga_bitblt_one_text_pixels_block() local 866 const struct vt_buf *vb; vga_bitblt_text_txtmode() local
|
/freebsd/tests/sys/netpfil/common/ |
H A D | dummynet.sh | 229 vb=$(jexec ${j}b ifconfig vlan create vlan 42 vlandev ${epair}b) 230 jexec ${j}b ifconfig ${vb} 192.0.2.2/24 up #mtu 8000 248 jexec ${j}b ifconfig ${vb} destroy
|
/freebsd/sys/dev/dpaa2/ |
H A D | dpaa2_swp.h | 101 #define DPAA2_SWP_CENA_RR(vb) (0x700 + ((uint32_t)(vb) >> 1)) argument
|
/freebsd/share/termcap/ |
H A D | termcap | 295 :us=\E[4m:vb=^G:bc=\E[D: 676 :vb=\EU\EX\EU\EX\EU\EX\EU\EX:k6=^A6^M:k7=^A7^M:k8=^A8^M:k9=^A9^M:\ 692 :vb=\EK0001??0000K0001202080\001:\ 702 :vb=\EK0001??0000K0001202080\001:\ 727 …:vb=\E[?5h\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200… 735 …:vb=\E[?5h\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200… 736 cit101:li#24:vb@:tc=citc: 754 :vb=\E^G:so=\EU!:se=\EV!:us=\EU":ue=\EV":cd=\EJ:\ 759 :up=\EA:vb=\E^G:am:ul:pt:eo: 792 :vb=\Eb\200\200\Ed:\ [all …]
|
/freebsd/crypto/openssl/apps/include/ |
H A D | s_apps.h | 101 SRP_VBASE *vb; member
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrInfoV.td | 1197 def : InstAlias<"vmsgtu.vv $vd, $va, $vb$vm", 1198 (VMSLTU_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; 1199 def : InstAlias<"vmsgt.vv $vd, $va, $vb$vm", 1200 (VMSLT_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; 1201 def : InstAlias<"vmsgeu.vv $vd, $va, $vb$vm", 1202 (VMSLEU_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; 1203 def : InstAlias<"vmsge.vv $vd, $va, $vb$vm", 1204 (VMSLE_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; 1432 def : InstAlias<"vmfgt.vv $vd, $va, $vb$vm", 1433 (VMFLT_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; [all …]
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_msfees.c | 353 static int offcompare P((const void *va, const void *vb)); 1230 const void *vb in offcompare() argument 1234 const l_fp *b = (const l_fp *)vb; in offcompare()
|
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
H A D | cert-threecolumn.pem | 216 9vb
|
/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/ |
H A D | acl_common.c | 1212 acevals_compare(const void *va, const void *vb) in acevals_compare() argument 1214 const acevals_t *a = va, *b = vb; in acevals_compare()
|
/freebsd/sys/contrib/device-tree/src/arm/allwinner/ |
H A D | sun8i-a83t-tbs-a711.dts | 434 regulator-name = "vcc-vb";
|
/freebsd/ |
H A D | ObsoleteFiles.inc | 5424 OLD_FILES+=usr/share/terminfo/a/apple-uterm-vb 7296 OLD_FILES+=usr/share/terminfo/t/tvi912b+vb 7303 OLD_FILES+=usr/share/terminfo/t/tvi912b-mc-vb 7306 OLD_FILES+=usr/share/terminfo/t/tvi912b-p-vb 7309 OLD_FILES+=usr/share/terminfo/t/tvi912b-unk-vb 7310 OLD_FILES+=usr/share/terminfo/t/tvi912b-vb 7311 OLD_FILES+=usr/share/terminfo/t/tvi912b-vb-mc 7312 OLD_FILES+=usr/share/terminfo/t/tvi912b-vb-p 7313 OLD_FILES+=usr/share/terminfo/t/tvi912b-vb-unk 7321 OLD_FILES+=usr/share/terminfo/t/tvi912c-mc-vb [all …]
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 174 # -vb Use visible bell (<flash>) rather than <bel>. 2544 vt100-vb|DEC VT100 (w/advanced video) & no beep, 11191 # No | Yes | Yes | N/A | No || -vb-unk 11192 # No | Yes | Yes | N/A | Yes || -vb-p 11197 # Yes | Yes | Yes | No | N/A || -vb 11198 # Yes | Yes | Yes | Yes | N/A || -vb-mc 11201 # and no magic cookies would be tvi920c-vb; a model 912 B without the 11443 tvi912b+vb|TeleVideo TVI-912B/TVI-920B and TVI-912C/TVI-920C second page memory option "visible bel… 11460 tvi912b-vb-unk|tvi912c-vb-unk|tvi912b-unk-vb|tvi912c-unk-vb|TeleVideo TVI-912B or TVI-912C (second … 11461 use=tvi912b+vb, use=tvi912b-unk, [all …]
|