Home
last modified time | relevance | path

Searched refs:addr_bytes (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/sys/dev/nand/
H A Dnfc_fsl.c99 u_int addr_bytes; member
385 addr_bits <<= fcm->addr_bytes * 8; in fsl_nfc_send_address()
387 fcm->addr_bytes++; in fsl_nfc_send_address()
388 if (fcm->addr_bytes < sc->row_cycles) in fsl_nfc_send_address()
391 if (fcm->addr_bytes < sc->col_cycles) { in fsl_nfc_send_address()
392 addr_bits <<= fcm->addr_bytes * 8; in fsl_nfc_send_address()
395 addr_bits <<= (fcm->addr_bytes - sc->col_cycles) * 8; in fsl_nfc_send_address()
398 fcm->addr_bytes++; in fsl_nfc_send_address()
399 if (fcm->addr_bytes < (sc->row_cycles + sc->col_cycles)) in fsl_nfc_send_address()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DDWARFExpression.cpp1589 uint8_t addr_bytes[sizeof(lldb::addr_t)]; in Evaluate() local
1591 if (process->ReadMemory(pointer_addr, &addr_bytes, size, error) == in Evaluate()
1593 DataExtractor addr_data(addr_bytes, sizeof(addr_bytes), in Evaluate()