Home
last modified time | relevance | path

Searched refs:x1 (Results 1 – 4 of 4) sorted by relevance

/littlefs-latest/tests/
Dtest_evil.toml8 defines.INVALSET = [0x3, 0x1, 0x2]
22 (INVALSET & 0x1) ? 0xcccccccc : 0,
31 defines.INVALSET = [0x3, 0x1, 0x2]
57 (INVALSET & 0x1) ? 0xcccccccc : 0,
200 defines.INVALSET = [0x3, 0x1, 0x2]
212 (INVALSET & 0x1) ? 0xcccccccc : 0,
Dtest_move.toml1646 if (RELOCATIONS & 0x1) {
1792 if (RELOCATIONS & 0x1) {
/littlefs-latest/scripts/
Dplot.py328 def line(self, x1, y1, x2, y2, *, argument
332 x1, y1 = self.scale(x1, y1)
336 ex = abs(x2 - x1)
338 dx = +1 if x1 < x2 else -1
343 if x1 >= 0 and x1 < self.width and y1 >= 0 and y1 < self.height:
344 self.grid[x1 + y1*self.width] = (color, char)
347 if x1 == x2 and y1 == y2:
352 x1 += dx
354 if x1 == x2 and y1 == y2:
370 for (x1, y1), (x2, y2) in zip(coords, coords[1:]):
[all …]
Dplotmpl.py997 xmid = (grid[0,0].ax.get_position().x0 + grid[-1,0].ax.get_position().x1)/2