| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | ArmUnwindInfo.cpp | 131 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/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/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/sys/contrib/device-tree/Bindings/media/ |
| H A D | renesas,vsp1.txt | 1 * 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 D | renesas,vsp1.yaml | 7 title: Renesas VSP Video Processing Engine 13 The VSP is a video processing engine that supports up-/down-scaling, alpha 48 A phandle referencing the FCP that handles memory accesses for the VSP. 105 vsp@fe928000 { 120 vsp@fe920000 {
|
| H A D | renesas,fcp.yaml | 18 There are three types of FCP: FCP for Codec (FCPC), FCP for VSP (FCPV) and 26 - renesas,fcpv # FCP for VSP 33 - const: renesas,fcpv # Generic FCP for VSP fallback 90 # R8A7795 (R-Car H3) FCP for VSP-D1
|
| H A D | renesas,fcp.txt | 9 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 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/contrib/ncsw/inc/Peripherals/ |
| H A D | fm_vsp_ext.h | 68 @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 D | ARMEHABI.h | 41 // 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 D | unwind.c | 371 uint32_t *vsp = (uint32_t *)state->registers[SP]; in unwind_exec_insn() local 398 if (!__is_aligned(vsp, sizeof(register_t))) in unwind_exec_insn() 407 if (!kstack_contains(td, (uintptr_t)vsp, in unwind_exec_insn() 408 sizeof(*vsp))) in unwind_exec_insn() 411 state->registers[reg] = *vsp++; in unwind_exec_insn() 433 if (!__is_aligned(vsp, sizeof(register_t))) in unwind_exec_insn() 440 if (!kstack_contains(td, (uintptr_t)vsp, in unwind_exec_insn() 441 sizeof(*vsp) * (4 + count))) in unwind_exec_insn() 444 state->registers[reg] = *vsp++; in unwind_exec_insn() 450 if (!kstack_contains(td, (uintptr_t)vsp, sizeof(*vsp))) in unwind_exec_insn() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/clock/ |
| H A D | sprd,sc9860-clk.yaml | 31 - sprd,sc9860-vsp-clk 32 - sprd,sc9860-vsp-gate 70 - sprd,sc9860-vsp-gate 83 - sprd,sc9860-vsp-clk 111 - sprd,sc9860-vsp-clk 130 - sprd,sc9860-vsp-gate
|
| H A D | sprd,sc9860-clk.txt | 15 - "sprd,sc9860-vsp-clk" 16 - "sprd,sc9860-vsp-gate"
|
| /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/krb5/src/lib/rpc/ |
| H A D | xdr_float.c | 93 struct vax_single vs, *vsp; in xdr_float() local 132 vsp = (struct vax_single *)fp; in xdr_float() 140 *vsp = lim->s; in xdr_float() 144 vsp->exp = is.exp - IEEE_SNG_BIAS + VAX_SNG_BIAS; in xdr_float() 145 vsp->mantissa2 = is.mantissa; in xdr_float() 146 vsp->mantissa1 = (is.mantissa >> 16); in xdr_float() 148 vsp->sign = is.sign; in xdr_float()
|
| /freebsd/sys/contrib/device-tree/Bindings/display/panel/ |
| H A D | boe,tv101wum-ll2.yaml | 25 vsp-supply: true 34 - vsp-supply 51 vsp-supply = <&vsp_lcd>;
|
| H A D | himax,hx83112a.yaml | 33 vsp-supply: 44 - vsp-supply 66 vsp-supply = <&pm6150l_lcdb_ldo>;
|
| H A D | sony,td4353-jdi.yaml | 33 vsp-supply: 51 - vsp-supply 73 vsp-supply = <&lab>;
|
| /freebsd/share/man/man4/ |
| H A D | hv_storvsc.4 | 58 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 D | hv_netvsc.4 | 60 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 D | defines.h | 550 #define timespecadd(tsp, usp, vsp) \ argument 552 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ 553 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ 554 if ((vsp)->tv_nsec >= 1000000000L) { \ 555 (vsp)->tv_sec++; \ 556 (vsp)->tv_nsec -= 1000000000L; \ 561 #define timespecsub(tsp, usp, vsp) \ argument 563 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ 564 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ 565 if ((vsp)->tv_nsec < 0) { \ [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/display/ |
| H A D | renesas,rzg2l-du.yaml | 70 - description: phandle to VSP instance that serves the DU channel 71 - description: Channel index identifying the LIF instance in that VSP
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ARMEHABIPrinter.h | 100 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()
|