HomeSort by: relevance | last modified time | path
    Searched defs:statlen (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/evbarm/stand/boot2440/
dev_sdmmc.c 1363 const int statlen = 64; local in function:sdmmc_mem_sd_switch
1375 ptr = alloc(statlen);
1381 cmd.c_datalen = statlen;
1382 cmd.c_blklen = statlen;
1390 memcpy(status, ptr, statlen);
1395 dealloc(ptr, statlen);
  /src/sys/dev/sdmmc/
sdmmc_mem.c 1864 const int statlen = 64; local in function:sdmmc_mem_sd_switch
1877 error = bus_dmamem_alloc(sc->sc_dmat, statlen, PAGE_SIZE, 0, ds,
1881 error = bus_dmamem_map(sc->sc_dmat, ds, 1, statlen, &ptr,
1885 error = bus_dmamap_load(sc->sc_dmat, sc->sc_dmap, ptr, statlen,
1890 bus_dmamap_sync(sc->sc_dmat, sc->sc_dmap, 0, statlen,
1893 ptr = malloc(statlen, M_DEVBUF, M_NOWAIT | M_ZERO);
1900 cmd.c_datalen = statlen;
1901 cmd.c_blklen = statlen;
1912 bus_dmamap_sync(sc->sc_dmat, sc->sc_dmap, 0, statlen,
1915 memcpy(status, ptr, statlen);
    [all...]

Completed in 14 milliseconds