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

  /src/sys/arch/i386/include/
param.h 66 #define ALIGNED_POINTER_LOAD(q,p,t) memcpy((q), (p), sizeof(t))
  /src/sys/arch/amd64/include/
param.h 26 #define ALIGNED_POINTER_LOAD(q,p,t) memcpy((q), (p), sizeof(t))
  /src/sys/sys/
param.h 267 * using ALIGNED_POINTER_LOAD. This does not reflect the optimal
275 * ALIGNED_POINTER_LOAD(&t, p, uint32_t);
291 #ifndef ALIGNED_POINTER_LOAD
292 #define ALIGNED_POINTER_LOAD(q,p,t) (*(q) = *((const t *)(p)))

Completed in 38 milliseconds