Home
last modified time | relevance | path

Searched refs:numchips (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Tools/pynche/
DStripViewer.py52 def constant(numchips): argument
53 step = 255.0 / (numchips - 1)
56 while numchips > 0:
59 numchips = numchips - 1
63 def constant_red_generator(numchips, red, green, blue): argument
64 seq = constant(numchips)
65 return list(zip([red] * numchips, seq, seq))
68 def constant_green_generator(numchips, red, green, blue): argument
69 seq = constant(numchips)
70 return list(zip(seq, [green] * numchips, seq))
[all …]
/external/python/cpython2/Tools/pynche/
DStripViewer.py52 def constant(numchips): argument
53 step = 255.0 / (numchips - 1)
56 while numchips > 0:
59 numchips = numchips - 1
63 def constant_red_generator(numchips, red, green, blue): argument
64 seq = constant(numchips)
65 return map(None, [red] * numchips, seq, seq)
68 def constant_green_generator(numchips, red, green, blue): argument
69 seq = constant(numchips)
70 return map(None, seq, [green] * numchips, seq)
[all …]
/external/u-boot/drivers/mtd/nand/
Dnand_bbt.c269 for (i = 0; i < this->numchips; i++) { in read_abs_bbt()
472 if (chip >= this->numchips) { in create_bbt()
474 chip + 1, this->numchips); in create_bbt()
542 chips = this->numchips; in search_bbt()
642 nrchips = this->numchips; in write_bbt()
846 chips = this->numchips; in check_create()
969 chips = this->numchips; in mark_bbt_region()
Dmxs_nand_spl.c180 if (nand_chip.numchips) in mxs_nand_init()
188 nand_chip.numchips = 1; in mxs_nand_init()
Dnand_base.c4075 chip->numchips = i; in nand_scan_ident()
/external/u-boot/include/linux/mtd/
Ddoc2000.h187 int numchips; member
Drawnand.h914 int numchips; member
/external/u-boot/cmd/
Dnand.c296 if (chip->numchips > 1) in nand_print_and_set_info()
297 printf("%dx ", chip->numchips); in nand_print_and_set_info()