Home
last modified time | relevance | path

Searched full:vsp (Results 1 – 25 of 66) sorted by relevance

123

/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/contrib/llvm-project/lldb/source/Symbol/
H A DArmUnwindInfo.cpp131 int32_t vsp = 0; in GetUnwindPlan() local
139 // vsp = vsp + (xxxxxx << 2) + 4. Covers range 0x04-0x100 inclusive in GetUnwindPlan()
140 vsp += ((byte1 & 0x3f) << 2) + 4; in GetUnwindPlan()
143 // vsp = vsp – (xxxxxx << 2) - 4. Covers range 0x04-0x100 inclusive 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()
176 // Set vsp = r[nnnn] in GetUnwindPlan()
183 register_offsets.emplace_back(dwarf_r4 + i, vsp); in GetUnwindPlan()
184 vsp += 4; 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/sys/contrib/device-tree/Bindings/media/
H A Drenesas,vsp1.txt1 * Renesas VSP Video Processing Engine
3 The VSP is a video processing engine that supports up-/down-scaling, alpha
13 - reg: Base address and length of the registers block for the VSP.
14 - interrupts: VSP interrupt specifier.
15 - clocks: A phandle + clock-specifier pair for the VSP functional clock.
20 for the VSP. Not needed on Gen2, mandatory on Gen3.
25 vsp@fe928000 {
H A Drenesas,vsp1.yaml7 title: Renesas VSP Video Processing Engine
13 The VSP is a video processing engine that supports up-/down-scaling, alpha
47 A phandle referencing the FCP that handles memory accesses for the VSP.
104 vsp@fe928000 {
119 vsp@fe920000 {
H A Drenesas,fcp.yaml18 There are three types of FCP: FCP for Codec (FCPC), FCP for VSP (FCPV) and
26 - renesas,fcpv # FCP for VSP
32 - const: renesas,fcpv # Generic FCP for VSP fallback
88 # R8A7795 (R-Car H3) FCP for VSP-D1
H A Drenesas,fcp.txt9 There are three types of FCP: FCP for Codec (FCPC), FCP for VSP (FCPV) and FCP
15 - "renesas,fcpv" for generic compatible 'FCP for VSP'
/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/contrib/ncsw/inc/Peripherals/
H A Dfm_vsp_ext.h68 @Group FM_VSP_init_grp FM VSP Initialization Unit
70 @Description FM VSP initialization API.
79 t_Handle h_Fm; /**< A handle to the FM object this VSP related to */
83 uint16_t liodnOffset; /**< VSP's LIODN offset */
88 uint8_t relativeProfileId; /**< VSP Id - relative to VSP's range
96 @Description Creates descriptor for the FM VSP module.
98 The routine returns a handle (descriptor) to the FM VSP object.
100 FM VSP function calls.
107 @Retval Handle to FM VSP object, or NULL for Failure.
114 @Description Initializes the FM VSP module
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMEHABI.h41 // Purpose: vsp = vsp + ((x << 2) + 4)
45 // Purpose: vsp = vsp - ((x << 2) + 4)
58 // Purpose: vsp = r[x]
84 // Purpose: vsp = vsp + ((x << 2) + 0x204)
/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/sys/contrib/device-tree/Bindings/display/panel/
H A Dsony,td4353-jdi.yaml30 vsp-supply:
48 - vsp-supply
70 vsp-supply = <&lab>;
/freebsd/share/man/man4/
H A Dhv_storvsc.458 to the storage Virtual Service Provider (VSP) hosted in the root partition
62 The VSP in the root partition then forwards the storage related requests to
69 partition VSP over the Hyper-V VMBus.
H A Dhv_netvsc.460 to the network Virtual Service Provider (VSP) hosted in the root partition
64 The VSP in the root partition then forwards the network related requests to
/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/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h100 SW.startLine() << format("0x%02X ; vsp = vsp + %u\n", Opcode, in Decode_00xxxxxx()
106 SW.startLine() << format("0x%02X ; vsp = vsp - %u\n", Opcode, in Decode_01xxxxxx()
135 SW.startLine() << format("0x%02X ; vsp = r%u\n", Opcode, (Opcode & 0x0f)); in Decode_1001nnnn()
182 OS << format("; vsp = vsp + %" PRIu64 "\n", 0x204 + (Value << 2)); in Decode_10110010_uleb128()
/freebsd/sys/contrib/device-tree/Bindings/display/
H A Drenesas,du.txt53 VSP instance that serves the DU channel, and the channel index identifies
54 the LIF instance in that VSP.
/freebsd/sys/contrib/device-tree/src/arm64/renesas/
H A Dr8a77950.dtsi162 vspd3: vsp@fea38000 {
173 vspi2: vsp@fe9c0000 {
/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.dtsi254 compatible = "sprd,sc9860-vsp-clk";
260 vsp_gate: vsp-gate {
261 compatible = "sprd,sc9860-vsp-gate";
/freebsd/share/doc/usd/22.trofftut/
H A Dtt10109 ^vs \e\en(VSp \e" spacing

123