Home
last modified time | relevance | path

Searched refs:sign (Results 51 – 75 of 768) sorted by relevance

12345678910>>...31

/openbmc/qemu/scripts/
H A Ddecodetree.py276 self.sign = sign
282 if self.sign:
297 return self.sign == other.sign and self.mask == other.mask
308 self.sign = subs[0].sign
371 self.sign = base.sign
397 self.sign = 0
420 self.sign = sign
902 sign = True
906 sign = False
1128 sign = False
[all …]
/openbmc/linux/crypto/
H A Drsa.c99 int sign; in rsa_enc() local
118 ret = mpi_write_to_sgl(c, req->dst, req->dst_len, &sign); in rsa_enc()
122 if (sign < 0) in rsa_enc()
138 int sign; in rsa_dec() local
157 ret = mpi_write_to_sgl(m, req->dst, req->dst_len, &sign); in rsa_dec()
161 if (sign < 0) in rsa_dec()
/openbmc/linux/arch/m68k/fpsp040/
H A Dscale.S53 smi L_SCR1(%a6) |use L_SCR1 to hold sign
54 andil #0x7fff,%d1 |strip sign
56 andiw #0x7fff,%d0 |clr sign bit
90 tstw ETEMP(%a6) |check src sign
193 tstb L_SCR1(%a6) |test for sign
195 orw #0x8000,FPTEMP_EX(%a6) |set sign bit
215 tstb L_SCR1(%a6) |check sign
220 tstb L_SCR1(%a6) |check sign
H A Dbindec.S22 | A1. Set RM and size ext; Set SIGMA = sign of input.
56 | sign of ISCALE, used in A9. Fp1 contains
106 | A16. Write sign bits to final string.
187 andiw #0x7fff,%d0 |strip sign of normalized exp
203 andiw #0x7fff,%d0 |strip sign of normalized exp
306 tstl %d7 |branch on sign of k
315 tstl %d4 |LEN check: branch on sign of LEN
378 tstl %d7 |test sign of k
390 tstl %d0 |test sign of ISCALE
405 tstl L_SCR2(%a6) |test sign of original x
[all …]
/openbmc/linux/kernel/trace/
H A Dtrace_probe.h186 #define __ASSIGN_FETCH_TYPE(_name, ptype, ftype, _size, sign, str, _fmttype) \ argument
189 .is_signed = (bool)sign, \
197 #define _ASSIGN_FETCH_TYPE(_name, ptype, ftype, _size, sign, _fmttype) \ argument
198 __ASSIGN_FETCH_TYPE(_name, ptype, ftype, _size, sign, 0, #_fmttype)
199 #define ASSIGN_FETCH_TYPE(ptype, ftype, sign) \ argument
200 _ASSIGN_FETCH_TYPE(#ptype, ptype, ftype, sizeof(ftype), sign, ptype)
203 #define ASSIGN_FETCH_TYPE_ALIAS(ptype, atype, ftype, sign) \ argument
204 _ASSIGN_FETCH_TYPE(#ptype, ptype, ftype, sizeof(ftype), sign, atype)
/openbmc/linux/arch/x86/math-emu/
H A Dreg_ld_str.c47 if (sign) in normalize_no_excep()
213 int sign; in FPU_load_int64() local
228 sign = SIGN_Positive; in FPU_load_int64()
231 sign = SIGN_Negative; in FPU_load_int64()
236 return normalize_no_excep(st0_ptr, 63, sign); in FPU_load_int64()
304 int sign; in FPU_load_bcd() local
320 FPU_get_user(sign, s + 9); in FPU_load_bcd()
321 sign = sign & 0x80 ? SIGN_Negative : SIGN_Positive; in FPU_load_bcd()
326 addexponent(st0_ptr, sign); /* Set the sign. */ in FPU_load_bcd()
330 return normalize_no_excep(st0_ptr, 63, sign); in FPU_load_bcd()
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/
H A Dfont-awesome.min.css33sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{conte…
/openbmc/openbmc/meta-aspeed/recipes-kernel/linux/linux-aspeed/
H A Drsa_oem_fitimage_key.key2 # 'imprint' key), used to sign development images of the OpenBMC
3 # Kernel fitImage. This key SHOULD NOT be used to sign
7 # variables (see uboot-sign.bbclass for more info)
/openbmc/linux/drivers/iio/common/hid-sensors/
H A Dhid-sensor-attributes.c112 int sign = 1; in convert_from_vtf_format() local
116 sign = -1; in convert_from_vtf_format()
120 *val1 = sign * value * int_pow(10, exp); in convert_from_vtf_format()
125 *val1 = sign * (*val1); in convert_from_vtf_format()
127 *val2 = sign * (*val2); in convert_from_vtf_format()
135 int sign = 1; in convert_to_vtf_format() local
138 sign = -1; in convert_to_vtf_format()
148 if (sign < 0) in convert_to_vtf_format()
/openbmc/u-boot/arch/x86/include/asm/arch-queensbay/fsp/
H A Dfsp_vpd.h13 u64 sign; /* Offset 0x0000 */ member
39 u64 sign; /* Offset 0x0000 */ member
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/xmlsec1/xmlsec1/
H A Drun-ptest15 check_return sign-tmpl
21 check_return sign-dynamic-templ
27 check_return sign-x509
/openbmc/linux/arch/arm64/include/asm/
H A Dcpufeature.h61 bool sign; /* Value is signed ? */ member
366 bool sign; member
568 cpuid_feature_extract_field_width(u64 features, int field, int width, bool sign) in cpuid_feature_extract_field_width() argument
572 return (sign) ? in cpuid_feature_extract_field_width()
578 cpuid_feature_extract_field(u64 features, int field, bool sign) in cpuid_feature_extract_field() argument
580 return cpuid_feature_extract_field_width(features, field, 4, sign); in cpuid_feature_extract_field()
585 return (s64)cpuid_feature_extract_field_width(val, ftrp->shift, ftrp->width, ftrp->sign); in arm64_ftr_value()
/openbmc/linux/include/linux/
H A Dmpi.h33 int sign; /* indicates a negative number */ member
43 #define mpi_has_sign(a) ((a)->sign)
97 void *mpi_get_buffer(MPI a, unsigned *nbytes, int *sign);
99 int *sign);
101 int *sign);
/openbmc/linux/drivers/firmware/
H A Discsi_ibft_find.c38 char *sign; member
81 if (memcmp(virt + (pos - virt_pos), ibft_signs[i].sign, in reserve_ibft_region()
/openbmc/openbmc/meta-aspeed/recipes-bsp/u-boot/files/
H A Drsa_oem_dss_key.pem2 # 'imprint' key), used to sign development images of the ASPEED
4 # sign production images.
7 # See meta-aspeed/classes/socsec-sign.bbclass for more info.
/openbmc/phosphor-psu-code-mgmt/tools/
H A Dgenerate-psu-tar17 --sign <path> Sign the image. The optional path argument specifies
81 --sign)
180 openssl dgst -sha256 -sign private_key -out "${file}.sig" "$file"
/openbmc/linux/arch/ia64/kernel/
H A Dftrace.c36 u64 sign:1; member
151 call_insn->sign = tmp_call->sign; in ftrace_make_nop_check()
/openbmc/linux/drivers/iio/common/ssp_sensors/
H A Dssp_iio_sensor.h13 .sign = 's',\
27 .sign = 's', \
/openbmc/phosphor-bmc-code-mgmt/
H A Dgen-bios-tar16 -s, --sign <path> Sign the image. The optional path argument specifies
67 -s|--sign)
175 openssl dgst -sha256 -sign "${private_key_path}" -out "${file}.sig" "$file"
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_ptp.c221 c.u.ts.sign = (ppb < 0) ? 1 : 0; in cxgb4_ptp_adjfine()
253 c.u.ts.sign = (delta < 0) ? 1 : 0; in cxgb4_ptp_fineadjtime()
278 s64 sign = 1; in cxgb4_ptp_adjtime() local
282 sign = -1; in cxgb4_ptp_adjtime()
284 if (delta * sign > PTP_CLOCK_MAX_ADJTIME) { in cxgb4_ptp_adjtime()
292 c.u.ts.sign = (delta < 0) ? 1 : 0; in cxgb4_ptp_adjtime()
/openbmc/linux/drivers/hid/amd-sfh-hid/sfh1_1/
H A Damd_sfh_desc.c137 int fraction, shift, mantissa, sign, exp, zeropre; in float_to_int() local
140 sign = (flt32_val & BIT(31)) ? -1 : 1; in float_to_int()
156 return zeropre >= 50 ? sign : 0; in float_to_int()
173 return (((fraction * 100) >> shift) >= 50) ? sign * (flt32_val + 1) : sign * flt32_val; in float_to_int()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-extended/dlm/dlm/
H A D0001-Remove-fcf-protection-full.patch22 -Wno-sign-compare -Wno-unused-parameter -Wp,-D_FORTIFY_SOURCE=2 \
33 -Wno-sign-compare -Wno-unused-parameter -Wp,-D_FORTIFY_SOURCE=2 \
44 -Wno-sign-compare -Wno-unused-parameter -Wp,-D_FORTIFY_SOURCE=2 \
/openbmc/qemu/target/hexagon/
H A Dgenptr.h56 TCGv gen_get_byte(TCGv result, int N, TCGv src, bool sign);
57 TCGv gen_get_byte_i64(TCGv result, int N, TCGv_i64 src, bool sign);
58 TCGv gen_get_half(TCGv result, int N, TCGv src, bool sign);
/openbmc/bmcweb/test/http/
H A Dmutual_tls.cpp51 void sign() in sign() function in __anon1670364a0111::OSSLX509
116 x509.sign(); in TEST()
148 x509.sign(); in TEST()
/openbmc/openbmc/poky/meta/recipes-bsp/gnu-efi/gnu-efi/
H A Dno-werror.patch15 -CFLAGS += $(ARCH3264) -g -O2 -Wall -Wextra -Wno-pointer-sign -Werror \
16 +CFLAGS += $(ARCH3264) -g -O2 -Wall -Wextra -Wno-pointer-sign \

12345678910>>...31