Searched refs:numchips (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Tools/pynche/ |
D | StripViewer.py | 52 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/ |
D | StripViewer.py | 52 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/ |
D | nand_bbt.c | 269 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()
|
D | mxs_nand_spl.c | 180 if (nand_chip.numchips) in mxs_nand_init() 188 nand_chip.numchips = 1; in mxs_nand_init()
|
D | nand_base.c | 4075 chip->numchips = i; in nand_scan_ident()
|
/external/u-boot/include/linux/mtd/ |
D | doc2000.h | 187 int numchips; member
|
D | rawnand.h | 914 int numchips; member
|
/external/u-boot/cmd/ |
D | nand.c | 296 if (chip->numchips > 1) in nand_print_and_set_info() 297 printf("%dx ", chip->numchips); in nand_print_and_set_info()
|