Lines Matching refs:t
57 size_t t; in memcpy_gc() local
65 #define TLOOP(s) if (t) TLOOP1(s) in memcpy_gc()
66 #define TLOOP1(s) do { s; } while (--t) in memcpy_gc()
72 t = (uintptr_t)src; /* only need low bits */ in memcpy_gc()
73 if ((t | (uintptr_t)dst) & wmask) { in memcpy_gc()
78 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) in memcpy_gc()
79 t = length; in memcpy_gc()
81 t = wsize - (t & wmask); in memcpy_gc()
82 length -= t; in memcpy_gc()
88 t = length / wsize; in memcpy_gc()
91 t = length & wmask; in memcpy_gc()
101 t = (uintptr_t)src; in memcpy_gc()
102 if ((t | (uintptr_t)dst) & wmask) { in memcpy_gc()
103 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize) in memcpy_gc()
104 t = length; in memcpy_gc()
106 t &= wmask; in memcpy_gc()
107 length -= t; in memcpy_gc()
110 t = length / wsize; in memcpy_gc()
113 t = length & wmask; in memcpy_gc()