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/raw/ |
D | mxs_nand_spl.c | 180 if (nand_chip.numchips) in nand_init() 189 nand_chip.numchips = 1; in nand_init() 194 nand_chip.numchips = 0; /* If fail, don't use nand */ in nand_init() 216 if (!chip->numchips) in nand_spl_load_image()
|
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 | nand_base.c | 4716 chip->numchips = i; in nand_scan_ident()
|
/external/u-boot/include/linux/mtd/ |
D | doc2000.h | 187 int numchips; member
|
D | rawnand.h | 930 int numchips; member
|
/external/u-boot/cmd/ |
D | nand.c | 298 if (chip->numchips > 1) in nand_print_and_set_info() 299 printf("%dx ", chip->numchips); in nand_print_and_set_info()
|