Home
last modified time | relevance | path

Searched full:vb (Results 1 – 25 of 97) sorted by relevance

1234

/freebsd/sys/dev/vt/
H A Dvt_buf.c46 #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 Dvt.h241 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/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrAltivec.td292 : VXForm_1<xo, (outs vrrc:$VD), (ins vrrc:$VA, vrrc:$VB),
293 !strconcat(opc, " $VD, $VA, $VB"), IIC_VecFP,
294 [(set Ty:$VD, (IntID Ty:$VA, Ty:$VB))]>;
300 : VXForm_1<xo, (outs vrrc:$VD), (ins vrrc:$VA, vrrc:$VB),
301 !strconcat(opc, " $VD, $VA, $VB"), IIC_VecFP,
302 [(set OutTy:$VD, (IntID InTy:$VA, InTy:$VB))]>;
308 : VXForm_1<xo, (outs vrrc:$VD), (ins vrrc:$VA, vrrc:$VB),
309 !strconcat(opc, " $VD, $VA, $VB"), IIC_VecFP,
310 [(set OutTy:$VD, (IntID In1Ty:$VA, In2Ty:$VB))]>;
314 : VXForm_2<xo, (outs vrrc:$VD), (ins vrrc:$VB),
[all …]
H A DPPCInstrP10.td151 // VX-Form: [ PO VT R VB RC XO ]
156 bits<5> VB;
163 let Inst{16-20} = VB;
358 bits<5> VB;
366 let Inst{16-20} = VB;
374 : VXForm_1<xo, (outs vrrc:$VD), (ins vrrc:$VDi, gprc:$VA, vrrc:$VB),
375 !strconcat(opc, " $VD, $VA, $VB"), IIC_VecGeneral, pattern>,
381 : VXForm_1<xo, (outs vrrc:$VD), (ins vrrc:$VDi, gprc:$VA, gprc:$VB),
382 !strconcat(opc, " $VD, $VA, $VB"), IIC_VecGeneral, pattern>,
391 bits<5> VB;
[all …]
H A DREADME_P9.txt23 (set i64:$rD, (int_ppc_altivec_vextublx i64:$rA, v16i8:$vB))
24 (set i64:$rD, (int_ppc_altivec_vextuhlx i64:$rA, v8i16:$vB))
25 (set i64:$rD, (int_ppc_altivec_vextuwlx i64:$rA, v4i32:$vB))
28 (set i64:$rD, (int_ppc_altivec_vextubrx i64:$rA, v16i8:$vB))
29 (set i64:$rD, (int_ppc_altivec_vextuhrx i64:$rA, v8i16:$vB))
30 (set i64:$rD, (int_ppc_altivec_vextuwrx i64:$rA, v4i32:$vB))
41 (set i64:$rD, (int_ppc_altivec_vclzlsbb v16i8:$vB))
42 (set i64:$rD, (int_ppc_altivec_vctzlsbb v16i8:$vB))
46 (set v16i8:$vD, (cttz v16i8:$vB)) // vctzb
47 (set v8i16:$vD, (cttz v8i16:$vB)) // vctzh
[all …]
H A DPPCInstrFormats.td1030 bits<5> VB;
1036 let Inst{16-20} = VB;
2051 bits<5> VB;
2057 let Inst{16-20} = VB;
2065 let VB = VD;
2073 bits<5> VB;
2079 let Inst{16-20} = VB;
2111 /// VXForm_5 - VX instructions with "0,0,VB" register fields, like mtvscr.
2115 bits<5> VB;
2121 let Inst{16-20} = VB;
[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()
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/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/secure/lib/libcrypto/man/man3/
H A DSRP_VBASE_new.3159 \& void SRP_VBASE_free(SRP_VBASE *vb);
161 \& int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file);
163 \& int SRP_VBASE_add0_user(SRP_VBASE *vb, SRP_user_pwd *user_pwd);
164 \& SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username);
165 \& SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username);
181 The \fBSRP_VBASE_free()\fR function frees up the \fBvb\fR structure.
182 If \fBvb\fR is \s-1NULL,\s0 nothing is done.
185 populates the \fBvb\fR structure.
193 to the \fBvb\fR structure. See \fBSRP_user_pwd_new\fR\|(3) to create and populate this
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp973 OpRef concats(OpRef Va, OpRef Vb, ResultStack &Results);
974 OpRef funnels(OpRef Va, OpRef Vb, int Amount, ResultStack &Results);
976 OpRef packs(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results,
978 OpRef packp(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results,
980 OpRef vmuxs(ArrayRef<uint8_t> Bytes, OpRef Va, OpRef Vb,
982 OpRef vmuxp(ArrayRef<uint8_t> Bytes, OpRef Va, OpRef Vb,
986 OpRef shuffs2(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results);
988 OpRef shuffp2(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results);
991 OpRef contracting(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results);
997 SDValue Va, SDValue Vb, SDNod
1231 funnels(OpRef Va,OpRef Vb,int Amount,ResultStack & Results) funnels() argument
1270 packs(ShuffleMask SM,OpRef Va,OpRef Vb,ResultStack & Results,MutableArrayRef<int> NewMask,unsigned Options) packs() argument
1504 packp(ShuffleMask SM,OpRef Va,OpRef Vb,ResultStack & Results,MutableArrayRef<int> NewMask) packp() argument
1541 vmuxs(ArrayRef<uint8_t> Bytes,OpRef Va,OpRef Vb,ResultStack & Results) vmuxs() argument
1554 vmuxp(ArrayRef<uint8_t> Bytes,OpRef Va,OpRef Vb,ResultStack & Results) vmuxp() argument
1606 shuffs2(ShuffleMask SM,OpRef Va,OpRef Vb,ResultStack & Results) shuffs2() argument
1684 shuffp2(ShuffleMask SM,OpRef Va,OpRef Vb,ResultStack & Results) shuffp2() argument
1848 scalarizeShuffle(ArrayRef<int> Mask,const SDLoc & dl,MVT ResTy,SDValue Va,SDValue Vb,SDNode * N) scalarizeShuffle() argument
2073 contracting(ShuffleMask SM,OpRef Va,OpRef Vb,ResultStack & Results) contracting() argument
2645 OpRef Vb = OpRef::undef(ResTy); selectShuffle() local
[all...]
/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/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/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/sys/compat/linux/
H A Dlinux_ioctl.c2681 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/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
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/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/contrib/device-tree/Bindings/net/dsa/
H A Drealtek.yaml44 Use with models RTL8363NB, RTL8363NB-VB, RTL8363SC, RTL8363SC-VB,
45 RTL8364NB, RTL8364NB-VB, RTL8365MB, RTL8366SC, RTL8367RB-VB, RTL8367S,
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp238 for (auto &VB : VirtualBaseSyms) { in initializeChildren() local
239 int VBPO = VB->getVirtualBasePointerOffset(); in initializeChildren()
241 if (auto VBP = VB->getRawSymbol().getVirtualBaseTableType()) { in initializeChildren()
256 std::make_unique<BaseClassLayout>(*this, Offset, Elide, std::move(VB)); in initializeChildren()
/freebsd/tests/sys/netpfil/pf/
H A Daltq.sh312 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/share/termcap/
H A Dtermcap295 :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/sys/contrib/device-tree/Bindings/pinctrl/
H A Daspeed,ast2600-pinctrl.yaml250 - VB
493 - VB
/freebsd/crypto/openssl/test/ocsp-tests/
H A DISIC_ND2_Issuer_Root.pem12 Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp
H A DWKIC_ND2_Issuer_Root.pem12 Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp

1234