Home | History | Annotate | Download | only in BusTxn

Lines Matching refs:Dest

84  *              - handle case of dest(wlan hardware) address ends with 0x2 - read 32 from 0x0, set only high short
85 * - now the dest(wlan hardware) address is long address
96 * - copy buffer as stream of 16 bits (in case of dest address ends with 0x2)
280 static void whal_hwAccess_DirectCopy_new(HwAccess_T_new *pHwAccess, UINT8* Dest, UINT8* Src, UINT32 Len);
2304 * Dest Destination address
2312 static void whal_hwAccess_DirectCopy_new(HwAccess_T_new *pHwAccess, UINT8* Dest, UINT8* Src, UINT32 Len)
2317 /* first see if dest addr is 4 bytes
2321 if(((UINT32)Dest & 0x00000001))
2328 if(((UINT32)Dest & 0x00000002))
2330 register volatile unsigned short *shortDest = (volatile unsigned short *)Dest;
2351 os_memoryCopy(pHwAccess->hOs, (void*)Dest, (void*)Src, Len1);
2356 volatile unsigned short *shortDest = ((unsigned short *)Dest) + ShortSize;
2366 os_memoryCopy(pHwAccess->hOs, (void*)Dest, (void*)Src, Len);