| /freebsd-13.1/sys/dev/vt/ |
| H A D | vt_buf.c | 79 if (vb->vb_roffset != vb->vb_curroffset) { in vthistory_seek() 80 vb->vb_roffset = vb->vb_curroffset; in vthistory_seek() 136 if (vb->vb_curroffset + vb->vb_scr_size.tp_row >= vb->vb_history_size) { in vthistory_addlines() 138 vb->vb_curroffset %= vb->vb_history_size; in vthistory_addlines() 141 vb->vb_roffset = vb->vb_curroffset; in vthistory_addlines() 412 vb->vb_history_size = MAX(vb->vb_history_size, vb->vb_scr_size.tp_row); in vtbuf_init_rows() 415 vb->vb_rows[r] = &vb->vb_buffer[r * vb->vb_scr_size.tp_col]; in vtbuf_init_rows() 645 vb->vb_roffset = vb->vb_curroffset; in vtbuf_grow() 690 vtbuf_dirty_cell(vb, &vb->vb_cursor); in vtbuf_cursor_position() 692 vtbuf_dirty_cell(vb, &vb->vb_cursor); in vtbuf_cursor_position() [all …]
|
| H A D | vt.h | 252 #define VTBUF_SLCK_ENABLE(vb) vtbuf_scroll_mode((vb), 1) argument 253 #define VTBUF_SLCK_DISABLE(vb) vtbuf_scroll_mode((vb), 0) argument 255 #define VTBUF_MAX_HEIGHT(vb) \ argument 256 ((vb)->vb_history_size) 257 #define VTBUF_GET_ROW(vb, r) \ argument 258 ((vb)->vb_rows[((vb)->vb_roffset + (r)) % VTBUF_MAX_HEIGHT(vb)]) 260 ((vb)->vb_rows[((vb)->vb_roffset + (r)) % VTBUF_MAX_HEIGHT(vb)][(c)]) 261 #define VTBUF_FIELD(vb, r, c) \ argument 262 ((vb)->vb_rows[((vb)->vb_curroffset + (r)) % VTBUF_MAX_HEIGHT(vb)][(c)]) 263 #define VTBUF_ISCURSOR(vb, r, c) \ argument [all …]
|
| /freebsd-13.1/crypto/openssl/crypto/srp/ |
| H A D | srp_vfy.c | 273 SRP_VBASE *vb = OPENSSL_malloc(sizeof(*vb)); in SRP_VBASE_new() local 275 if (vb == NULL) in SRP_VBASE_new() 291 return vb; in SRP_VBASE_new() 296 if (!vb) in SRP_VBASE_free() 301 OPENSSL_free(vb); in SRP_VBASE_free() 408 if (vb->seed_key) { in SRP_VBASE_init() 500 if (vb == NULL) in find_user() 536 if (vb == NULL) in SRP_VBASE_get1_by_user() 543 (vb->default_g == NULL) || (vb->default_N == NULL)) in SRP_VBASE_get1_by_user() 551 SRP_user_pwd_set_gN(user, vb->default_g, vb->default_N); in SRP_VBASE_get1_by_user() [all …]
|
| /freebsd-13.1/sys/libkern/ |
| H A D | strlen.c | 87 long va, vb; in size_t() local 101 vb = ((~*lp) & mask80); in size_t() 103 if (va & vb) in size_t() 112 vb = ((~*lp) & mask80); in size_t() 113 if (va & vb) { in size_t()
|
| H A D | bcmp.c | 62 ul va, vb; variable 91 vb = *(culp)p2; 93 if (*(culp)p1 != (va >> shr | vb << shl)) 96 va = vb;
|
| /freebsd-13.1/lib/libc/string/ |
| H A D | strlen.c | 88 long va, vb; in strlen() local 102 vb = ((~*lp) & mask80); in strlen() 104 if (va & vb) in strlen() 113 vb = ((~*lp) & mask80); in strlen() 114 if (va & vb) { in strlen()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_client/ |
| H A D | relocate.c | 138 struct validator_baton_t vb; in svn_client_relocate2() local 148 vb.ctx = ctx; in svn_client_relocate2() 149 vb.path = wcroot_dir; in svn_client_relocate2() 150 vb.url_uuids = apr_array_make(pool, 1, sizeof(struct url_uuid_t)); in svn_client_relocate2() 151 vb.pool = pool; in svn_client_relocate2() 165 validator_func, &vb, pool)); in svn_client_relocate2() 174 validator_func, &vb, pool)); in svn_client_relocate2()
|
| /freebsd-13.1/contrib/bearssl/src/ |
| H A D | inner.h | 2382 #define vsldoi(vt, va, vb, sh) vsldoi_(vt, va, vb, sh) argument 2389 #define vcipher(vt, va, vb) vcipher_(vt, va, vb) argument 2390 #define vcipherlast(vt, va, vb) vcipherlast_(vt, va, vb) argument 2391 #define vncipher(vt, va, vb) vncipher_(vt, va, vb) argument 2392 #define vncipherlast(vt, va, vb) vncipherlast_(vt, va, vb) argument 2393 #define vperm(vt, va, vb, vc) vperm_(vt, va, vb, vc) argument 2394 #define vpmsumd(vt, va, vb) vpmsumd_(vt, va, vb) argument 2395 #define xxpermdi(vt, va, vb, d) xxpermdi_(vt, va, vb, d) argument 2426 #define vcipher_(vt, va, vb) "\tvcipher\t" #vt "," #va "," #vb "\n" argument 2428 #define vncipher_(vt, va, vb) "\tvncipher\t" #vt "," #va "," #vb "\n" argument [all …]
|
| /freebsd-13.1/crypto/openssl/include/openssl/ |
| H A D | srp.h | 75 void SRP_VBASE_free(SRP_VBASE *vb); 76 int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file); 79 DEPRECATEDIN_1_1_0(SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username)) 81 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username);
|
| /freebsd-13.1/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-13.1/sys/compat/linux/ |
| H A D | linux_ioctl.c | 2739 vb->width = lvb->width; in linux_to_bsd_v4l_buffer() 2740 vb->depth = lvb->depth; in linux_to_bsd_v4l_buffer() 2750 lvb->width = vb->width; in bsd_to_linux_v4l_buffer() 2751 lvb->depth = vb->depth; in bsd_to_linux_v4l_buffer() 3092 vb->index = lvb->index; in linux_to_bsd_v4l2_buffer() 3093 vb->type = lvb->type; in linux_to_bsd_v4l2_buffer() 3095 vb->flags = lvb->flags; in linux_to_bsd_v4l2_buffer() 3096 vb->field = lvb->field; in linux_to_bsd_v4l2_buffer() 3108 vb->input = lvb->input; in linux_to_bsd_v4l2_buffer() 3117 lvb->type = vb->type; in bsd_to_linux_v4l2_buffer() [all …]
|
| /freebsd-13.1/sys/dev/vt/hw/vga/ |
| H A D | vt_vga.c | 614 const struct vt_buf *vb; in vga_bitblt_one_text_pixels_block() local 624 vb = &vw->vw_buf; in vga_bitblt_one_text_pixels_block() 663 c = VTBUF_GET_FIELD(vb, row, col); in vga_bitblt_one_text_pixels_block() 666 vt_determine_colors(c, VTBUF_ISCURSOR(vb, row, col), &fg, &bg); in vga_bitblt_one_text_pixels_block() 869 const struct vt_buf *vb; in vga_bitblt_text_txtmode() local 877 vb = &vw->vw_buf; in vga_bitblt_text_txtmode() 887 c = VTBUF_GET_FIELD(vb, row, col); in vga_bitblt_text_txtmode() 888 vt_determine_colors(c, VTBUF_ISCURSOR(vb, row, col), in vga_bitblt_text_txtmode()
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/ |
| H A D | Symbols.cpp | 402 static uint8_t getMinVisibility(uint8_t va, uint8_t vb) { in getMinVisibility() argument 404 return vb; in getMinVisibility() 405 if (vb == STV_DEFAULT) in getMinVisibility() 407 return std::min(va, vb); in getMinVisibility()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_repos/ |
| H A D | dump.c | 983 struct verify_mergeinfo_normalization_baton *const vb = baton; in verify_mergeinfo_normalization() local 989 SVN_ERR(svn_utf__normalize(&normpath, path, klen, &vb->buffer)); in verify_mergeinfo_normalization() 990 found = svn_hash_gets(vb->normalized_paths, normpath); in verify_mergeinfo_normalization() 992 svn_hash_sets(vb->normalized_paths, in verify_mergeinfo_normalization() 993 apr_pstrdup(vb->buffer.pool, normpath), in verify_mergeinfo_normalization() 1000 svn_hash_sets(vb->normalized_paths, in verify_mergeinfo_normalization() 1001 apr_pstrdup(vb->buffer.pool, normpath), in verify_mergeinfo_normalization() 1004 notify_warning(iterpool, vb->notify_func, vb->notify_baton, in verify_mergeinfo_normalization() 1008 normpath, SVN_PROP_MERGEINFO, vb->path); in verify_mergeinfo_normalization()
|
| H A D | authz_parse.c | 1356 compare_parsed_acls(const void *va, const void *vb) in compare_parsed_acls() argument 1359 const parsed_acl_t *const b = vb; in compare_parsed_acls()
|
| /freebsd-13.1/share/termcap/ |
| H A D | termcap | 3468 :nd=^L:up=^K:vb=: 3859 wy30-vb|wyse30-vb|wyse 30 visual bell:\ 3875 wy50-vb|wyse50-vb|wyse 50 visual bell:\ 3940 wy60-vb|wyse60-vb|Wyse 60 visual bell:\ 3941 :vb=\E`8\E`9:\ 3943 wy60-w-vb|wy60-wvb|wyse60-w-vb|Wyse 60 132-column visual bell:\ 3944 :vb=\E`8\E`9:\ 3990 wy75-vb|wyse75-vb|wyse 75 with visual bell:\ 4041 wy85-vb|wyse85-vb|wyse 85 with visual bell:\ 4099 wy120-vb|wyse120-vb|wy150-vb|wyse150-vb|Wyse 120/150 visible bell:\ [all …]
|
| H A D | termcap.small | 217 :ks=\E[?1h\E=:ke=\E[?1l\E>:vb=\Eg:\
|
| /freebsd-13.1/crypto/openssl/apps/ |
| H A D | s_server.c | 247 SRP_VBASE *vb; member 2115 srp_callback_parm.vb = SRP_VBASE_new(srpuserseed); in s_server_main() 2119 SRP_VBASE_init(srp_callback_parm.vb, in s_server_main() 2593 SRP_VBASE_get1_by_user(srp_callback_parm.vb, in sv_body() 2668 SRP_VBASE_get1_by_user(srp_callback_parm.vb, in sv_body() 2818 SRP_VBASE_get1_by_user(srp_callback_parm.vb, in init_ssl_connection() 3057 SRP_VBASE_get1_by_user(srp_callback_parm.vb, in www_body() 3428 SRP_VBASE_get1_by_user(srp_callback_parm.vb, in rev_body() 3457 SRP_VBASE_get1_by_user(srp_callback_parm.vb, in rev_body()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoV.td | 1026 def : InstAlias<"vmsgtu.vv $vd, $va, $vb$vm", 1027 (VMSLTU_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; 1028 def : InstAlias<"vmsgt.vv $vd, $va, $vb$vm", 1029 (VMSLT_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; 1030 def : InstAlias<"vmsgeu.vv $vd, $va, $vb$vm", 1032 def : InstAlias<"vmsge.vv $vd, $va, $vb$vm", 1033 (VMSLE_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; 1244 def : InstAlias<"vmfgt.vv $vd, $va, $vb$vm", 1245 (VMFLT_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>; 1246 def : InstAlias<"vmfge.vv $vd, $va, $vb$vm", [all …]
|
| /freebsd-13.1/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-13.1/sys/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | acl_common.c | 1213 acevals_compare(const void *va, const void *vb) in acevals_compare() argument 1215 const acevals_t *a = va, *b = vb; in acevals_compare()
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm/ |
| H A D | sun8i-a83t-tbs-a711.dts | 434 regulator-name = "vcc-vb";
|
| /freebsd-13.1/sys/netpfil/pf/ |
| H A D | pf.c | 2461 u_int8_t *vb = (u_int8_t *)&v; in pf_patch_16_unaligned() local 2463 pf_patch_8(m, cksum, fb++, *vb++, hi, udp); in pf_patch_16_unaligned() 2464 pf_patch_8(m, cksum, fb++, *vb++, !hi, udp); in pf_patch_16_unaligned() 2472 u_int8_t *vb = (u_int8_t *)&v; in pf_patch_32_unaligned() local 2474 pf_patch_8(m, cksum, fb++, *vb++, hi, udp); in pf_patch_32_unaligned() 2475 pf_patch_8(m, cksum, fb++, *vb++, !hi, udp); in pf_patch_32_unaligned() 2476 pf_patch_8(m, cksum, fb++, *vb++, hi, udp); in pf_patch_32_unaligned() 2477 pf_patch_8(m, cksum, fb++, *vb++, !hi, udp); in pf_patch_32_unaligned()
|
| /freebsd-13.1/sys/contrib/openzfs/module/zfs/ |
| H A D | spa_misc.c | 630 spa_log_sm_sort_by_txg(const void *va, const void *vb) in spa_log_sm_sort_by_txg() argument 633 const spa_log_sm_t *b = vb; in spa_log_sm_sort_by_txg()
|
| /freebsd-13.1/contrib/ncurses/misc/ |
| H A D | terminfo.src | 11308 wy30-vb|wyse30-vb|wyse 30 visible bell, 11366 wy50-vb|wyse50-vb|wyse 50 visible bell, 11430 wy350-vb|wyse350-vb|wyse 350 visible bell, 11505 wy120-vb|wyse120-vb|wy150-vb|wyse150-vb|Wyse 120/150 visible bell, 11609 wy60-vb|wyse60-vb|Wyse 60 visible bell, 11651 wy99gt-vb|wyse99gt-vb|Wyse 99gt visible bell, 11840 wy160-vb|wyse160-vb|Wyse 160 visible bell, 11906 wy75-vb|wyse75-vb|wyse 75 with visible bell, 11964 wy85-vb|wyse85-vb|wyse 85 with visible bell, 12078 wy185-vb|wyse185-vb|wyse 185+flash, [all …]
|