/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | ArmUnwindInfo.cpp | 131 int32_t vsp = 0; in GetUnwindPlan() local 140 vsp += ((byte1 & 0x3f) << 2) + 4; in GetUnwindPlan() 144 vsp -= ((byte1 & 0x3f) << 2) + 4; in GetUnwindPlan() 161 register_offsets.emplace_back(dwarf_r4 + i, vsp); in GetUnwindPlan() 162 vsp += 4; in GetUnwindPlan() 183 register_offsets.emplace_back(dwarf_r4 + i, vsp); in GetUnwindPlan() 184 vsp += 4; in GetUnwindPlan() 191 register_offsets.emplace_back(dwarf_r4 + i, vsp); in GetUnwindPlan() 192 vsp += 4; in GetUnwindPlan() 195 register_offsets.emplace_back(dwarf_lr, vsp); in GetUnwindPlan() [all …]
|
/freebsd/usr.sbin/rtadvd/ |
H A D | timer_subr.h | 40 #define TS_ADD(tsp, usp, vsp) \ argument 42 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ 43 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ 44 if ((vsp)->tv_nsec >= 1000000000L) { \ 45 (vsp)->tv_sec++; \ 46 (vsp)->tv_nsec -= 1000000000L; \ 49 #define TS_SUB(tsp, usp, vsp) \ argument 51 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ 52 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ 53 if ((vsp)->tv_nsec < 0) { \ [all …]
|
/freebsd/contrib/libfido2/openbsd-compat/ |
H A D | time.h | 35 #define timespecadd(tsp, usp, vsp) \ argument 37 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ 38 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ 39 if ((vsp)->tv_nsec >= 1000000000L) { \ 40 (vsp)->tv_sec++; \ 41 (vsp)->tv_nsec -= 1000000000L; \ 45 #define timespecsub(tsp, usp, vsp) \ argument 47 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ 48 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ 49 if ((vsp)->tv_nsec < 0) { \ [all …]
|
/freebsd/usr.sbin/rtsold/ |
H A D | rtsold.h | 134 #define TS_ADD(tsp, usp, vsp) \ argument 136 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ 137 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ 138 if ((vsp)->tv_nsec >= 1000000000L) { \ 139 (vsp)->tv_sec++; \ 140 (vsp)->tv_nsec -= 1000000000L; \ 143 #define TS_SUB(tsp, usp, vsp) \ argument 145 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ 146 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ 147 if ((vsp)->tv_nsec < 0) { \ [all …]
|
/freebsd/sys/arm/arm/ |
H A D | unwind.c | 373 uint32_t *vsp = (uint32_t *)state->registers[SP]; in unwind_exec_insn() local 400 if (!__is_aligned(vsp, sizeof(register_t))) in unwind_exec_insn() 409 if (!kstack_contains(td, (uintptr_t)vsp, in unwind_exec_insn() 410 sizeof(*vsp))) in unwind_exec_insn() 413 state->registers[reg] = *vsp++; in unwind_exec_insn() 435 if (!__is_aligned(vsp, sizeof(register_t))) in unwind_exec_insn() 442 if (!kstack_contains(td, (uintptr_t)vsp, in unwind_exec_insn() 443 sizeof(*vsp) * (4 + count))) in unwind_exec_insn() 446 state->registers[reg] = *vsp++; in unwind_exec_insn() 452 if (!kstack_contains(td, (uintptr_t)vsp, sizeof(*vsp))) in unwind_exec_insn() [all …]
|
/freebsd/lib/libsecureboot/ |
H A D | verify_file.c | 133 struct verify_status *vsp; in is_verified() local 137 for (vsp = verified_files; vsp != NULL; vsp = vsp->vs_next) { in is_verified() 138 if (stp->st_dev == vsp->vs_dev && in is_verified() 139 stp->st_ino == vsp->vs_ino) { in is_verified() 140 rc = vsp->vs_status; in is_verified() 155 struct verify_status *vsp; in add_verify_status() local 157 vsp = malloc(sizeof(struct verify_status)); in add_verify_status() 158 if (vsp) { in add_verify_status() 159 vsp->vs_next = verified_files; in add_verify_status() 160 vsp->vs_dev = stp->st_dev; in add_verify_status() [all …]
|
/freebsd/lib/libc/xdr/ |
H A D | xdr_float.c | 97 struct vax_single vs, *vsp; in xdr_float() local 128 vsp = (struct vax_single *)fp; in xdr_float() 135 *vsp = lim->s; in xdr_float() 139 vsp->exp = is.exp - IEEE_SNG_BIAS + VAX_SNG_BIAS; in xdr_float() 140 vsp->mantissa2 = is.mantissa; in xdr_float() 141 vsp->mantissa1 = (is.mantissa >> 16); in xdr_float() 143 vsp->sign = is.sign; in xdr_float()
|
/freebsd/sys/sys/ |
H A D | time.h | 400 #define timespecadd(tsp, usp, vsp) \ argument 402 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ 403 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ 404 if ((vsp)->tv_nsec >= 1000000000L) { \ 405 (vsp)->tv_sec++; \ 406 (vsp)->tv_nsec -= 1000000000L; \ 409 #define timespecsub(tsp, usp, vsp) \ argument 411 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ 412 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ 413 if ((vsp)->tv_nsec < 0) { \ [all …]
|
/freebsd/crypto/openssh/ |
H A D | defines.h | 548 #define timespecadd(tsp, usp, vsp) \ argument 550 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ 551 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ 552 if ((vsp)->tv_nsec >= 1000000000L) { \ 553 (vsp)->tv_sec++; \ 554 (vsp)->tv_nsec -= 1000000000L; \ 559 #define timespecsub(tsp, usp, vsp) \ argument 561 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ 562 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ 563 if ((vsp)->tv_nsec < 0) { \ [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | sprd,sc9860-clk.txt | 15 - "sprd,sc9860-vsp-clk" 16 - "sprd,sc9860-vsp-gate"
|
/freebsd/sys/contrib/device-tree/src/arm64/renesas/ |
H A D | r8a77950.dtsi | 162 vspd3: vsp@fea38000 { 173 vspi2: vsp@fe9c0000 {
|
H A D | r9a07g043u.dtsi | 132 vspd: vsp@10870000 {
|
H A D | r8a77951.dtsi | 2910 vspbc: vsp@fe920000 { 2921 vspbd: vsp@fe960000 { 2932 vspd0: vsp@fea20000 { 2943 vspd1: vsp@fea28000 { 2954 vspd2: vsp@fea30000 { 2965 vspi0: vsp@fe9a0000 { 2976 vspi1: vsp@fe9b0000 {
|
H A D | r8a774c0.dtsi | 1753 vspb0: vsp@fe960000 { 1763 vspd0: vsp@fea20000 { 1773 vspd1: vsp@fea28000 { 1783 vspi0: vsp@fe9a0000 {
|
H A D | r8a774e1.dtsi | 2563 vspbc: vsp@fe920000 { 2574 vspbd: vsp@fe960000 { 2585 vspd0: vsp@fea20000 { 2596 vspd1: vsp@fea28000 { 2607 vspi0: vsp@fe9a0000 { 2618 vspi1: vsp@fe9b0000 {
|
H A D | r8a77995.dtsi | 1282 vspbs: vsp@fe960000 { 1292 vspd0: vsp@fea20000 { 1302 vspd1: vsp@fea28000 {
|
H A D | r8a77990.dtsi | 1897 vspb0: vsp@fe960000 { 1916 vspi0: vsp@fe9a0000 { 1935 vspd0: vsp@fea20000 { 1954 vspd1: vsp@fea28000 {
|
/freebsd/sys/contrib/device-tree/Bindings/media/ |
H A D | renesas,vsp1.txt | 25 vsp@fe928000 {
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | sdm845-sony-xperia-tama-akatsuki.dts | 42 /delete-property/ vsp-supply;
|
/freebsd/sys/contrib/device-tree/src/arm64/sprd/ |
H A D | sc9860.dtsi | 253 compatible = "sprd,sc9860-vsp-clk"; 259 vsp_gate: vsp-gate { 260 compatible = "sprd,sc9860-vsp-gate";
|
/freebsd/sys/contrib/device-tree/src/arm/renesas/ |
H A D | r8a7792.dtsi | 882 vsp@fe928000 { 891 vsp@fe930000 { 900 vsp@fe938000 {
|
H A D | r8a7742.dtsi | 1753 vsp@fe920000 { 1762 vsp@fe928000 { 1771 vsp@fe930000 { 1780 vsp@fe938000 {
|
H A D | r8a7790.dtsi | 1788 vsp@fe920000 { 1797 vsp@fe928000 { 1806 vsp@fe930000 { 1815 vsp@fe938000 {
|
/freebsd/sys/contrib/device-tree/src/arm/qcom/ |
H A D | qcom-msm8926-motorola-peregrine.dts | 32 vsp-supply = <®_lcd_pos>;
|
H A D | msm8226-motorola-falcon.dts | 31 vsp-supply = <®_lcd_pos>;
|