Home
last modified time | relevance | path

Searched refs:v4 (Results 1 – 25 of 89) sorted by relevance

1234

/openbmc/qemu/tests/tcg/s390x/
H A Dvxeh2_vstrs.c14 const S390Vector *v4, const uint8_t m5, const uint8_t m6) in vstrs() argument
24 , [v4] "v" (v4->v) in vstrs()
37 S390Vector v4 = {.d[0] = 3, .d[1] = 0}; in test_ignored_match() local
39 assert(vstrs(&v1, &v2, &v3, &v4, 0, 2) == 1); in test_ignored_match()
49 S390Vector v4 = {.d[0] = 0, .d[1] = 0}; in test_empty_needle() local
51 assert(vstrs(&v1, &v2, &v3, &v4, 0, 0) == 2); in test_empty_needle()
61 S390Vector v4 = {.d[0] = 16, .d[1] = 0}; in test_max_length() local
63 assert(vstrs(&v1, &v2, &v3, &v4, 0, 0) == 3); in test_max_length()
74 S390Vector v4 = {.d[0] = 11, .d[1] = 0}; in test_no_match() local
76 assert(vstrs(&v1, &v2, &v3, &v4, 0, 2) == 1); in test_no_match()
/openbmc/qemu/docs/system/
H A Dcpu-models-x86-abi.csv1 Model,baseline,v2,v3,v4
6 Broadwell-v4,✅,✅,✅,
10 Cascadelake-Server-v4,✅,✅,✅,✅
26 EPYC-Rome-v4,✅,✅,✅,
30 EPYC-v4,✅,✅,✅,
35 Haswell-v4,✅,✅,✅,
39 Icelake-Server-v4,✅,✅,✅,✅
60 Skylake-Client-v4,✅,✅,✅,
64 Skylake-Server-v4,✅,✅,✅,✅
69 Snowridge-v4,✅,✅,,
H A Dtarget-i386.rst40 accelerator require the host to be running Linux v4.5 or newer.
/openbmc/qemu/include/qemu/
H A Dxxhash.h57 uint32_t v4 = QEMU_XXHASH_SEED - PRIME32_1; in qemu_xxhash8() local
78 v4 += d * PRIME32_2; in qemu_xxhash8()
79 v4 = rol32(v4, 13); in qemu_xxhash8()
80 v4 *= PRIME32_1; in qemu_xxhash8()
82 h32 = rol32(v1, 1) + rol32(v2, 7) + rol32(v3, 12) + rol32(v4, 18); in qemu_xxhash8()
192 uint64_t v3, uint64_t v4) in XXH64_mergerounds() argument
196 h64 = rol64(v1, 1) + rol64(v2, 7) + rol64(v3, 12) + rol64(v4, 18); in XXH64_mergerounds()
200 h64 = XXH64_mergeround(h64, v4); in XXH64_mergerounds()
221 uint64_t v4 = QEMU_XXHASH_SEED - XXH_PRIME64_1; in qemu_xxhash64_4() local
226 v4 = XXH64_round(v4, d); in qemu_xxhash64_4()
[all …]
/openbmc/qemu/target/s390x/tcg/
H A Dvec_string_helper.c345 static int vstrc(void *v1, const void *v2, const void *v3, const void *v4, in vstrc() argument
376 const uint8_t c1 = s390_vec_read_element8(v4, j * (1 << es)); in vstrc()
377 const uint8_t c2 = s390_vec_read_element8(v4, (j + 1) * (1 << es)); in vstrc()
422 const void *v4, uint32_t desc) \
427 vstrc(v1, v2, v3, v4, in, 0, zs, MO_##BITS); \
435 const void *v4, uint32_t desc) \
440 vstrc(v1, v2, v3, v4, in, 1, zs, MO_##BITS); \
448 const void *v4, CPUS390XState *env, \
454 env->cc_op = vstrc(v1, v2, v3, v4, in, 0, zs, MO_##BITS); \
462 const void *v4, CPUS390XState *env, \
[all …]
H A Dvec_int_helper.c181 const void *v4, uint32_t desc) in HELPER()
184 const uint64_t *q2 = v2, *q3 = v3, *q4 = v4; in HELPER()
205 const void *v4, uint32_t d) in HELPER()
208 const uint64_t *q2 = v2, *q3 = v3, *q4 = v4; in HELPER()
229 const void *v4, uint32_t d) in HELPER()
232 const uint64_t *q2 = v2, *q3 = v3, *q4 = v4; in HELPER()
251 const void *v4, uint32_t desc) in HELPER()
254 const uint64_t *q2 = v2, *q3 = v3, *q4 = v4; in HELPER()
264 const void *v4, uint32_t desc) \
271 const uint##BITS##_t c = s390_vec_read_element##BITS(v4, i); \
[all …]
/openbmc/phosphor-host-ipmid/test/message/
H A Dpack.cpp106 bool v4 = true, v3 = false, v2 = false, v1 = true; in TEST() local
107 p.pack(v1, v2, v3, v4, v5, v6, v7, v8); in TEST()
346 uint64_t v4 = 0xccbbaa9988776655ull; in TEST() local
347 p.pack(v1, v2, v3, v4); in TEST()
349 ASSERT_EQ(p.size(), sizeof(v1) + sizeof(v2) + sizeof(v3) + sizeof(v4)); in TEST()
367 uint64_t v4 = 0xccbbaa9988776655ull; in TEST() local
368 auto v = std::make_tuple(v1, v2, v3, v4); in TEST()
371 ASSERT_EQ(p.size(), sizeof(v1) + sizeof(v2) + sizeof(v3) + sizeof(v4)); in TEST()
406 bool v4 = false; // binary 0b0 in TEST() local
409 p.pack(v1, v2, v3, v4, v5); in TEST()
[all …]
H A Dunpack.cpp289 bool v4, v3, v2, v1; in TEST() local
291 ASSERT_EQ(p.unpack(v1, v2, v3, v4, v5, v6, v7, v8), 0); in TEST()
300 ASSERT_EQ(v4, k4); in TEST()
315 bool v4, v3, v2, v1; in TEST() local
317 ASSERT_EQ(p.unpack(v1, v2, v3, v4, v5, v6, v7), 0); in TEST()
326 ASSERT_EQ(v4, k4); in TEST()
340 bool v4, v3, v2, v1; in TEST() local
342 ASSERT_NE(p.unpack(v1, v2, v3, v4, v5, v6, v7, v8, v9), 0); in TEST()
351 ASSERT_EQ(v4, k4); in TEST()
781 uint64_t v4; in TEST() local
[all …]
/openbmc/qemu/tests/tcg/hexagon/
H A Dhvx_histogram_row.S110 { v4.h = vshuff(V4.h)
117 v4.w = vdmpy(v4.h, r10.h):sat
201 { vshuff(v5, v4, r28)
209 v4.w = vadd(v5.w, v4.w)
242 vshuff(v6, v4, r7)
251 v4.w = vadd(v4.w, v6.w)
256 v4.w = vadd(v4.w, v1.w)
257 vmem(r4++#1) = v4.new
/openbmc/phosphor-networkd/src/
H A Dutil.cpp158 return DHCPVal{.v4 = true, .v6 = false}; in systemdParseDHCP()
162 return DHCPVal{.v4 = false, .v6 = true}; in systemdParseDHCP()
166 return DHCPVal{.v4 = *b, .v6 = *b}; in systemdParseDHCP()
214 .value_or(DHCPVal{.v4 = true, .v6 = true}); in getDHCPValue()
220 std::string_view type = (dhcpType == DHCPType::v4) ? "DHCPv4" : "DHCPv6"; in getDHCPProp()
H A Dutil.hpp57 bool v4, v6; member
62 v4, enumerator
/openbmc/openbmc/poky/meta/recipes-kernel/wireless-regdb/
H A Dwireless-regdb_2025.02.20.bb23 # This requires Linux kernel >= v4.15.
24 # For kernel <= v4.14, inherit the kernel_wireless_regdb.bbclass
35 # This is for example used by Linux kernel <= v4.14 and
/openbmc/openbmc/meta-openembedded/meta-networking/classes/
H A Dkernel_wireless_regdb.bbclass1 # Linux kernels before v4.15, allowed to be compiled with static
10 # 2. For Linux kernels up to v4.14, build kernel with CONFIG_EXPERT and
/openbmc/u-boot/doc/device-tree-bindings/mmc/
H A Dmsm_sdhci.txt4 - compatible : "qcom,sdhci-msm-v4"
19 compatible = "qcom,sdhci-msm-v4";
/openbmc/phosphor-logging/test/openpower-pels/
H A Dstream_test.cpp59 uint32_t v4 = 0xCCDDEEFF; in TEST() local
61 stream << v3 << v2 << v4 << v1; in TEST()
74 EXPECT_EQ(v4, e4); in TEST()
/openbmc/phosphor-networkd/src/ibm/hypervisor-network-mgr-src/
H A Dhyp_ethernet_interface.cpp65 value == DHCPConf::v4 || value == DHCPConf::v4v6stateless || in dhcpEnabled()
90 return ipv6AcceptRA() ? DHCPConf::v4v6stateless : DHCPConf::v4; in dhcpEnabled()
/openbmc/openbmc/meta-arm/meta-arm/recipes-security/optee/
H A Doptee-examples_4.4.0.bb3 # v4.4.0
H A Doptee-os_4.4.0.bb7 # v4.4.0
H A Doptee-client_4.4.0.bb3 # v4.4.0
H A Doptee-test_4.4.0.bb3 # v4.4.0
/openbmc/obmc-console/subprojects/
H A Diniparser.wrap3 source_url = https://github.com/ndevilla/iniparser/archive/refs/tags/v4.2.1.zip
/openbmc/openbmc/poky/meta-skeleton/recipes-kernel/linux/
H A Dlinux-yocto-custom.bb46 # example patch addition (for kernel v4.x only):
48 # example feature addition (for kernel v4.x only):
64 # tag: v4.2 64291f7db5bd8150a74ad2036f1037e6a0428df2
/openbmc/webui-vue/src/assets/images/
H A Dlogo-header.svg1v4.714l-1.692.561v-6.1c1.811-1.02 2.956-2.53 3.286-4.592.28-1.75-.154-3.342-1.212-4.774-.192 0-.38…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minio/minio/
H A Dmodules.txt83 # github.com/golang-jwt/jwt/v4 v4.4.1
107 # github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
/openbmc/u-boot/configs/
H A Dgt90h_v4_defconfig22 CONFIG_DEFAULT_DEVICE_TREE="sun8i-a23-gt90h-v4"

1234