Home
last modified time | relevance | path

Searched +full:0 +full:x12345678 (Results 1 – 25 of 83) sorted by relevance

1234

/kernel/linux/linux-5.10/tools/perf/arch/x86/tests/
Dinsn-x86-dat-src.c32 asm volatile("cmovno 0x12345678(%rax),%rcx"); in main()
33 asm volatile("cmovno 0x12345678(%rax),%cx"); in main()
36 asm volatile("cmove 0x12345678(%rax),%rcx"); in main()
37 asm volatile("cmove 0x12345678(%rax),%cx"); in main()
39 asm volatile("seto 0x12345678(%rax)"); in main()
40 asm volatile("setno 0x12345678(%rax)"); in main()
41 asm volatile("setb 0x12345678(%rax)"); in main()
42 asm volatile("setc 0x12345678(%rax)"); in main()
43 asm volatile("setnae 0x12345678(%rax)"); in main()
44 asm volatile("setae 0x12345678(%rax)"); in main()
[all …]
Dinsn-x86-dat-64.c8 {{0x0f, 0x31, }, 2, 0, "", "",
9 "0f 31 \trdtsc ",},
10 {{0xc4, 0xe2, 0x7d, 0x13, 0xeb, }, 5, 0, "", "",
12 {{0x48, 0x0f, 0x41, 0xd8, }, 4, 0, "", "",
13 "48 0f 41 d8 \tcmovno %rax,%rbx",},
14 {{0x48, 0x0f, 0x41, 0x88, 0x78, 0x56, 0x34, 0x12, }, 8, 0, "", "",
15 "48 0f 41 88 78 56 34 12 \tcmovno 0x12345678(%rax),%rcx",},
16 {{0x66, 0x0f, 0x41, 0x88, 0x78, 0x56, 0x34, 0x12, }, 8, 0, "", "",
17 "66 0f 41 88 78 56 34 12 \tcmovno 0x12345678(%rax),%cx",},
18 {{0x48, 0x0f, 0x44, 0xd8, }, 4, 0, "", "",
[all …]
Dinsn-x86-dat-32.c8 {{0x0f, 0x31, }, 2, 0, "", "",
9 "0f 31 \trdtsc ",},
10 {{0xc4, 0xe2, 0x7d, 0x13, 0xeb, }, 5, 0, "", "",
12 {{0x62, 0x81, 0x78, 0x56, 0x34, 0x12, }, 6, 0, "", "",
13 "62 81 78 56 34 12 \tbound %eax,0x12345678(%ecx)",},
14 {{0x62, 0x88, 0x78, 0x56, 0x34, 0x12, }, 6, 0, "", "",
15 "62 88 78 56 34 12 \tbound %ecx,0x12345678(%eax)",},
16 {{0x62, 0x90, 0x78, 0x56, 0x34, 0x12, }, 6, 0, "", "",
17 "62 90 78 56 34 12 \tbound %edx,0x12345678(%eax)",},
18 {{0x62, 0x98, 0x78, 0x56, 0x34, 0x12, }, 6, 0, "", "",
[all …]
/kernel/liteos_m/components/net/test/
Dnet_socket_test_005.c41 uint32_t hl = ntohl(0x12345678); in ByteOrderTest()
42 ICUNIT_ASSERT_EQUAL(hl, 0x78563412, 1); in ByteOrderTest()
44 uint32_t nl = htonl(0x12345678); in ByteOrderTest()
45 ICUNIT_ASSERT_EQUAL(nl, 0x78563412, 2); in ByteOrderTest()
47 uint16_t hs = ntohs(0x1234); in ByteOrderTest()
48 ICUNIT_ASSERT_EQUAL(hs, 0x3412, 3); in ByteOrderTest()
50 uint16_t ns = htons(0x1234); in ByteOrderTest()
51 ICUNIT_ASSERT_EQUAL(ns, 0x3412, 4); in ByteOrderTest()
54 uint32_t hl = ntohl(0x12345678); in ByteOrderTest()
55 ICUNIT_ASSERT_EQUAL(hl, 0x12345678, 5); in ByteOrderTest()
[all …]
/kernel/liteos_a/testsuites/unittest/net/socket/smoke/
Dnet_socket_test_005.cpp39 uint32_t hl = ntohl(0x12345678); in ByteOrderTest()
40 ICUNIT_ASSERT_EQUAL(hl, 0x78563412, hl); in ByteOrderTest()
42 uint32_t nl = htonl(0x12345678); in ByteOrderTest()
43 ICUNIT_ASSERT_EQUAL(nl, 0x78563412, nl); in ByteOrderTest()
45 uint16_t hs = ntohs(0x1234); in ByteOrderTest()
46 ICUNIT_ASSERT_EQUAL(hs, 0x3412, hs); in ByteOrderTest()
48 uint16_t ns = htons(0x1234); in ByteOrderTest()
49 ICUNIT_ASSERT_EQUAL(ns, 0x3412, ns); in ByteOrderTest()
51 uint32_t hl = ntohl(0x12345678); in ByteOrderTest()
52 ICUNIT_ASSERT_EQUAL(hl, 0x12345678, hl); in ByteOrderTest()
[all …]
/kernel/linux/linux-5.10/drivers/misc/lkdtm/
Dheap.c26 data[1024 / sizeof(u32)] = 0x12345678; in lkdtm_OVERWRITE_ALLOCATION()
48 base[offset] = 0x0abcdef0; in lkdtm_WRITE_AFTER_FREE()
81 *val = 0x12345678; in lkdtm_READ_AFTER_FREE()
108 memset((void *)p, 0x3, PAGE_SIZE); in lkdtm_WRITE_BUDDY_AFTER_FREE()
112 memset((void *)p, 0x78, PAGE_SIZE); in lkdtm_WRITE_BUDDY_AFTER_FREE()
139 *val = 0x12345678; in lkdtm_READ_BUDDY_AFTER_FREE()
140 base[0] = *val; in lkdtm_READ_BUDDY_AFTER_FREE()
141 pr_info("Value in memory before free: %x\n", base[0]); in lkdtm_READ_BUDDY_AFTER_FREE()
144 saw = base[0]; in lkdtm_READ_BUDDY_AFTER_FREE()
166 *val = 0x12345678; in lkdtm_SLAB_FREE_DOUBLE()
[all …]
/kernel/linux/linux-5.10/arch/x86/kernel/acpi/
Dsleep.c69 header->pmode_behavior = 0; in x86_acpi_suspend_lowlevel()
92 if (__this_cpu_read(cpu_info.cpuid_level) >= 0) { in x86_acpi_suspend_lowlevel()
105 header->real_magic = 0x12345678; in x86_acpi_suspend_lowlevel()
110 saved_magic = 0x12345678; in x86_acpi_suspend_lowlevel()
119 saved_magic = 0x123456789abcdef0L; in x86_acpi_suspend_lowlevel()
129 return 0; in x86_acpi_suspend_lowlevel()
134 while ((str != NULL) && (*str != '\0')) { in acpi_sleep_setup()
135 if (strncmp(str, "s3_bios", 7) == 0) in acpi_sleep_setup()
137 if (strncmp(str, "s3_mode", 7) == 0) in acpi_sleep_setup()
139 if (strncmp(str, "s3_beep", 7) == 0) in acpi_sleep_setup()
[all …]
Dwakeup_32.S35 cmpl $0x12345678, %eax
94 SYM_DATA(saved_magic, .long 0)
95 saved_eip: .long 0
98 saved_idt: .long 0,0
99 saved_ldt: .long 0
100 saved_tss: .long 0
/kernel/linux/linux-5.10/samples/bpf/
Dtrace_output_kern.c23 data.cookie = 0x12345678; in SYSCALL()
25 bpf_perf_event_output(ctx, &my_map, 0, &data, sizeof(data)); in SYSCALL()
27 return 0; in SYSCALL()
Dtrace_output_user.c29 if (e->cookie != 0x12345678) { in print_bpf_output()
51 int map_fd, ret = 0; in main()
55 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]); in main()
59 return 0; in main()
69 if (map_fd < 0) { in main()
99 while ((ret = perf_buffer__poll(pb, 1000)) >= 0 && cnt < MAX_CNT) { in main()
101 kill(0, SIGINT); in main()
/kernel/liteos_m/arch/risc-v/nuclei/gcc/nmsis/Core/Include/
Dcore_compatiable.h92 * \param [in] sat Bit position to saturate to (0..31)
104 } else if (val < 0) {
105 return 0U;
116 * For example, 0x12345678 becomes 0x78563412.
124 result = ((value & 0xff000000) >> 24) in __REV()
125 | ((value & 0x00ff0000) >> 8 ) in __REV()
126 | ((value & 0x0000ff00) << 8 ) in __REV()
127 | ((value & 0x000000ff) << 24); in __REV()
134 * For example, 0x12345678 becomes 0x34127856.
141 result = ((value & 0xff000000) >> 8) in __REV16()
[all …]
/kernel/linux/linux-5.10/Documentation/sound/hd-audio/
Dnotes.rst74 0 is the default value for all other
104 last cmd=0x12345678
106 last cmd=0x12345678
128 In such a case, turn the bit 8 (0x100) of ``probe_mask`` option on.
130 unconditionally. For example, ``probe_mask=0x103`` will force to probe
131 the codec slots 0 and 1 no matter what the hardware reports.
144 in the recent kernel, try to pass ``enable_msi=0`` option to disable
252 chance via SET_EAPD_BTL verb (0x70c). On others, GPIO pin (mostly
259 triggered. Issuing GET_PIN_SENSE verb (0xf09) may result in the
278 should be set to exactly 50%, corresponding to 0dB -- neither extra
[all …]
/kernel/linux/linux-5.10/arch/x86/realmode/rm/
Dwakemain.c16 enable = 0x00; /* Turn off speaker */ in beep()
20 outb(0xb6, 0x43); /* Ctr 2, squarewave, load, binary */ in beep()
22 outb(div, 0x42); /* LSB of counter */ in beep()
24 outb(div >> 8, 0x42); /* MSB of counter */ in beep()
27 enable = 0x03; /* Turn on speaker */ in beep()
29 inb(0x61); /* Dummy read of System Control Port B */ in beep()
31 outb(enable, 0x61); /* Enable timer 2 output to speaker */ in beep()
49 beep(0); in send_morse()
55 beep(0); in send_morse()
68 if (wakeup_header.real_magic != 0x12345678) in main()
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/quantenna/qtnfmac/pcie/
Dtopaz_pcie_ipc.h12 #define QTN_BDA_PCIE_INIT 0x01
13 #define QTN_BDA_PCIE_RDY 0x02
14 #define QTN_BDA_FW_LOAD_RDY 0x03
15 #define QTN_BDA_FW_LOAD_DONE 0x04
16 #define QTN_BDA_FW_START 0x05
17 #define QTN_BDA_FW_RUN 0x06
18 #define QTN_BDA_FW_HOST_RDY 0x07
19 #define QTN_BDA_FW_TARGET_RDY 0x11
20 #define QTN_BDA_FW_TARGET_BOOT 0x12
21 #define QTN_BDA_FW_FLASH_BOOT 0x13
[all …]
/kernel/linux/linux-5.10/drivers/rtc/
Drtc-jz4740.c20 #define JZ_REG_RTC_CTRL 0x00
21 #define JZ_REG_RTC_SEC 0x04
22 #define JZ_REG_RTC_SEC_ALARM 0x08
23 #define JZ_REG_RTC_REGULATOR 0x0C
24 #define JZ_REG_RTC_HIBERNATE 0x20
25 #define JZ_REG_RTC_WAKEUP_FILTER 0x24
26 #define JZ_REG_RTC_RESET_COUNTER 0x28
27 #define JZ_REG_RTC_SCRATCHPAD 0x34
30 #define JZ_REG_RTC_WENR 0x3C
39 #define JZ_RTC_CTRL_ENABLE BIT(0)
[all …]
/kernel/linux/linux-5.10/arch/arm/mach-milbeaut/
Dplatsmp.c19 #define KERNEL_UNBOOT_FLAG 0x12345678
31 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0); in m10v_boot_secondary()
43 return 0; in m10v_boot_secondary()
55 m10v_smp_base = of_iomap(np, 0); in m10v_smp_init()
60 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0); in m10v_smp_init()
64 for (cpu = 0; cpu < M10V_MAX_CPU; cpu++) in m10v_smp_init()
71 gic_cpu_if_down(0); in m10v_cpu_die()
81 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0); in m10v_cpu_kill()
115 return 0; in m10v_die()
126 cpu_suspend(0, m10v_die); in m10v_pm_enter()
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/verifier/
Dspill_fill.c35 BPF_ST_MEM(BPF_DW, BPF_REG_10, -8, 0),
36 BPF_LD_MAP_FD(BPF_REG_1, 0),
38 BPF_MOV64_IMM(BPF_REG_3, 0),
39 BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_ringbuf_reserve),
43 BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0, 6),
48 /* should be able to access *(R7) = 0 */
49 BPF_ST_MEM(BPF_DW, BPF_REG_7, 0, 0),
52 BPF_MOV64_IMM(BPF_REG_2, 0),
53 BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_ringbuf_submit),
54 BPF_MOV64_IMM(BPF_REG_0, 0),
[all …]
/kernel/linux/linux-5.10/drivers/staging/wfx/
Dfwio.c18 #define WFX_DNLD_FIFO 0x09004000
19 #define DNLD_BLOCK_SIZE 0x0400
20 #define DNLD_FIFO_SIZE 0x8000 // (32 * DNLD_BLOCK_SIZE)
22 #define WFX_DCA_IMAGE_SIZE 0x0900C000
23 #define WFX_DCA_PUT 0x0900C004
24 #define WFX_DCA_GET 0x0900C008
25 #define WFX_DCA_HOST_STATUS 0x0900C00C
26 #define HOST_READY 0x87654321
27 #define HOST_INFO_READ 0xA753BD99
28 #define HOST_UPLOAD_PENDING 0xABCDDCBA
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/crypto/
Dfsl-sec4.txt57 Definition: Must include "fsl,sec-v4.0"
123 compatible = "fsl,sec-v4.0";
127 reg = <0x300000 0x10000>;
128 ranges = <0 0x300000 0x10000>;
142 compatible = "fsl,sec-v4.0";
145 reg = <0x2140000 0x3c000>;
146 ranges = <0 0x2140000 0x3c000>;
168 Definition: Must include "fsl,sec-v4.0-job-ring"
197 compatible = "fsl,sec-v4.0-job-ring";
198 reg = <0x1000 0x1000>;
[all …]
/kernel/liteos_a/kernel/extended/trace/
Dlos_trace_pri.h45 #define TRACE_CMD_END_CHAR 0xD
49 #define TRACE_MODE_OFFLINE 0
54 #define TRACE_CTL_MAGIC_NUM 0xDEADBEEF
55 #define TRACE_BIGLITTLE_WORD 0x12345678
56 #define TRACE_VERSION(MODE) (0xFFFFFFFF & (MODE))
59 #define TRACE_GET_MODE_FLAG(type) ((type) & 0xFFFFFFF0)
136 } while (0)
140 } while (0)
/kernel/liteos_m/components/trace/
Dlos_trace_pri.h47 #define TRACE_CMD_END_CHAR 0xD
51 #define TRACE_MODE_OFFLINE 0
56 #define TRACE_CTL_MAGIC_NUM 0xDEADBEEF
57 #define TRACE_BIGLITTLE_WORD 0x12345678
58 #define TRACE_VERSION(MODE) (0xFFFFFFFF & (MODE))
61 #define TRACE_GET_MODE_FLAG(type) ((type) & 0xFFFFFFF0)
139 } while (0)
143 } while (0)
/kernel/linux/linux-5.10/arch/h8300/kernel/
Dsetup.c74 memory_end = memory_start = 0; in bootmem_init()
103 init_mm.brk = (unsigned long) 0; in setup_arch()
141 return 0; in show_cpuinfo()
147 ((void *) 0x12345678) : NULL; in c_start()
170 baddr = ((addr) / 0x200000 * 2); \
177 baddr = ((addr) / 0x200000 * 16); \
187 int bit = 1 << (addr / 0x200000); in access_timing()
191 base = of_iomap(bsc, 0); in access_timing()
192 w = (readb(base + 0) & bit)?2:1; in access_timing()
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/selftests/
Di915_gem.c23 int err = 0; in switch_to_context()
47 u32 prng = 0x12345678; in trash_stolen()
53 for (page = 0; page < size; page += PAGE_SIZE) { in trash_stolen()
58 ggtt->vm.insert_page(&ggtt->vm, dma, slot, I915_CACHE_NONE, 0); in trash_stolen()
61 for (x = 0; x < PAGE_SIZE / sizeof(u32); x++) { in trash_stolen()
93 return 0; in pm_prepare()
207 int err = 0; in igt_gem_ww_ctx()
251 return 0; in i915_gem_live_selftests()
/kernel/linux/linux-5.10/arch/m68k/kernel/
Dsetup_no.c93 init_mm.brk = (unsigned long) 0; in setup_arch()
95 config_BSP(&command_line[0], sizeof(command_line)); in setup_arch()
98 strncpy(&command_line[0], CONFIG_BOOTPARAM_STRING, sizeof(command_line)); in setup_arch()
99 command_line[sizeof(command_line) - 1] = 0; in setup_arch()
102 process_uboot_commandline(&command_line[0], sizeof(command_line)); in setup_arch()
136 pr_debug("KERNEL -> TEXT=0x%p-0x%p DATA=0x%p-0x%p BSS=0x%p-0x%p\n", in setup_arch()
138 pr_debug("MEMORY -> ROMFS=0x%p-0x%06lx MEM=0x%06lx-0x%06lx\n ", in setup_arch()
145 *cmdline_p = &command_line[0]; in setup_arch()
147 boot_command_line[COMMAND_LINE_SIZE-1] = 0; in setup_arch()
157 if ((initrd_start > 0) && (initrd_start < initrd_end) && in setup_arch()
[all …]
/kernel/linux/linux-5.10/tools/lib/traceevent/Documentation/
Dlibtraceevent-func_apis.txt81 The _tep_set_function_resolver()_ function returns 0 in case of success, or -1
88 or 0 in case it cannot be found.
90 The _tep_register_function()_ function returns 0 in case of success. In case of
93 The _tep_register_print_string()_ function returns 0 in case of success. In case
123 function_database) != 0) {
141 (unsigned long long) 0x12345678, "kvm") != 0) {
146 (unsigned long long) 0x87654321, NULL) != 0) {

1234