| /openbmc/u-boot/arch/arm/mach-exynos/ |
| H A D | spl_boot.c | 64 static void spi_rx_tx(struct exynos_spi *regs, int todo, in spi_rx_tx() argument 71 out_bytes = todo; in spi_rx_tx() 72 in_bytes = todo; in spi_rx_tx() 75 writel(((todo * 8) / 32) | SPI_PACKET_CNT_EN, ®s->pkt_cnt); in spi_rx_tx() 108 int upto, todo; in exynos_spi_copy() local 152 for (upto = 0, i = 0; upto < uboot_size; upto += todo, i++) { in exynos_spi_copy() 153 todo = min(uboot_size - upto, (unsigned int)(1 << 15)); in exynos_spi_copy() 154 spi_rx_tx(regs, todo, (void *)(uboot_addr), in exynos_spi_copy()
|
| /openbmc/u-boot/tools/binman/ |
| H A D | bsection.py | 143 todo = self._entries.values() 146 for entry in todo: 149 todo = next_todo 150 if not todo: 152 if todo: 154 'remaining %s' % todo) 220 todo = self._entries.values() 223 for entry in todo: 226 todo = next_todo 227 if not todo: [all …]
|
| /openbmc/u-boot/drivers/spi/ |
| H A D | exynos_spi.c | 95 static int spi_rx_tx(struct exynos_spi_priv *priv, int todo, in spi_rx_tx() argument 108 out_bytes = in_bytes = todo; in spi_rx_tx() 118 if (!((todo | (uintptr_t)rxp | (uintptr_t)txp) & 3) && in spi_rx_tx() 126 spi_request_bytes(regs, todo, step); in spi_rx_tx() 326 int upto, todo; in exynos_spi_xfer() local 346 for (upto = 0; !ret && upto < bytelen; upto += todo) { in exynos_spi_xfer() 347 todo = min(bytelen - upto, (1 << 16) - 4); in exynos_spi_xfer() 348 ret = spi_rx_tx(priv, todo, &din, &dout, flags); in exynos_spi_xfer()
|
| H A D | rk_spi.c | 377 int todo = min(len, 0xffff); in rockchip_spi_xfer() local 380 writel(todo - 1, ®s->ctrlr1); in rockchip_spi_xfer() 383 toread = todo; in rockchip_spi_xfer() 384 towrite = todo; in rockchip_spi_xfer() 403 len -= todo; in rockchip_spi_xfer()
|
| /openbmc/u-boot/tools/gdb/ |
| H A D | remote.c | 492 int todo; local 502 todo = min (len, max_buf_size); 507 todo = min (len, max_buf_size / 2); /* num bytes that will fit */ 514 p += hexnumstr ((char *)p, (ULONGEST) todo); 525 (i < todo) && (i + escaped) < (max_buf_size - 2); 544 if (i < todo) 559 for (i = 0; i < todo; i++)
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/websocketpp/websocketpp-0.8.2/ |
| H A D | 0001-Correct-clang-compiler-flags.patch | 25 - set (CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-std=c++0x -stdlib=libc++") # todo: is libc++ rea… 28 … add_definitions (-DNDEBUG -Wall -Wno-padded) # todo: should we use CMAKE_C_FLAGS for these?
|
| H A D | 855.patch | 19 …ERSIONS "1.39.0" "1.40.0" "1.41.0" "1.42.0" "1.43.0" "1.44.0" "1.46.1") # todo: someone who knows …
|
| /openbmc/u-boot/drivers/usb/emul/ |
| H A D | usb-emul-uclass.c | 83 int upto, todo; in usb_emul_get_descriptor() local 97 for (upto = 0; *ptr && upto < length; ptr++, upto += todo) { in usb_emul_get_descriptor() 98 todo = min(length - upto, (int)(*ptr)->bLength); in usb_emul_get_descriptor() 100 memcpy(buffer + upto, *ptr, todo); in usb_emul_get_descriptor()
|
| /openbmc/u-boot/tools/ |
| H A D | imx8mimage.c | 279 int todo = sizeof(zeros); in copy_file() local 281 if (todo > pad) in copy_file() 282 todo = pad; in copy_file() 283 if (write(ifd, (char *)&zeros, todo) != todo) { in copy_file() 288 pad -= todo; in copy_file()
|
| H A D | mkimage.c | 724 int todo = sizeof(zeros); in copy_file() local 726 if (todo > pad) in copy_file() 727 todo = pad; in copy_file() 728 if (write(ifd, (char *)&zeros, todo) != todo) { in copy_file() 734 pad -= todo; in copy_file()
|
| H A D | imx8image.c | 420 int todo = sizeof(zeros); in copy_file() local 422 if (todo > pad) in copy_file() 423 todo = pad; in copy_file() 424 if (write(ifd, (char *)&zeros, todo) != todo) { in copy_file() 429 pad -= todo; in copy_file()
|
| /openbmc/u-boot/drivers/mtd/spi/ |
| H A D | sandbox.c | 302 int todo; in sandbox_erase_part() local 306 todo = min(size, (int)sizeof(sandbox_sf_0xff)); in sandbox_erase_part() 307 ret = os_write(sbsf->fd, sandbox_sf_0xff, todo); in sandbox_erase_part() 308 if (ret != todo) in sandbox_erase_part() 310 size -= todo; in sandbox_erase_part()
|
| /openbmc/u-boot/cmd/ |
| H A D | sf.c | 217 size_t todo; /* number of bytes to do in this pass */ in spi_flash_update() local 230 for (; buf < end && !err_oper; buf += todo, offset += todo) { in spi_flash_update() 231 todo = min_t(size_t, end - buf, flash->sector_size); in spi_flash_update() 239 err_oper = spi_flash_update_block(flash, offset, todo, in spi_flash_update()
|
| /openbmc/u-boot/tools/patman/ |
| H A D | gitutil.py | 511 todo = LookupEmail(item, alias, raise_on_error, level + 1) 512 for new_item in todo:
|
| /openbmc/u-boot/drivers/misc/ |
| H A D | cros_ec.c | 928 uint32_t todo; in cros_ec_flash_write() local 931 todo = min(end - off, burst); in cros_ec_flash_write() 933 cros_ec_data_is_erased((uint32_t *)data, todo)) in cros_ec_flash_write() 936 ret = cros_ec_flash_write_block(dev, data, off, todo); in cros_ec_flash_write()
|
| /openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/tracker/tinysparql/ |
| H A D | 0001-fix-reproducibility.patch | 9 todo: Some of these paths may need to be adjusted to make the test environment work
|
| /openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/tracker/localsearch/ |
| H A D | 0001-fix-reproducibility.patch | 9 todo: Some of these paths may need to be adjusted to make the test environment work
|
| /openbmc/qemu/tests/tcg/multiarch/ |
| H A D | sha512.c | 627 static int todo = 0; variable 733 if(todo) { in _gen_result() 743 todo ? "(TODO) " : "", file, func, line); in _gen_result()
|
| /openbmc/u-boot/tools/buildman/ |
| H A D | builder.py | 365 todo = self.count - self.upto 367 self._build_period * todo * 1000000)
|
| /openbmc/openbmc/poky/meta/recipes-devtools/perl/files/ |
| H A D | perl-rdepends.txt | 2365 RDEPENDS:perl-module-test2-manual-testing-todo += "perl-module-strict" 2366 RDEPENDS:perl-module-test2-manual-testing-todo += "perl-module-warnings" 2449 RDEPENDS:perl-module-test2-todo += "perl-module-overload" 2450 RDEPENDS:perl-module-test2-todo += "perl-module-strict" 2451 RDEPENDS:perl-module-test2-todo += "perl-module-test2-api" 2452 RDEPENDS:perl-module-test2-todo += "perl-module-test2-util-hashbase" 2453 RDEPENDS:perl-module-test2-todo += "perl-module-warnings" 2463 RDEPENDS:perl-module-test2-tools-basic += "perl-module-test2-todo" 2716 RDEPENDS:perl-module-test2-workflow-runner += "perl-module-test2-todo"
|
| /openbmc/u-boot/drivers/usb/gadget/ |
| H A D | ether.c | 125 unsigned long todo; member
|
| /openbmc/qemu/docs/interop/ |
| H A D | live-block-operations.rst | 29 .. todo (kashyapc):: Remove the ".. contents::" directive when Sphinx is
|
| /openbmc/u-boot/doc/ |
| H A D | README.x86 | 10 including supported boards, build instructions, todo list, etc.
|
| /openbmc/entity-manager/ |
| H A D | Doxyfile | 654 # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo 655 # list. This list is created by putting \todo commands in the documentation.
|
| /openbmc/openbmc/poky/meta/recipes-support/vte/vte/ |
| H A D | 0004-fast_float-Add-single-header-library-for-from_char-i.patch | 3696 +// todo: is there a VS warning?
|