Home
last modified time | relevance | path

Searched refs:ok (Results 1 – 25 of 39) sorted by relevance

12

/rk3399_rockchip-uboot/fs/yaffs2/
H A Dyaffs_yaffs2.c268 int ok; in yaffs2_rd_checkpt_validity_marker() local
270 ok = (yaffs2_checkpt_rd(dev, &cp, sizeof(cp)) == sizeof(cp)); in yaffs2_rd_checkpt_validity_marker()
272 if (ok) in yaffs2_rd_checkpt_validity_marker()
273 ok = (cp.struct_type == sizeof(cp)) && in yaffs2_rd_checkpt_validity_marker()
277 return ok ? 1 : 0; in yaffs2_rd_checkpt_validity_marker()
314 int ok; in yaffs2_wr_checkpt_dev() local
320 ok = (yaffs2_checkpt_wr(dev, &cp, sizeof(cp)) == sizeof(cp)); in yaffs2_wr_checkpt_dev()
321 if (!ok) in yaffs2_wr_checkpt_dev()
326 ok = (yaffs2_checkpt_wr(dev, dev->block_info, n_bytes) == n_bytes); in yaffs2_wr_checkpt_dev()
327 if (!ok) in yaffs2_wr_checkpt_dev()
[all …]
H A Dyaffs_checkptrw.c260 int ok = 1; in yaffs2_checkpt_wr() local
269 while (i < n_bytes && ok) { in yaffs2_checkpt_wr()
281 ok = yaffs2_checkpt_flush_buffer(dev); in yaffs2_checkpt_wr()
290 int ok = 1; in yaffs2_checkpt_rd() local
302 while (i < n_bytes && ok) { in yaffs2_checkpt_rd()
313 ok = 0; in yaffs2_checkpt_rd()
333 ok = 0; in yaffs2_checkpt_rd()
/rk3399_rockchip-uboot/post/lib_powerpc/fpu/
H A Dcompare-fp-1.c23 #define TEST(c) if ((c) != ok) failed++
37 static void iuneq (float x, float y, int ok) in iuneq() argument
44 static void ieq (float x, float y, int ok) in ieq() argument
49 static void iltgt (float x, float y, int ok) in iltgt() argument
56 static void ine (float x, float y, int ok) in ine() argument
61 static void iunlt (float x, float y, int ok) in iunlt() argument
67 static void ilt (float x, float y, int ok) in ilt() argument
76 static void iunle (float x, float y, int ok) in iunle() argument
82 static void ile (float x, float y, int ok) in ile() argument
91 static void iungt (float x, float y, int ok) in iungt() argument
[all …]
H A Dmul-subnormal-single-1.c43 static int ok = 1; variable
54 ok = 0; in tstmul()
79 if (!ok) { in fpu_post_test_math7()
/rk3399_rockchip-uboot/scripts/
H A Dcheck-config.sh24 ok="${path}.ok"
38 |sort |uniq > ${ok}
39 comm -23 ${suspects} ${ok} >${new_adhoc}
50 rm ${suspects} ${ok} ${new_adhoc}
H A Dcheckpatch.pl3837 my $ok = 0;
3844 $ok = 1;
3849 if ($ok == 0) {
4321 my $ok = 0;
4329 $ok = 1;
4337 $ok = 1;
4341 if ($ok == 0) {
5962 my $ok = 0;
5968 $ok = 1 if ($rl =~ /^[ \+]\{/);
5969 $ok = 1 if ($rl =~ /\{/ && $n == 0);
[all …]
/rk3399_rockchip-uboot/arch/arm/lib/
H A Dcache.c51 int ok = 1; in check_cache_range() local
54 ok = 0; in check_cache_range()
57 ok = 0; in check_cache_range()
59 if (!ok) { in check_cache_range()
64 return ok; in check_cache_range()
/rk3399_rockchip-uboot/tools/patman/
H A Dtest.py219 self.assertEqual(result.ok, True)
230 self.assertEqual(result.ok, False)
241 self.assertEqual(result.ok, False)
252 self.assertEqual(result.ok, False)
H A Dcheckpatch.py60 result.ok = False
104 result.ok = True
106 result.ok = False
150 if not result.ok:
H A Dpatman.py155 ok = checkpatch.CheckPatches(options.verbose, args) variable
157 ok = True variable
165 its_a_go = ok or options.ignore_errors
H A Dpatman155 ok = checkpatch.CheckPatches(options.verbose, args) variable
157 ok = True variable
165 its_a_go = ok or options.ignore_errors
/rk3399_rockchip-uboot/drivers/block/
H A Dblk_legacy.c77 int devnum, ok; in blk_list_part() local
83 for (ok = 0, devnum = 0; devnum < drv->max_devs; ++devnum) { in blk_list_part()
87 ++ok; in blk_list_part()
94 if (!ok) in blk_list_part()
H A Dblk-uclass.c225 int devnum, ok; in blk_list_part() local
228 for (ok = 0, devnum = 0;; ++devnum) { in blk_list_part()
235 ++ok; in blk_list_part()
241 if (!ok) in blk_list_part()
/rk3399_rockchip-uboot/tools/buildman/
H A Dtest.py166 def assertSummary(self, text, arch, plus, boards, ok=False): argument
168 expected_colour = col.GREEN if ok else col.RED
223 self.assertSummary(lines[8].text, 'arm', '', ['board1'], ok=True)
231 self.assertSummary(lines[12].text, 'sandbox', '', ['board4'], ok=True)
233 ok=True)
246 self.assertSummary(lines[18].text, 'powerpc', '', ['board3'], ok=True)
258 self.assertSummary(lines[22].text, 'sandbox', '', ['board4'], ok=True)
H A Dtoolchain.py97 self.ok = result.return_code == 0
100 if self.ok:
109 self.ok = True
239 add_it = toolchain.ok
/rk3399_rockchip-uboot/lib/
H A Dmembuff.c295 bool ok = false; in membuff_readline() local
303 ok = true; in membuff_readline()
313 if (!ok) { in membuff_readline()
/rk3399_rockchip-uboot/cmd/
H A Dmii.c411 int ok = 1; in do_mii() local
421 ok = 0; in do_mii()
428 if (ok) in do_mii()
/rk3399_rockchip-uboot/arch/arm/mach-at91/include/mach/
H A Dat91_emac.h31 u32 ok; member
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dqconf.cc65 QList<int> ConfigSettings::readSizes(const QString& key, bool *ok) in readSizes() argument
77 *ok = true; in readSizes()
80 *ok = false; in readSizes()
1289 bool ok; in ConfigSearchWindow() local
1299 QList<int> sizes = configSettings->readSizes("/split", &ok); in ConfigSearchWindow()
1300 if (ok) in ConfigSearchWindow()
1347 bool ok = true; in ConfigMainWindow() local
1522 QList<int> sizes = configSettings->readSizes("/split1", &ok); in ConfigMainWindow()
1523 if (ok) in ConfigMainWindow()
1526 sizes = configSettings->readSizes("/split2", &ok); in ConfigMainWindow()
[all …]
/rk3399_rockchip-uboot/arch/arm/dts/
H A Domap36xx.dtsi105 status = "ok";
H A Dkeystone-k2l-evm.dts122 status = "ok";
H A Dkeystone-k2e-evm.dts145 status = "ok";
H A Ddra72-evm-common.dtsi422 status = "ok";
491 status = "ok";
495 status = "ok";
H A Dkeystone-k2hk-evm.dts173 status = "ok";
H A Dam57xx-beagle-x15-common.dtsi546 status = "ok";
552 status = "ok";

12