Searched refs:good (Results 1 - 25 of 43) sorted by relevance

12

/linux-master/tools/testing/selftests/exec/
H A Dbinfmt_script.py36 # @good: whether this script is expected to execute correctly
45 def test(name, size, good=True, leading="", root="./", target="/perl",
82 if good:
83 print("ok %d - binfmt_script %s (successful good exec)"
91 if good:
117 test(name="too-big", size=SIZE+80, good=False)
119 test(name="exact", size=SIZE, good=False)
121 test(name="exact-space", size=SIZE, good=False, leading=" ")
123 test(name="whitespace-too-big", size=SIZE+71, good=False, root="",
125 # A good pat
[all...]
/linux-master/tools/testing/ktest/examples/include/
H A Dbisect.conf21 # You must set the commit that was considered good (git bisect good)
28 # that requires to run a test to know if the bisect was good or bad.
29 # The test should exit with 0 on good, non-zero for bad. But see
33 # It is usually a good idea to confirm that the GOOD and the BAD
34 # commits are truly good and bad respectively. Having BISECT_CHECK
35 # set to 1 will check both that the good commit works and the bad
37 # set BISECT_CHECK to 'good' or to 'bad'.
39 #BISECT_CHECK = good
42 # Usually it's a good ide
[all...]
/linux-master/tools/testing/selftests/seccomp/
H A Dseccomp_benchmark.c110 bool good; local
122 good = false;
127 good = false;
131 good = eval(one, two);
132 printf("%s\n", good ? "������" : "���");
135 ksft_test_result(good, "%s %s %s\n", name_one, name_eval, name_two);
137 return good ? 0 : 1;
/linux-master/fs/
H A Dfs_parser.c338 bool good = true; local
348 good = false;
355 good = false;
360 good = false;
368 good = false;
372 return good;
384 bool good = true; local
394 good = false;
398 return good;
/linux-master/tools/testing/ktest/
H A Dconfig-bisect.pl9 # config-bisect.pl [options] good-config bad-config [good|bad]
12 # Compares a good config to a bad config, then takes half of the diffs
13 # and produces a config that is somewhere between the good config and
15 # good config and will try to make half of the differences of between
16 # the good and bad configs match the bad config. It tries because of
24 # $ config-bisect.pl /path/to/good/config /path/to/bad/config
26 # This will now pull in good config (blowing away .config in that directory
27 # so do not make that be one of the good or bad configs), and then
30 # the good confi
[all...]
/linux-master/crypto/async_tx/
H A Dasync_raid6_recov.c217 int good_srcs, good, i; local
220 good = -1;
226 good = i;
235 g = blocks[good];
236 g_off = offs[good];
251 raid6_gfexp[good], bytes, submit);
483 int good_srcs, good, i; local
512 good = -1;
517 good = i;
540 * multiplication with the one good dat
[all...]
/linux-master/drivers/net/wireless/st/cw1200/
H A Dsta.h65 void __cw1200_cqm_bssloss_sm(struct cw1200_common *priv, int init, int good,
68 int init, int good, int bad)
71 __cw1200_cqm_bssloss_sm(priv, init, good, bad);
67 cw1200_cqm_bssloss_sm(struct cw1200_common *priv, int init, int good, int bad) argument
/linux-master/lib/
H A Dpercpu_counter.c299 bool good = false; local
325 good = true;
330 good = true;
333 if (!good) {
348 good = true;
357 return good;
/linux-master/drivers/infiniband/hw/mthca/
H A Dmthca_reset.c175 goto good;
186 good:
/linux-master/include/linux/
H A Dhil_mlc.h99 int good; /* Node to jump to on success */ member in struct:hilse_node
H A Dpercpu_counter.h201 bool good = false; local
212 good = true;
215 return good;
/linux-master/fs/xfs/libxfs/
H A Dxfs_rmap.c2908 struct xfs_rmap_irec good; member in struct:xfs_rmap_ownercount
2952 roc->good.rm_startblock = bno;
2953 roc->good.rm_blockcount = len;
2954 roc->good.rm_owner = oinfo->oi_owner;
2955 roc->good.rm_offset = oinfo->oi_offset;
2957 roc->good.rm_flags |= XFS_RMAP_ATTR_FORK;
2959 roc->good.rm_flags |= XFS_RMAP_BMBT_BLOCK;
2979 delta = (int64_t)roc->good.rm_startblock - check.rm_startblock;
2989 (roc->good.rm_startblock + roc->good
[all...]
/linux-master/drivers/misc/lkdtm/
H A Dbugs.c436 struct lkdtm_list good, bad; local
440 pr_info("attempting good list addition\n");
444 * test_head.next->prev = &good.node
445 * good.node.next = test_head.next
446 * good.node.prev = test_head
447 * test_head.next = good.node
449 list_add(&good.node, &test_head);
477 pr_info("attempting good list removal\n");
/linux-master/arch/mips/include/asm/mach-cavium-octeon/
H A Dkernel-entry-init.h60 slti t1, t1, 2 # 66-P1.2 and later good.
/linux-master/tools/bootconfig/
H A Dtest-bootconfig.sh179 for i in samples/good-* ; do
/linux-master/tools/perf/
H A Dbuiltin-annotate.c450 total_good += istat->good;
452 sum1 = istat->good + istat->bad;
455 sum2 = iter->good + iter->bad;
470 printf(" %-10s: %5d %5d\n", istat->name, istat->good, istat->bad);
/linux-master/drivers/scsi/sym53c8xx_2/
H A Dsym_hipd.h1096 good:
1102 goto good;
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dkvm-remote.sh31 echo $scriptname: Empty list of systems will go nowhere good, giving up.
/linux-master/drivers/input/serio/
H A Dhil_mlc.c643 ((rc < 0) ? node->bad : node->good);
664 nextidx = node->good;
723 nextidx = rc ? node->bad : node->good;
/linux-master/scripts/
H A Dcheckpatch.pl5110 my $good = $fix_elements[$n] . $fix_elements[$n + 1];
5112 ## print("n: <$n> good: <$good>\n");
5172 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]) . " ";
5190 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5219 $good = rtrim($fix_elements[$n]) . trim($fix_elements[$n + 1]);
5221 $good = $fix_elements[$n] . trim($fix_elements[$n + 1]);
5224 $good .= " ";
5242 $good = $fix_elements[$n] . " " . ltrim($fix_elements[$n + 1]);
5253 $good
[all...]
/linux-master/arch/mips/include/asm/octeon/
H A Dcvmx-sriox-defs.h1112 uint64_t good:16; member in struct:cvmx_sriox_omsg_done_countsx::cvmx_sriox_omsg_done_countsx_s
1114 uint64_t good:16;
1605 uint64_t good:16; member in struct:cvmx_sriox_wr_done_counts::cvmx_sriox_wr_done_counts_s
1607 uint64_t good:16;
/linux-master/drivers/block/aoe/
H A Daoecmd.c714 int i, good; local
716 for (i = good = 0; i < d->ntargets && d->targets[i]; ++i)
718 good++;
721 *untainted = good;
/linux-master/tools/perf/util/
H A Dannotate.h555 int good; member in struct:annotated_item_stat
/linux-master/arch/powerpc/platforms/powermac/
H A Dpci.c1117 goto good;
1122 good:
/linux-master/sound/pci/emu10k1/
H A Dio.c655 goto good;
661 good:

Completed in 408 milliseconds

12