Home
last modified time | relevance | path

Searched refs:vb (Results 1 – 25 of 40) sorted by relevance

12

/freebsd/sys/dev/vt/
H A Dvt_buf.c76 if (vb->vb_roffset != vb->vb_curroffset) { in vthistory_seek()
77 vb->vb_roffset = vb->vb_curroffset; in vthistory_seek()
133 if (vb->vb_curroffset + vb->vb_scr_size.tp_row >= vb->vb_history_size) { in vthistory_addlines()
135 vb->vb_curroffset %= vb->vb_history_size; in vthistory_addlines()
138 vb->vb_roffset = vb->vb_curroffset; in vthistory_addlines()
409 vb->vb_history_size = MAX(vb->vb_history_size, vb->vb_scr_size.tp_row); in vtbuf_init_rows()
412 vb->vb_rows[r] = &vb->vb_buffer[r * vb->vb_scr_size.tp_col]; in vtbuf_init_rows()
642 vb->vb_roffset = vb->vb_curroffset; in vtbuf_grow()
687 vtbuf_dirty_cell(vb, &vb->vb_cursor); in vtbuf_cursor_position()
689 vtbuf_dirty_cell(vb, &vb->vb_cursor); in vtbuf_cursor_position()
[all …]
H A Dvt.h262 #define VTBUF_SLCK_ENABLE(vb) vtbuf_scroll_mode((vb), 1) argument
263 #define VTBUF_SLCK_DISABLE(vb) vtbuf_scroll_mode((vb), 0) argument
265 #define VTBUF_MAX_HEIGHT(vb) \ argument
266 ((vb)->vb_history_size)
267 #define VTBUF_GET_ROW(vb, r) \ argument
268 ((vb)->vb_rows[((vb)->vb_roffset + (r)) % VTBUF_MAX_HEIGHT(vb)])
270 ((vb)->vb_rows[((vb)->vb_roffset + (r)) % VTBUF_MAX_HEIGHT(vb)][(c)])
271 #define VTBUF_FIELD(vb, r, c) \ argument
272 ((vb)->vb_rows[((vb)->vb_curroffset + (r)) % VTBUF_MAX_HEIGHT(vb)][(c)])
273 #define VTBUF_ISCURSOR(vb, r, c) \ argument
[all …]
/freebsd/crypto/openssl/crypto/srp/
H A Dsrp_vfy.c280 SRP_VBASE *vb = OPENSSL_malloc(sizeof(*vb)); in SRP_VBASE_new() local
282 if (vb == NULL) in SRP_VBASE_new()
299 return vb; in SRP_VBASE_new()
304 if (!vb) in SRP_VBASE_free()
309 OPENSSL_free(vb); in SRP_VBASE_free()
421 if (vb->seed_key) { in SRP_VBASE_init()
513 if (vb == NULL) in find_user()
557 if (vb == NULL) in SRP_VBASE_get1_by_user()
564 (vb->default_g == NULL) || (vb->default_N == NULL)) in SRP_VBASE_get1_by_user()
572 SRP_user_pwd_set_gN(user, vb->default_g, vb->default_N); in SRP_VBASE_get1_by_user()
[all …]
/freebsd/sys/libkern/
H A Dstrlen.c78 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/lib/libc/string/
H A Dstrlen.c78 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/contrib/bearssl/src/
H A Dinner.h2402 #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
2446 #define vcipher_(vt, va, vb) "\tvcipher\t" #vt "," #va "," #vb "\n" argument
2448 #define vncipher_(vt, va, vb) "\tvncipher\t" #vt "," #va "," #vb "\n" argument
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSRP_VBASE_new.pod22 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 Dtlssrp_depr.c197 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 Dwork_fork.c49 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 Dlinux_ioctl.c2676 vb->width = lvb->width; in linux_to_bsd_v4l_buffer()
2677 vb->depth = lvb->depth; in linux_to_bsd_v4l_buffer()
2687 lvb->width = vb->width; in bsd_to_linux_v4l_buffer()
2688 lvb->depth = vb->depth; in bsd_to_linux_v4l_buffer()
3029 vb->index = lvb->index; in linux_to_bsd_v4l2_buffer()
3030 vb->type = lvb->type; in linux_to_bsd_v4l2_buffer()
3032 vb->flags = lvb->flags; in linux_to_bsd_v4l2_buffer()
3033 vb->field = lvb->field; in linux_to_bsd_v4l2_buffer()
3045 vb->input = lvb->input; in linux_to_bsd_v4l2_buffer()
3054 lvb->type = vb->type; in bsd_to_linux_v4l2_buffer()
[all …]
/freebsd/crypto/openssl/include/openssl/
H A Dsrp.h.in107 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 Dsrp.h178 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 Daltq.sh314 vb=$(jexec ${j}b ifconfig vlan create)
316 jexec ${j}b ifconfig ${vb} vlan 42 vlandev ${epair}b up
317 jexec ${j}b ifconfig ${vb} inet 192.0.2.2/24
/freebsd/sys/dev/vt/hw/vga/
H A Dvt_vga.c611 const struct vt_buf *vb; in vga_bitblt_one_text_pixels_block() local
621 vb = &vw->vw_buf; in vga_bitblt_one_text_pixels_block()
660 c = VTBUF_GET_FIELD(vb, row, col); in vga_bitblt_one_text_pixels_block()
663 vt_determine_colors(c, VTBUF_ISCURSOR(vb, row, col), &fg, &bg); in vga_bitblt_one_text_pixels_block()
866 const struct vt_buf *vb; in vga_bitblt_text_txtmode() local
874 vb = &vw->vw_buf; in vga_bitblt_text_txtmode()
884 c = VTBUF_GET_FIELD(vb, row, col); in vga_bitblt_text_txtmode()
885 vt_determine_colors(c, VTBUF_ISCURSOR(vb, row, col), in vga_bitblt_text_txtmode()
/freebsd/tests/sys/netpfil/common/
H A Ddummynet.sh229 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 Ddpaa2_swp.h101 #define DPAA2_SWP_CENA_RR(vb) (0x700 + ((uint32_t)(vb) >> 1)) argument
/freebsd/share/termcap/
H A Dtermcap3465 :nd=^L:up=^K:vb=:
3856 wy30-vb|wyse30-vb|wyse 30 visual bell:\
3872 wy50-vb|wyse50-vb|wyse 50 visual bell:\
3937 wy60-vb|wyse60-vb|Wyse 60 visual bell:\
3938 :vb=\E`8\E`9:\
3940 wy60-w-vb|wy60-wvb|wyse60-w-vb|Wyse 60 132-column visual bell:\
3941 :vb=\E`8\E`9:\
3987 wy75-vb|wyse75-vb|wyse 75 with visual bell:\
4038 wy85-vb|wyse85-vb|wyse 85 with visual bell:\
4096 wy120-vb|wyse120-vb|wy150-vb|wyse150-vb|Wyse 120/150 visible bell:\
[all …]
/freebsd/crypto/openssl/apps/include/
H A Ds_apps.h101 SRP_VBASE *vb; member
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoV.td1204 def : InstAlias<"vmsgtu.vv $vd, $va, $vb$vm",
1205 (VMSLTU_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
1206 def : InstAlias<"vmsgt.vv $vd, $va, $vb$vm",
1207 (VMSLT_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
1208 def : InstAlias<"vmsgeu.vv $vd, $va, $vb$vm",
1210 def : InstAlias<"vmsge.vv $vd, $va, $vb$vm",
1211 (VMSLE_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
1439 def : InstAlias<"vmfgt.vv $vd, $va, $vb$vm",
1440 (VMFLT_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
1441 def : InstAlias<"vmfge.vv $vd, $va, $vb$vm",
[all …]
/freebsd/contrib/ntp/ntpd/
H A Drefclock_msfees.c353 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 Dcert-threecolumn.pem216 9vb
/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dacl_common.c1212 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 Dsun8i-a83t-tbs-a711.dts434 regulator-name = "vcc-vb";
/freebsd/
H A DObsoleteFiles.inc6734 OLD_FILES+=usr/share/terminfo/v/vt100-vb
6827 OLD_FILES+=usr/share/terminfo/w/wy120-vb
6834 OLD_FILES+=usr/share/terminfo/w/wy150-vb
6845 OLD_FILES+=usr/share/terminfo/w/wy160-vb
6851 OLD_FILES+=usr/share/terminfo/w/wy185-vb
6856 OLD_FILES+=usr/share/terminfo/w/wy30-vb
6869 OLD_FILES+=usr/share/terminfo/w/wy325-vb
6890 OLD_FILES+=usr/share/terminfo/w/wy50-vb
6921 OLD_FILES+=usr/share/terminfo/w/wy60-vb
6927 OLD_FILES+=usr/share/terminfo/w/wy75-vb
[all …]
/freebsd/contrib/ncurses/misc/
H A Dterminfo.src11658 wy30-vb|wyse30-vb|wyse 30 visible bell,
11716 wy50-vb|wyse50-vb|wyse 50 visible bell,
11780 wy350-vb|wyse350-vb|wyse 350 visible bell,
11855 wy120-vb|wyse120-vb|wy150-vb|wyse150-vb|Wyse 120/150 visible bell,
11959 wy60-vb|wyse60-vb|Wyse 60 visible bell,
12001 wy99gt-vb|wyse99gt-vb|Wyse 99gt visible bell,
12190 wy160-vb|wyse160-vb|Wyse 160 visible bell,
12256 wy75-vb|wyse75-vb|wyse 75 with visible bell,
12313 wy85-vb|wyse85-vb|wyse 85 with visible bell,
12426 wy185-vb|wyse185-vb|wyse 185+flash,
[all …]

12