/lk-master/app/tests/ |
A D | clock_tests.c | 44 lk_time_t last = start; in clock_tests() local 48 if (TIME_LT(t, last)) { in clock_tests() 49 printf("WARNING: time ran backwards: %u < %u\n", t, last); in clock_tests() 50 last = t; in clock_tests() 53 last = t; in clock_tests() 54 if (last - start > 5000) in clock_tests() 61 lk_bigtime_t last = start; in clock_tests() local 65 if (t2 < last) { in clock_tests() 67 last = t2; in clock_tests() 70 last = t2; in clock_tests() [all …]
|
/lk-master/lib/libc/string/ |
A D | strrchr.c | 17 char const *last= c?0:s; in strrchr() local 22 last= s; in strrchr() 28 return (char *)last; in strrchr()
|
/lk-master/top/ |
A D | init.c | 37 const struct lk_init_struct *last = NULL; in lk_init_level() local 40 LTRACEF("last %p, last_called_level %#x\n", last, last_called_level); in lk_init_level() 47 if (ptr == last) in lk_init_level() 70 if (ptr->level == last_called_level && ptr != last && seen_last) { in lk_init_level() 87 last = found; in lk_init_level()
|
/lk-master/platform/zynq/ |
A D | fpga.c | 81 static uint32_t last = 0; in zynq_program_fpga() local 82 if (last != sts) { in zynq_program_fpga() 85 last = sts; in zynq_program_fpga()
|
/lk-master/platform/lpc43xx/ |
A D | udc.c | 74 usb_request_t *last; member 100 ept->last = 0; in _udc_endpoint_alloc() 245 ept->last->next = req; in udc_request_queue() 253 ept->last = req; in udc_request_queue() 279 ept->last = 0; in handle_ept_complete() 564 udc_gadget_t *last = USB.gadget; in udc_register_gadget() local 565 while (last->next) { in udc_register_gadget() 566 last = last->next; in udc_register_gadget() 568 last->next = gadget; in udc_register_gadget()
|
/lk-master/kernel/vm/ |
A D | pmm.c | 380 ssize_t last = -1; in dump_arena() local 383 if (last == -1) { in dump_arena() 384 last = i; in dump_arena() 387 if (last != -1) { in dump_arena() 388 … printf("\t\t0x%lx - 0x%lx\n", arena->base + last * PAGE_SIZE, arena->base + i * PAGE_SIZE); in dump_arena() 390 last = -1; in dump_arena() 394 if (last != -1) { in dump_arena() 395 printf("\t\t0x%lx - 0x%lx\n", arena->base + last * PAGE_SIZE, arena->base + arena->size); in dump_arena()
|
A D | vmm.c | 126 vmm_region_t *last; in add_region_to_aspace() local 127 last = list_peek_head_type(&aspace->region_list, vmm_region_t, node); in add_region_to_aspace() 128 if (!last || r_end < last->base) { in add_region_to_aspace() 135 list_for_every_entry(&aspace->region_list, last, vmm_region_t, node) { in add_region_to_aspace() 137 if (r->base > last->base + last->size - 1) { in add_region_to_aspace() 139 … vmm_region_t *next = list_next_type(&aspace->region_list, &last->node, vmm_region_t, node); in add_region_to_aspace() 142 list_add_after(&last->node, &r->node); in add_region_to_aspace()
|
/lk-master/external/lib/lwip/core/ |
A D | netif.c | 615 struct pbuf *last; in netif_loop_output() local 666 for (last = r; last->next != NULL; last = last->next); in netif_loop_output() 672 netif->loop_last = last; in netif_loop_output() 675 netif->loop_last = last; in netif_loop_output()
|
/lk-master/external/platform/pico/rp2_common/hardware_i2c/ |
A D | i2c.c | 131 bool last = byte_ctr == len - 1; in i2c_write_blocking_internal() local 135 !!(last && !nostop) << I2C_IC_DATA_CMD_STOP_LSB | in i2c_write_blocking_internal() 218 bool last = byte_ctr == len - 1; in i2c_read_blocking_internal() local 224 !!(last && !nostop) << I2C_IC_DATA_CMD_STOP_LSB | in i2c_read_blocking_internal()
|
/lk-master/dev/virtio/ |
A D | virtio.c | 253 struct vring_desc *last = 0; in virtio_alloc_desc_chain() local 262 if (last) { in virtio_alloc_desc_chain() 270 last = desc; in virtio_alloc_desc_chain() 278 return last; in virtio_alloc_desc_chain()
|
/lk-master/external/lib/lwip/core/ipv4/ |
A D | ip_frag.c | 683 u16_t last; in ip_frag() local 723 last = (left <= mtu - IP_HLEN); in ip_frag() 727 if (!last) { in ip_frag() 732 cop = last ? left : nfb * 8; in ip_frag() 817 if (last) { in ip_frag()
|
/lk-master/external/lib/fdt/ |
A D | fdt.c | 298 const char *last = strtab + tabsize - len; in fdt_find_string_() local 301 for (p = strtab; p <= last; p++) in fdt_find_string_()
|
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/inc/ |
A D | rom_can_15xx.h | 107 openclose, uint8_t *length, uint8_t *data, uint8_t *last);
|
/lk-master/platform/cc13xx/include/platform/ |
A D | ti-rf.h | 70 rf_queue_entry_t *last; member
|
/lk-master/arch/x86/32/ |
A D | mmu.c | 191 goto last; in x86_mmu_get_mapping() 205 last: in x86_mmu_get_mapping()
|
/lk-master/lib/console/ |
A D | console.c | 143 size_t last = ptrprev(con->history_next); in add_history() local 144 if (strcmp(line, history_line(con, last)) == 0) in add_history()
|
/lk-master/arch/x86/64/ |
A D | mmu.c | 232 goto last; in x86_mmu_get_mapping() 247 last: in x86_mmu_get_mapping()
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_i2cs_interrupt/example/ |
A D | readme.dox | 53 * 16-bit address will use the last incremented address.<br>
|
/lk-master/arch/mips/ |
A D | mips.ld | 130 end of ctors marker and it must be last */
|
/lk-master/external/platform/pico/rp2_common/pico_divider/ |
A D | divider.S | 67 // note we must read quotient last, and since it isn't the last reg, we'll not use ldmia! 106 // note we must read quotient last, and since it isn't the last reg, we'll not use ldmia!
|
/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 1166 # Note: The order of the extra style sheet files is of importance (e.g. the last 1215 # to YES can help to show when doxygen was last run and thus if the 1729 # generated LaTeX document. The footer should contain everything after the last 1743 # Note: The order of the extra style sheet files is of importance (e.g. the last
|