Home
last modified time | relevance | path

Searched refs:p (Results 1 – 11 of 11) sorted by relevance

/hal_ti-latest/simplelink/source/ti/devices/cc13x2x7_cc26x2x7/driverlib/
Dsw_ecrypt-portable.h164 #define U8TO16_LITTLE(p) U16TO16_LITTLE(((u16*)(p))[0]) argument
165 #define U8TO32_LITTLE(p) U32TO32_LITTLE(((u32*)(p))[0]) argument
166 #define U8TO64_LITTLE(p) U64TO64_LITTLE(((u64*)(p))[0]) argument
168 #define U8TO16_BIG(p) U16TO16_BIG(((u16*)(p))[0]) argument
169 #define U8TO32_BIG(p) U32TO32_BIG(((u32*)(p))[0]) argument
170 #define U8TO64_BIG(p) U64TO64_BIG(((u64*)(p))[0]) argument
172 #define U16TO8_LITTLE(p, v) (((u16*)(p))[0] = U16TO16_LITTLE(v)) argument
173 #define U32TO8_LITTLE(p, v) (((u32*)(p))[0] = U32TO32_LITTLE(v)) argument
174 #define U64TO8_LITTLE(p, v) (((u64*)(p))[0] = U64TO64_LITTLE(v)) argument
176 #define U16TO8_BIG(p, v) (((u16*)(p))[0] = U16TO16_BIG(v)) argument
[all …]
Dsw_poly1305-donna-32.h30 U8TO32(const unsigned char *p) { in U8TO32() argument
32 (((unsigned long)(p[0] & 0xff) ) | in U8TO32()
33 ((unsigned long)(p[1] & 0xff) << 8) | in U8TO32()
34 ((unsigned long)(p[2] & 0xff) << 16) | in U8TO32()
35 ((unsigned long)(p[3] & 0xff) << 24)); in U8TO32()
40 U32TO8(unsigned char *p, unsigned long v) { in U32TO8() argument
41 p[0] = (v ) & 0xff; in U32TO8()
42 p[1] = (v >> 8) & 0xff; in U32TO8()
43 p[2] = (v >> 16) & 0xff; in U32TO8()
44 p[3] = (v >> 24) & 0xff; in U32TO8()
/hal_ti-latest/simplelink_lpf3/source/ti/devices/cc23x0r5/driverlib/
Dsw_ecrypt-portable.h154 #define U8TO16_LITTLE(p) U16TO16_LITTLE(((u16 *)(p))[0]) argument
155 #define U8TO32_LITTLE(p) U32TO32_LITTLE(((u32 *)(p))[0]) argument
156 #define U8TO64_LITTLE(p) U64TO64_LITTLE(((u64 *)(p))[0]) argument
158 #define U8TO16_BIG(p) U16TO16_BIG(((u16 *)(p))[0]) argument
159 #define U8TO32_BIG(p) U32TO32_BIG(((u32 *)(p))[0]) argument
160 #define U8TO64_BIG(p) U64TO64_BIG(((u64 *)(p))[0]) argument
162 #define U16TO8_LITTLE(p, v) (((u16 *)(p))[0] = U16TO16_LITTLE(v)) argument
163 #define U32TO8_LITTLE(p, v) (((u32 *)(p))[0] = U32TO32_LITTLE(v)) argument
164 #define U64TO8_LITTLE(p, v) (((u64 *)(p))[0] = U64TO64_LITTLE(v)) argument
166 #define U16TO8_BIG(p, v) (((u16 *)(p))[0] = U16TO16_BIG(v)) argument
[all …]
Dhapi.h126 #define HapiEnterStandby(p) HAPI_TABLE_POINTER->enterStandby((p)) argument
141 #define HapiCrc32(p, n) HAPI_TABLE_POINTER->crc32((p), (n)) argument
169 #define HapiApplyCopyList(p) HAPI_TABLE_POINTER->applyCopyList((p)) argument
197 #define HapiFlashSectorErase(k, p) HAPI_TABLE_POINTER->flashSectorErase((k), (p)) argument
302 #define HapiSecdedEncode(p, d, n) HAPI_TABLE_POINTER->secdedEncode((p), (d), (n)) argument
320 #define HapiSecdedDecode(d, p, n) HAPI_TABLE_POINTER->secdedDecode((d), (p), (n)) argument
Dsw_poly1305-donna-32.h30 static unsigned long U8TO32(const unsigned char *p) in U8TO32() argument
32 return (((unsigned long)(p[0] & 0xff)) | ((unsigned long)(p[1] & 0xff) << 8) | in U8TO32()
33 ((unsigned long)(p[2] & 0xff) << 16) | ((unsigned long)(p[3] & 0xff) << 24)); in U8TO32()
37 static void U32TO8(unsigned char *p, unsigned long v) in U32TO8() argument
39 p[0] = (v)&0xff; in U32TO8()
40 p[1] = (v >> 8) & 0xff; in U32TO8()
41 p[2] = (v >> 16) & 0xff; in U32TO8()
42 p[3] = (v >> 24) & 0xff; in U32TO8()
/hal_ti-latest/simplelink/source/ti/devices/cc13x2_cc26x2/driverlib/
Dsw_ecrypt-portable.h166 #define U8TO16_LITTLE(p) U16TO16_LITTLE(((u16*)(p))[0]) argument
167 #define U8TO32_LITTLE(p) U32TO32_LITTLE(((u32*)(p))[0]) argument
168 #define U8TO64_LITTLE(p) U64TO64_LITTLE(((u64*)(p))[0]) argument
170 #define U8TO16_BIG(p) U16TO16_BIG(((u16*)(p))[0]) argument
171 #define U8TO32_BIG(p) U32TO32_BIG(((u32*)(p))[0]) argument
172 #define U8TO64_BIG(p) U64TO64_BIG(((u64*)(p))[0]) argument
174 #define U16TO8_LITTLE(p, v) (((u16*)(p))[0] = U16TO16_LITTLE(v)) argument
175 #define U32TO8_LITTLE(p, v) (((u32*)(p))[0] = U32TO32_LITTLE(v)) argument
176 #define U64TO8_LITTLE(p, v) (((u64*)(p))[0] = U64TO64_LITTLE(v)) argument
178 #define U16TO8_BIG(p, v) (((u16*)(p))[0] = U16TO16_BIG(v)) argument
[all …]
Dsw_poly1305-donna-32.h32 U8TO32(const unsigned char *p) { in U8TO32() argument
34 (((unsigned long)(p[0] & 0xff) ) | in U8TO32()
35 ((unsigned long)(p[1] & 0xff) << 8) | in U8TO32()
36 ((unsigned long)(p[2] & 0xff) << 16) | in U8TO32()
37 ((unsigned long)(p[3] & 0xff) << 24)); in U8TO32()
42 U32TO8(unsigned char *p, unsigned long v) { in U32TO8() argument
43 p[0] = (v ) & 0xff; in U32TO8()
44 p[1] = (v >> 8) & 0xff; in U32TO8()
45 p[2] = (v >> 16) & 0xff; in U32TO8()
46 p[3] = (v >> 24) & 0xff; in U32TO8()
/hal_ti-latest/simplelink/source/ti/net/
Dslnetutils.c832 int8_t *p = (int8_t *)&i; in SlNetUtil_htonl() local
835 if (p[0] == 1) /* little endian */ in SlNetUtil_htonl()
838 p[0] = ((int8_t *)&val)[3]; in SlNetUtil_htonl()
839 p[1] = ((int8_t *)&val)[2]; in SlNetUtil_htonl()
840 p[2] = ((int8_t *)&val)[1]; in SlNetUtil_htonl()
841 p[3] = ((int8_t *)&val)[0]; in SlNetUtil_htonl()
876 int8_t *p = (int8_t *)&i; in SlNetUtil_htons() local
879 if (p[0] == 1) /* little endian */ in SlNetUtil_htons()
882 p[0] = ((int8_t *)&val)[1]; in SlNetUtil_htons()
883 p[1] = ((int8_t *)&val)[0]; in SlNetUtil_htons()
/hal_ti-latest/simplelink/source/ti/drivers/net/wifi/source/
Dsl_socket.c809 _i8 *p = (_i8 *)&i; in sl_Htonl() local
810 if (p[0] == 1) /* little endian */ in sl_Htonl()
812 p[0] = ((_i8* )&val)[3]; in sl_Htonl()
813 p[1] = ((_i8* )&val)[2]; in sl_Htonl()
814 p[2] = ((_i8* )&val)[1]; in sl_Htonl()
815 p[3] = ((_i8* )&val)[0]; in sl_Htonl()
830 _i8 *p = (_i8 *)&i; in sl_Htons() local
831 if (p[0] == 1) /* little endian */ in sl_Htons()
833 p[0] = ((_i8* )&val)[1]; in sl_Htons()
834 p[1] = ((_i8* )&val)[0]; in sl_Htons()
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/cryptoutils/utils/
DCryptoUtils.c180 volatile uint8_t *volatile p = (volatile uint8_t *)dest; in CryptoUtils_memset() local
184 *p++ = val; in CryptoUtils_memset()
/hal_ti-latest/simplelink/source/ti/drivers/net/wifi/
Dnetapp.h559 …_u32 p; /* Number of repetitions. Default value is 1 … member