Searched refs:func (Results 1 – 3 of 3) sorted by relevance
30 static uint16_t type1_read_byte(uint8_t bus, uint8_t slot, uint8_t func, uint8_t offset) { in type1_read_byte() argument33 (func << 8) | (offset & 0xfc) | ((uint32_t)0x80000000)); in type1_read_byte()43 static uint16_t type1_read_half(uint8_t bus, uint8_t slot, uint8_t func, uint8_t offset) { in type1_read_half() argument46 (func << 8) | (offset & 0xfc) | ((uint32_t)0x80000000)); in type1_read_half()57 static uint32_t type1_read_word(uint8_t bus, uint8_t slot, uint8_t func, uint8_t offset) { in type1_read_word() argument60 (func << 8) | (offset & 0xfc) | ((uint32_t)0x80000000)); in type1_read_word()
45 status_t for_every_device(F func);62 inline status_t bus::for_every_device(F func) { in for_every_device() argument67 err = func(d); in for_every_device()
46 status_t for_every_device_on_every_bus(F func) { in for_every_device_on_every_bus() argument51 err = b->for_every_device(func); in for_every_device_on_every_bus()60 status_t for_every_bus(F func) { in for_every_bus() argument65 err = func(b); in for_every_bus()
Completed in 11 milliseconds