/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateFormatTest.java | 238 String sign = "+"; in TestWallyWedel() 240 sign = "-"; in TestWallyWedel() 246 String dstOffset = sign + (hours < 10 ? "0" : "") + hours in TestWallyWedel() 2653 // cover raw digits with no leading sign (bad RFC822) in TestCoverage()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_sample_soa.c | 402 abs_coord_bld.type.sign = FALSE; in lp_build_sample_wrap_linear() 501 * get "wrong" sign due to performing mirror in the middle of the in lp_build_sample_wrap_linear() 565 abs_coord_bld.type.sign = FALSE; in lp_build_sample_wrap_linear() 794 abs_coord_bld.type.sign = FALSE; in lp_build_sample_wrap_nearest() 1868 * lod_fpart values have same sign. in lp_build_sample_mipmap() 1993 * lod_fpart values have same sign. in lp_build_sample_mipmap_both()
|
/third_party/skia/third_party/externals/freetype/src/truetype/ |
H A D | ttinterp.c | 1309 /* will actually preserve the sign bit. The exact behaviour is */ in TT_MulFix14_long_long() 1335 FT_Int32 sign; in TT_MulFix14() local 1339 sign = a ^ b; in TT_MulFix14() 1359 return sign >= 0 ? (FT_Int32)mid : -(FT_Int32)mid; in TT_MulFix14() 4501 /* Only use low 16bits, then sign extend */ in Ins_SPVFS() 4528 /* Only use low 16bits, then sign extend */ in Ins_SFVFS() 5276 /* Native ClearType fonts sign a waiver that turns off all backward */ in Ins_INSTCTRL() 5278 /* it's 1996. They might sign a waiver for just one glyph, though. */ in Ins_INSTCTRL()
|
/third_party/python/Modules/ |
H A D | _pickle.c | 2138 int sign = _PyLong_Sign(obj); in save_long() local 2140 if (sign == 0) { in save_long() 2156 * acts like a sign bit, and it's usually got a sense in save_long() 2159 * its own 256's-complement, so has the right sign bit in save_long() 2180 * needed. This is so iff the MSB is all redundant sign in save_long() 2183 if (sign < 0 && in save_long() 5264 * to extend a BININT's sign bit to the full width. in calc_binint()
|
/third_party/python/Lib/test/test_email/ |
H A D | test_email.py | 1807 sign = '-' 1809 sign = '+' 1810 tzoffset = ' %s%04d' % (sign, tzsecs / 36)
|
/foundation/arkui/napi/native_engine/impl/ark/ |
H A D | ark_native_engine.cpp | 2015 bool sign = DFXJSNApi::BuildJsStackInfoList(vm_, gettid(), jsFrames); in BuildJsStackInfoListWithCustomDepth() local 2016 return sign; in BuildJsStackInfoListWithCustomDepth()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn10/ |
H A D | dcn10_hw_sequencer.c | 2682 fmt.sign = true; in dcn10_set_hdr_multiplier() 3547 fmt.sign = true; in dcn10_set_cursor_sdr_white_level()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | ccapitst.c | 3629 sign(int n) { in sign() function 3659 if(sign(result)!=rel) { in compareNames() 3660 log_err("ucnv_compareNames(\"%s\", \"%s\")=%d, sign!=%d\n", name1, name2, result, rel); in compareNames()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | linearize.c | 1258 int sign = (s->ctype.modifiers & MOD_SIGNED) ? 1 : 0; in get_mtype() local 1275 return sign ? MTYPE_SINT : MTYPE_UINT; in get_mtype()
|
/third_party/openssl/test/ |
H A D | bntest.c | 142 static int sign[8] = { 0, 0, 0, 1, 1, 0, 1, 1 }; in rand_neg() local 144 return sign[(neg++) % 8]; in rand_neg()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fShaderOperatorTests.cpp | 798 DECLARE_UNARY_GENTYPE_FUNCS(sign) 1110 << BuiltinFuncInfo("sign", "sign", GT, Value(GT, -1.5f, 1.5f), notUsed, notUsed, 0.3f, 0.5f, PRECMASK_ALL, FLOAT_GENTYPE_FUNCS(sign) ) in init()
|
/kernel/linux/linux-5.10/scripts/ |
H A D | checkpatch.pl | 3994 my $sign = $1; 4000 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) && 4002 my $decl = trim($sign) . " int "; 4007 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@; 6987 # 0 -> missing sign off 6988 # 1 -> sign off identical
|
/kernel/linux/linux-6.6/scripts/ |
H A D | checkpatch.pl | 4501 my $sign = $1; 4507 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) && 4509 my $decl = trim($sign) . " int "; 4514 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@; 7689 # 0 -> missing sign off 7690 # 1 -> sign off identical
|
/third_party/FatFs/source/ |
H A D | ff.c | 2703 WORD w, sign; in check_fs() local 2709 sign = ld_word(fs->win + BS_55AA); in check_fs() 2713 if (sign == 0xAA55 && !mem_cmp(fs->win + BS_FilSysType32, "FAT32 ", 8)) { in check_fs() 2728 return sign == 0xAA55 ? 2 : 3; /* Not an FAT VBR (valid or invalid BS) */ in check_fs()
|
/third_party/ltp/scripts/ |
H A D | checkpatch.pl | 4349 my $sign = $1; 4355 "Prefer '" . trim($sign) . " int" . rtrim($pointer) . "' to bare use of '$sign" . rtrim($pointer) . "'\n" . $herecurr) && 4357 my $decl = trim($sign) . " int "; 4362 $fixed[$fixlinenr] =~ s@\b$sign\s*\Q$pointer\E\s*$var\b@$decl$var@; 7435 # 0 -> missing sign off 7436 # 1 -> sign off identical
|
/kernel/linux/linux-6.6/lib/ |
H A D | test_bpf.c | 816 static inline s64 value(int msb, int delta, int sign) in value() argument 818 return sign * (1LL << msb) + delta; in value() 847 * Pattern 1: all combinations of power-of-two magnitudes and sign, in __bpf_fill_pattern() 867 * for each power-of-two magnitude and sign, where the magnitude is in __bpf_fill_pattern() 2143 int bit, adj, sign; in bpf_fill_ld_imm64_magn() local 2154 for (sign = -1; sign <= 1; sign += 2) { in bpf_fill_ld_imm64_magn() 2155 s64 imm = sign * ((1LL << bit) + adj); in bpf_fill_ld_imm64_magn() 5083 "ALU64_MOV_K: small negative sign extensio [all...] |
/kernel/linux/linux-6.6/ |
H A D | Makefile | 1822 sign-only=$(if $(filter modules_install,$(MAKECMDGOALS)),,y) 1832 @echo >&2 '*** CONFIG_MODULE_SIG is disabled. You cannot sign modules.'
|
/kernel/linux/linux-5.10/drivers/iio/adc/ |
H A D | stm32-adc.c | 1714 chan->scan_type.sign = 'u'; in stm32_adc_chan_init_one()
|
/kernel/linux/linux-6.6/fs/smb/client/ |
H A D | cifsfs.c | 489 if (ses->sign) in cifs_show_security()
|
/kernel/linux/linux-6.6/fs/ntfs3/ |
H A D | super.c | 1074 rec->rhdr.sign = NTFS_FILE_SIGNATURE; in ntfs_init_from_boot()
|
/kernel/linux/linux-6.6/include/uapi/linux/ |
H A D | v4l2-controls.h | 2713 * @ref_frame_sign_bias: a bitfield specifying whether the sign bias is set for a given 2762 * @sign: motion vector sign probability updates. 2777 __u8 sign[2]; member
|
/kernel/linux/linux-6.6/drivers/iio/light/ |
H A D | vcnl4000.c | 1788 .sign = 'u',
|
/kernel/linux/linux-6.6/drivers/iio/accel/ |
H A D | bmc150-accel-core.c | 1105 .sign = 's', \
|
/kernel/linux/linux-6.6/drivers/iio/addac/ |
H A D | ad74115.c | 1287 .sign = 'u', \
|
/kernel/linux/linux-6.6/drivers/iio/adc/ |
H A D | ad4130.c | 963 .sign = 'u',
|