Home
last modified time | relevance | path

Searched refs:z (Results 101 – 125 of 1017) sorted by relevance

12345678910>>...41

/openbmc/phosphor-webui/app/assets/icons/
H A Dicon-warning.svg2 <path d="M2.5 17L10 4l7.5 13z" fill="#ffb000" opacity=".4"/>
3 <path d="M10 1.4L.3 18.3h19.5L10 1.4zM10 4l7.5 13h-15L10 4z" fill="#ffb000"/>
4 <path d="M9.2 7.8v1.4l.4 3.5h.8l.4-3.5V7.8H9.2z"/>
/openbmc/qemu/target/s390x/tcg/
H A Dcrypto_helper.c27 static uint64_t Ch(uint64_t x, uint64_t y, uint64_t z) in Ch() argument
29 return (x & y) ^ (~x & z); in Ch()
31 static uint64_t Maj(uint64_t x, uint64_t y, uint64_t z) in Maj() argument
33 return (x & y) ^ (x & z) ^ (y & z); in Maj()
85 uint64_t t, z[8], b[8]; in sha512_bda() local
88 memcpy(z, a, sizeof(z)); in sha512_bda()
107 a[i] += z[i]; in sha512_bda()
/openbmc/linux/fs/zonefs/
H A Dtrace.h23 TP_PROTO(struct super_block *sb, struct zonefs_zone *z,
25 TP_ARGS(sb, z, op),
36 z->z_sector >> ZONEFS_SB(sb)->s_zone_sectors_shift;
38 __entry->sector = z->z_sector;
39 __entry->nr_sectors = z->z_size >> SECTOR_SHIFT;
/openbmc/linux/arch/x86/math-emu/
H A Dfpu_system.h107 #define FPU_access_ok(y,z) if ( !access_ok(y,z) ) \ argument
119 #define FPU_code_access_ok(z) argument
124 #define FPU_code_access_ok(z) FPU_access_ok((void __user *)FPU_EIP,z) argument
/openbmc/linux/drivers/s390/char/
H A DKconfig144 prompt "Support for the z/VM recording system services (VM only)"
148 by the z/VM recording system services, eg. from *LOGREC, *ACCOUNT or
154 prompt "Support for the z/VM CP interface"
159 program on z/VM
162 int "Memory in MiB reserved for z/VM CP interface"
173 prompt "API for reading z/VM monitor service records"
176 Character device driver for reading z/VM monitor service records
180 prompt "API for writing z/VM monitor service records"
183 Character device driver for writing z/VM monitor service records
187 prompt "z/VM unit record device driver"
[all …]
/openbmc/linux/Documentation/litmus-tests/rcu/
H A DRCU+sync+free.litmus21 int z = 1;
24 P0(int *x, int *z, int **y)
35 P1(int *x, int *z, int **y)
37 rcu_assign_pointer(*y, z);
/openbmc/linux/crypto/
H A Dmd5.c32 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
33 #define F2(x, y, z) F1(z, x, y) argument
34 #define F3(x, y, z) (x ^ y ^ z) argument
35 #define F4(x, y, z) (y ^ (x | ~z)) argument
37 #define MD5STEP(f, w, x, y, z, in, s) \ argument
38 (w += f(x, y, z) + in, w = (w<<s | w>>(32-s)) + x)
H A Decc.c1159 u64 z[ECC_MAX_DIGITS]; in xycz_initial_double() local
1166 z[0] = 1; in xycz_initial_double()
1318 vli_mod_mult_fast(z, z, ry[1 - nb], curve); in ecc_point_mult()
1320 vli_mod_mult_fast(z, z, point->x, curve); in ecc_point_mult()
1323 vli_mod_inv(z, z, curve_prime, point->ndigits); in ecc_point_mult()
1326 vli_mod_mult_fast(z, z, point->y, curve); in ecc_point_mult()
1328 vli_mod_mult_fast(z, z, rx[1 - nb], curve); in ecc_point_mult()
1355 vli_mod_inv(z, z, curve->p, ndigits); in ecc_point_add()
1394 z[0] = 1; in ecc_point_mult_shamir()
1411 vli_mod_mult_fast(z, z, tz, curve); in ecc_point_mult_shamir()
[all …]
H A Dstreebog_generic.c853 struct streebog_uint512 *z) in streebog_xor() argument
855 z->qword[0] = x->qword[0] ^ y->qword[0]; in streebog_xor()
856 z->qword[1] = x->qword[1] ^ y->qword[1]; in streebog_xor()
857 z->qword[2] = x->qword[2] ^ y->qword[2]; in streebog_xor()
858 z->qword[3] = x->qword[3] ^ y->qword[3]; in streebog_xor()
859 z->qword[4] = x->qword[4] ^ y->qword[4]; in streebog_xor()
860 z->qword[5] = x->qword[5] ^ y->qword[5]; in streebog_xor()
861 z->qword[6] = x->qword[6] ^ y->qword[6]; in streebog_xor()
862 z->qword[7] = x->qword[7] ^ y->qword[7]; in streebog_xor()
/openbmc/u-boot/lib/
H A Dmd5.c168 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
169 #define F2(x, y, z) F1(z, x, y) argument
170 #define F3(x, y, z) (x ^ y ^ z) argument
171 #define F4(x, y, z) (y ^ (x | ~z)) argument
174 #define MD5STEP(f, w, x, y, z, data, s) \ argument
175 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
/openbmc/u-boot/board/siemens/common/
H A Dfactoryset.c96 int z; in get_factory_record_val() local
107 for (z = pos; fact_get_char(z) != end; z++) { in get_factory_record_val()
108 if (fact_get_char(z) == '<') { in get_factory_record_val()
110 endpos = z; in get_factory_record_val()
118 if (fact_get_char(z) == '>') in get_factory_record_val()
/openbmc/qemu/tests/qemu-iotests/
H A D271.out25 write -q -z 2k 2k
27 write -q -z 0 64k
31 write -q -z -u 0 32k
33 write -q -z -u 0 64k
67 write -q -z 2k 2k
69 write -q -z 0 64k
73 write -q -z -u 0 32k
75 write -q -z -u 0 64k
98 write -q -z 156k 2k
113 write -q -z 0 192k
[all …]
/openbmc/u-boot/arch/arm/mach-keystone/include/mach/
H A Dpsc_defs.h36 static inline u32 boot_read_bitfield(u32 z, u32 x, u32 y) in boot_read_bitfield() argument
38 u32 val = z & _boot_bit_mask(x, y); in boot_read_bitfield()
42 static inline u32 boot_set_bitfield(u32 z, u32 f, u32 x, u32 y) in boot_set_bitfield() argument
46 return (z & ~mask) | ((f << y) & mask); in boot_set_bitfield()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/
H A Drdist-6.1.5-svr4.patch9 if [ -z "${OS}" -a ! -z "${uname}" ]; then
10 case "`$uname -a | tr '[A-Z]' '[a-z]'`" in
/openbmc/webui-vue/tests/unit/Global/__snapshots__/
H A DStatusIcon.spec.js.snap18 d="M10,1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S15,1,10,1z M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z"
21 d="M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z"
H A DInfoTooltip.spec.js.snap20 …5 7.5 7.5 11 6 11 6 12 10 12 10 11zM8 3.5c-.4 0-.8.3-.8.8S7.6 5 8 5c.4 0 .8-.3.8-.8S8.4 3.5 8 3.5z"
23 …-3.9,0-7-3.1-7-7s3.1-7,7-7s7,3.1,7,7S11.9,15,8,15z M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2…
/openbmc/u-boot/fs/zfs/
H A Dzfs_sha256.c49 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
50 #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y)))) argument
/openbmc/openbmc/meta-security/recipes-ids/samhain/files/
H A Dsamhain-avoid-searching-host-for-postgresql.patch46 - if test -z "$PGSQL_DIR"; then
54 - if test -z "$PGSQL_DIR"; then
63 - if test -z "$PGSQL_DIR"; then
81 - if test -z "$PGSQL_LIB_DIR"; then
95 - if test -z "$PGSQL_LIB_DIR"; then
105 + if test -z "${PGSQL_LIB_DIR}" ; then
107 + elif test -z "${PGSQL_INC_DIR}" ; then
/openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/
H A D0010-Workaround-multiple-definition-of-symbol-errors.patch29 + $(LD) -shared $(LDFLAGS) -z muldefs -soname $(patsubst %.elf,%.c32,$(@F)) \
42 + $(LD) $(LDFLAGS) -z muldefs -soname $(SONAME) -o $@ $^ $(LIBS)
55 + $(LD) -shared $(LDFLAGS) -z muldefs -soname $(patsubst %.elf,%.c32,$(@F)) -o $@ $^
68 + $(LD) $(LDFLAGS) -z muldefs -o $@ $^
81 + $(LD) $(LDFLAGS) -z muldefs -pie -Bsymbolic \
94 +LDFLAGS = -T $(SRC)/dosexe.ld -z muldefs
107 + $(LD) $(LDFLAGS) -z muldefs --strip-debug -o $@ $^ -lgnuefi -lefi
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/xmlsec1/xmlsec1/
H A Dfix-ltmain.sh.patch22 - [\\/]* | [A-Za-z]:[\\/]*) ;;
23 + =* | [\\/]* | [A-Za-z]:[\\/]*) ;;
26 test -z "$absdir" && \
/openbmc/qemu/host/include/i386/host/crypto/
H A Daes-round.h31 __m128i z = _mm_setzero_si128(); in aesenc_MC_accel() local
35 t = _mm_aesdeclast_si128(t, z); in aesenc_MC_accel()
36 t = _mm_aesenc_si128(t, z); in aesenc_MC_accel()
39 t = _mm_aesdeclast_si128(t, z); in aesenc_MC_accel()
40 t = _mm_aesenc_si128(t, z); in aesenc_MC_accel()
/openbmc/webui-vue/tests/unit/__snapshots__/
H A DAppNavigation.spec.js.snap88 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
190 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
274 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
415 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
520 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
634 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
767 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
869 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
953 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
1094 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
[all …]
/openbmc/qemu/tests/tcg/s390x/
H A Dtrap.c76 uint64_t z = 0x0ull; in main() local
90 : [z] "m" (z), [lz] "m" (lz) in main()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/p7zip/files/
H A DCVE-2016-9296.patch14 Index: p7zip_16.02/CPP/7zip/Archive/7z/7zIn.cpp
16 --- p7zip_16.02.orig/CPP/7zip/Archive/7z/7zIn.cpp
17 +++ p7zip_16.02/CPP/7zip/Archive/7z/7zIn.cpp
/openbmc/qemu/host/include/generic/host/
H A Datomic128-ldst.h54 Int128 z = int128_make64(0); in atomic16_read_rw() local
55 return atomic16_cmpxchg(ptr, z, z); in atomic16_read_rw()

12345678910>>...41