Home
last modified time | relevance | path

Searched refs:vsp (Results 1 – 25 of 46) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DArmUnwindInfo.cpp131 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 Dtimer_subr.h40 #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 Dtime.h35 #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 Drtsold.h134 #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 Dunwind.c373 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 Dverify_file.c133 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 Dxdr_float.c97 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 Dtime.h400 #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 Ddefines.h548 #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 Dsprd,sc9860-clk.txt15 - "sprd,sc9860-vsp-clk"
16 - "sprd,sc9860-vsp-gate"
/freebsd/sys/contrib/device-tree/src/arm64/renesas/
H A Dr8a77950.dtsi162 vspd3: vsp@fea38000 {
173 vspi2: vsp@fe9c0000 {
H A Dr9a07g043u.dtsi132 vspd: vsp@10870000 {
H A Dr8a77951.dtsi2910 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 Dr8a774c0.dtsi1753 vspb0: vsp@fe960000 {
1763 vspd0: vsp@fea20000 {
1773 vspd1: vsp@fea28000 {
1783 vspi0: vsp@fe9a0000 {
H A Dr8a774e1.dtsi2563 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 Dr8a77995.dtsi1282 vspbs: vsp@fe960000 {
1292 vspd0: vsp@fea20000 {
1302 vspd1: vsp@fea28000 {
H A Dr8a77990.dtsi1897 vspb0: vsp@fe960000 {
1916 vspi0: vsp@fe9a0000 {
1935 vspd0: vsp@fea20000 {
1954 vspd1: vsp@fea28000 {
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Drenesas,vsp1.txt25 vsp@fe928000 {
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsdm845-sony-xperia-tama-akatsuki.dts42 /delete-property/ vsp-supply;
/freebsd/sys/contrib/device-tree/src/arm64/sprd/
H A Dsc9860.dtsi253 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 Dr8a7792.dtsi882 vsp@fe928000 {
891 vsp@fe930000 {
900 vsp@fe938000 {
H A Dr8a7742.dtsi1753 vsp@fe920000 {
1762 vsp@fe928000 {
1771 vsp@fe930000 {
1780 vsp@fe938000 {
H A Dr8a7790.dtsi1788 vsp@fe920000 {
1797 vsp@fe928000 {
1806 vsp@fe930000 {
1815 vsp@fe938000 {
/freebsd/sys/contrib/device-tree/src/arm/qcom/
H A Dqcom-msm8926-motorola-peregrine.dts32 vsp-supply = <&reg_lcd_pos>;
H A Dmsm8226-motorola-falcon.dts31 vsp-supply = <&reg_lcd_pos>;

12