| /linux/arch/powerpc/math-emu/ |
| H A D | math.c | 153 #define ABC 4 macro 275 case FMSUBS: func = fmsubs; type = ABC; break; in do_mathemu() 276 case FMADDS: func = fmadds; type = ABC; break; in do_mathemu() 277 case FNMSUBS: func = fnmsubs; type = ABC; break; in do_mathemu() 278 case FNMADDS: func = fnmadds; type = ABC; break; in do_mathemu() 292 case FSEL: func = fsel; type = ABC; break; in do_mathemu() 295 case FMSUB: func = fmsub; type = ABC; break; in do_mathemu() 296 case FMADD: func = fmadd; type = ABC; break; in do_mathemu() 297 case FNMSUB: func = fnmsub; type = ABC; break; in do_mathemu() 298 case FNMADD: func = fnmadd; type = ABC; break; in do_mathemu() [all …]
|
| /linux/scripts/ |
| H A D | container | 7 import abc 18 class ContainerRuntime(abc.ABC): 35 @abc.abstractmethod 39 @abc.abstractmethod
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | custom_sec_handlers.c | 27 ASSERT_FALSE(true, "unexpected preload for abc"); in custom_prepare_load_prog() 81 abc1_id = libbpf_register_prog_handler("abc", BPF_PROG_TYPE_RAW_TRACEPOINT, 0, &abc1_opts); in register_sec_handlers() 82 abc2_id = libbpf_register_prog_handler("abc/", BPF_PROG_TYPE_RAW_TRACEPOINT, 0, &abc2_opts); in register_sec_handlers() 161 /* SEC("abc") is set to not auto-loaded */ in test_custom_sec_handlers()
|
| H A D | core_extern.c | 99 { .name = "int (bad)", .fails = 1, .cfg = CFG"CONFIG_INT=abc" }, 100 { .name = "int (str)", .fails = 1, .cfg = CFG"CONFIG_INT=\"abc\"" }, 102 { .name = "int (mixed)", .fails = 1, .cfg = CFG"CONFIG_INT=123abc" },
|
| /linux/sound/soc/codecs/ |
| H A D | wm_adsp_fw_find_test.c | 989 .part = "cs1234", .dsp_name = "dsp1", .system_name = "abc", 991 .expect_wmfw = "cirrus/cs1234-dsp1-mbc-vss-abc-left.wmfw", 993 "cirrus/cs1234-dsp1-mbc-vss-abc-left.wmfw " 994 "cirrus/cs1234-dsp1-mbc-vss-abc-left.bin", 997 .part = "cs1234", .dsp_name = "dsp1", .system_name = "abc", 999 .expect_wmfw = "cirrus/cs1234-dsp1-mbc-vss-abc-left-amp.wmfw", 1001 "cirrus/cs1234-dsp1-mbc-vss-abc-left-amp.wmfw " 1002 "cirrus/cs1234-dsp1-mbc-vss-abc-left-amp.bin", 1005 .part = "cs1234", .dsp_name = "dsp1", .system_name = "abc", 1007 .expect_wmfw = "cirrus/cs1234-dsp1-mbc-vss-abc-left-amp.wmfw", [all …]
|
| /linux/Documentation/admin-guide/media/ |
| H A D | dvb_intro.rst | 111 ABC 226.500 Mhz 168 [ABC HDTV] 183 [ABC TV Melbourne] 198 [ABC TV 2] 213 [ABC TV 3] 228 [ABC TV 4] 243 [ABC DiG Radio]
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | test_custom_sec_handlers.c | 17 SEC("abc") 24 SEC("abc/whatever")
|
| /linux/tools/tracing/rtla/tests/ |
| H A D | osnoise.t | 94 "osnoise top -S 2 --on-threshold shell,command='echo -n abc; false' --on-threshold shell,command='echo -n defgh'" 2 "^abc" "defgh"
|
| H A D | timerlat.t | 132 "timerlat top -T 2 --on-threshold shell,command='echo -n abc; false' --on-threshold shell,command='echo -n defgh'" 2 "^abc" "defgh"
|
| /linux/drivers/iio/chemical/ |
| H A D | mhz19b.c | 36 /* ABC logic in MHZ19B means auto calibration. */ 159 * echo 0 > calibration_auto_enable : ABC logic off 160 * echo 1 > calibration_auto_enable : ABC logic on
|
| /linux/tools/testing/selftests/net/ |
| H A D | nat6to4.sh | 15 …567890123456789012345678901234567890123456789012345678901234567890123456789abc | socat - UDP4-DATA…
|
| /linux/tools/testing/vma/tests/ |
| H A D | merge.c | 284 * 0123456789abc in __test_merge_new() 312 * 0123456789abc in __test_merge_new() 325 * 0123456789abc in __test_merge_new() 346 * 0123456789abc in __test_merge_new() 366 * 0123456789abc in __test_merge_new() 388 * 0123456789abc in __test_merge_new() 409 * 0123456789abc in __test_merge_new() 430 * 0123456789abc in __test_merge_new() 450 * 0123456789abc in __test_merge_new()
|
| /linux/drivers/mfd/ |
| H A D | intel-lpss-acpi.c | 164 { "80860ABC", (kernel_ulong_t)&bxt_info }, 168 { "80865ABC", (kernel_ulong_t)&bxt_info },
|
| /linux/lib/tests/ |
| H A D | string_kunit.c | 275 { "abba", "abc", "ABBA", 4, 4 }, in string_test_strspn() 277 { "", "abc", "abc", 0, 0}, in string_test_strspn() 527 strscpy_check(test, "abc", 3, -E2BIG, 2, 1, 0); in string_test_strscpy() 533 strscpy_check(test, "abc", 4, 3, 3, 1, 0); in string_test_strscpy() 695 KUNIT_EXPECT_STREQ(test, dest, "abc"); in string_test_memtostr() 703 KUNIT_EXPECT_STREQ(test, dest, "abc"); in string_test_memtostr()
|
| /linux/Documentation/usb/ |
| H A D | misc_usbsevseg.rst | 42 echo "123ABC" > /sys/bus/usb/.../text (ascii)
|
| /linux/tools/perf/python/ |
| H A D | ilist.py | 5 from abc import ABC, abstractmethod 26 class TreeValue(ABC):
|
| /linux/arch/mips/include/asm/sn/sn0/ |
| H A D | hubmd.h | 304 #define MD_PDIR_ECC_SHFT 0 /* ABC low or high */ 306 #define MD_PDIR_PRIO_SHFT 8 /* ABC low */ 308 #define MD_PDIR_AX_SHFT 7 /* ABC low */ 311 #define MD_PDIR_FINE_SHFT 12 /* ABC low */
|
| /linux/tools/testing/selftests/ftrace/test.d/00basic/ |
| H A D | trace_marker_raw.tc | 100 if echo -n abc > ./trace_marker_raw ; then
|
| /linux/tools/testing/selftests/drivers/net/bonding/ |
| H A D | lag_lib.sh | 13 local addr6="fe80::78:9abc/64"
|
| /linux/arch/arm/boot/dts/aspeed/ |
| H A D | aspeed-bmc-tyan-s7106.dts | 328 * - CPU #0 channels ABC VDDQ @ 0x80 330 * - CPU #1 channels ABC VDDQ @ 0x82
|
| /linux/tools/testing/kunit/ |
| H A D | kunit_kernel.py | 9 import importlib.abc 230 assert isinstance(spec.loader, importlib.abc.Loader)
|
| /linux/security/ipe/ |
| H A D | policy_tests.c | 112 "op=EXECUTE dmverity_signature=abc action=ALLOW",
|
| /linux/drivers/net/wireless/intel/iwlwifi/dvm/ |
| H A D | commands.h | 2794 * (beacon_energy_[abc] & 0x0FF00) >> 8 (unsigned, higher value is lower level) 2798 * (beacon_silence_rssi_[abc] & 0x0FF00) >> 8 (unsigned, units in dB) 2842 * (beacon_silence_rssi_[abc] & 0x0FF00), units in dB, across the 2847 * by (beacon_energy_[abc] & 0x0FF00) >> 8, across the 3 receivers, 3032 * beacon_rssi_[abc] & 0x0FF (unsigned, units in dB) 3051 * beacon_silence_rssi_[abc] & 0x0FF (unsigned, units in dB) 3060 * For use in diff_gain_[abc] fields of struct iwl_calibration_cmd, the 3065 * diff_gain_[abc] bit fields:
|
| /linux/drivers/media/usb/gspca/ |
| H A D | Kconfig | 371 SPCA504(abc) SPCA533 SPCA536 chips.
|
| /linux/tools/testing/selftests/tc-testing/tc-tests/infra/ |
| H A D | actions.json | 371 "id": "4abc",
|