Searched refs:expected (Results 1 - 25 of 312) sorted by path

1234567891011>>

/linux-master/arch/alpha/kernel/
H A Dcore_mcpcia.c582 int expected;
585 expected = mcheck_expected(cpu);
591 switch (expected) {
613 process_mcheck_info(vector, la_ptr, "MCPCIA", expected != 0);
614 if (!expected && vector != 0x620 && vector != 0x630) {
580 int expected; local
H A Dcore_cia.c1205 int expected;
1215 expected = mcheck_expected(0);
1216 if (!expected && vector == 0x660)
1217 expected = cia_decode_mchk(la_ptr);
1218 process_mcheck_info(vector, la_ptr, "CIA", expected);
1202 int expected; local
H A Dirq_alpha.c129 const char *machine, int expected)
142 expected ? "expected." : "NOT expected!!!");
146 if (expected) {
128 process_mcheck_info(unsigned long vector, unsigned long la_ptr, const char *machine, int expected) argument
H A Dproto.h204 unsigned char expected __attribute__((aligned(8))); member in struct:mcheck_info
209 #define mcheck_expected(cpu) (*((void)(cpu), &__mcheck_info.expected))
215 const char *machine, int expected);
/linux-master/arch/m68k/fpsp040/
H A Dgen_except.S261 | caller set CU_ONLY. If so, the exceptional operand is expected in
H A Dscale.S129 movew %d1,ETEMP(%a6) |input expected in ETEMP
/linux-master/arch/m68k/ifpsp060/src/
H A Dfpsp.S6642 # instead of inside sasin() as expected.
10065 # algorithm just got done playing with fp0 and expected no exceptions
/linux-master/drivers/media/pci/cx18/
H A Dcx18-av-firmware.c29 u32 expected, dl_control; local
48 expected = 0x0f000000 | ((u32)data[addr] << 16) | addr;
49 if (expected != dl_control) {
50 CX18_ERR_DEV(sd, "verification of %s firmware load failed: expected %#010x got %#010x\n",
51 FWFILE, expected, dl_control);
/linux-master/drivers/scsi/
H A Dscript_asm.pl286 expected IF or WHEN
347 expected <data>.
358 expected end of line, not \"$2\"
362 expected \",AND MASK <data>\", not \"$2\"
367 expected end of line" . (($need_data) ? " or \"AND MASK <data>\"" : "") . "
421 expected <identifier> = <value>
440 expected <identifier>, got $external
451 expected ENTRY <identifier>
497 expected <count>, <source>, <destination>
541 expected <registe
[all...]
/linux-master/fs/squashfs/
H A Dfile_cache.c21 int squashfs_readpage_block(struct page *page, u64 block, int bsize, int expected) argument
32 squashfs_copy_cache(page, buffer, expected, 0);
/linux-master/include/linux/
H A Dbcm963xx_nvram.h75 * @expected_out: optional pointer to store expected checksum value
84 u32 expected, actual; local
88 expected = nvram->checksum_v4;
91 expected = nvram->checksum_v5;
105 *expected_out = expected;
110 return expected == actual ? 0 : -EINVAL;
/linux-master/include/linux/mfd/
H A Dsi476x-reports.h149 __u16 expected; member in struct:si476x_rds_blockcount_report
/linux-master/lib/
H A Dglobtest.c16 bool expected; member in struct:glob_test
19 static bool __pure __init test(char const *pat, char const *str, bool expected) argument
22 bool success = match == expected;
139 * or '0' to indicate the expected outcome, or '\0' to indicate the
144 bool expected = *p++ & 1; local
148 successes += test(pat, p, expected);
H A Dpercpu_test.c4 /* validate @native and @pcp counter values match @expected */
5 #define CHECK(native, pcp, expected) \
7 WARN((native) != (expected), \
8 "raw %ld (0x%lx) != expected %lld (0x%llx)", \
10 (long long)(expected), (long long)(expected)); \
11 WARN(__this_cpu_read(pcp) != (expected), \
12 "pcp %ld (0x%lx) != expected %lld (0x%llx)", \
14 (long long)(expected), (long long)(expected)); \
[all...]
/linux-master/tools/testing/selftests/powerpc/copyloops/
H A Dexc_validate.c62 unsigned long got, expected; local
65 expected = test_copy_tofrom_user_reference(dstp, srcp, len);
67 if (got != expected) {
69 printf("FAIL from=%p to=%p len=%ld returned %ld, expected %ld\n",
70 srcp, dstp, len, got, expected);
/linux-master/tools/testing/selftests/powerpc/pmu/
H A Dcount_instructions.c32 s64 difference, expected; local
45 expected = instructions + overhead;
46 difference = events[0].result.value - expected;
54 printf("Expected %llu\n", expected);
/linux-master/tools/testing/selftests/powerpc/pmu/ebb/
H A Dinstruction_count_test.c28 int64_t difference, expected; local
46 expected = instructions + overhead;
47 difference = event->result.value - expected;
52 printf("Expected %lu\n", expected);
H A Dreg_access_test.c18 uint64_t val, expected; local
22 expected = 0x8000000100000000ull;
23 mtspr(SPRN_BESCR, expected);
26 FAIL_IF(val != expected);
28 expected = 0x0000000001000000ull;
29 mtspr(SPRN_EBBHR, expected);
32 FAIL_IF(val != expected);
/linux-master/tools/testing/selftests/powerpc/vphn/
H A Dtest-vphn.c24 u32 expected[VPHN_ASSOC_BUFSIZE]; member in struct:test
374 if (len != test->expected[0]) {
375 printf("expected %d elements, got %d\n", test->expected[0],
382 if (val != test->expected[i]) {
384 test->expected[i]);
/linux-master/tools/testing/selftests/x86/
H A Dtest_syscall_vdso.c130 uint64_t expected = 0x7f7f7f7f7f7f7f7fULL; local
136 if (*r64 == expected++)
/linux-master/tools/usb/
H A Dffs-test.c529 __u8 expected; local
537 expected = 0;
546 expected = len % 63;
558 err("bad OUT byte %zd, expected %02x got %02x\n",
559 len, expected, *p);
/linux-master/Documentation/trace/postprocess/
H A Dtrace-pagealloc-postprocess.pl116 my $expected = shift;
117 if ($key ne $expected) {
118 print("WARNING: Format not as expected '$key' != '$expected'");
124 die("Fewer fields than expected in format");
247 print "WARNING: Failed to parse mm_page_alloc_extfrag as expected\n";
H A Dtrace-vmscan-postprocess.pl170 my $expected = shift;
171 if ($key ne $expected) {
172 print("WARNING: Format not as expected for event $event '$key' != '$expected'\n");
178 die("Fewer fields than expected in format");
310 print "WARNING: Failed to parse mm_vmscan_direct_reclaim_begin as expected\n";
333 print "WARNING: Failed to parse mm_vmscan_kswapd_wake as expected\n";
367 print "WARNING: Failed to parse mm_vmscan_wakeup_kswapd as expected\n";
377 print "WARNING: Failed to parse mm_vmscan_lru_isolate as expected\n";
398 print "WARNING: Failed to parse mm_vmscan_lru_shrink_inactive as expected\
[all...]
/linux-master/arch/arc/include/asm/
H A Datomic64-arcv2.h141 arch_atomic64_cmpxchg(atomic64_t *ptr, s64 expected, s64 new) argument
155 : "r"(ptr), "ir"(expected), "r"(new)
H A Dentry-arcv2.h104 ; OUTPUT: r10 has ECR expected by EV_Trap

Completed in 303 milliseconds

1234567891011>>