HomeSort by relevance Sort by last modified time
    Searched refs:_t (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/wpa_supplicant_8/src/crypto/
fips_prf_internal.c 20 u32 t[5], _t[5]; local
46 os_memcpy(_t, t, 20);
47 SHA1Transform(_t, xkey);
48 _t[0] = host_to_be32(_t[0]);
49 _t[1] = host_to_be32(_t[1]);
50 _t[2] = host_to_be32(_t[2]);
51 _t[3] = host_to_be32(_t[3])
    [all...]
fips_prf_openssl.c 29 u32 t[5], _t[5]; local
55 os_memcpy(_t, t, 20);
56 sha1_transform((u8 *) _t, xkey);
57 _t[0] = host_to_be32(_t[0]);
58 _t[1] = host_to_be32(_t[1]);
59 _t[2] = host_to_be32(_t[2]);
60 _t[3] = host_to_be32(_t[3])
    [all...]
  /external/elfutils/libasm/
asm_adduint8.c 42 #define _UTYPE(size) uint##size##_t
44 #define _TYPE(size) int##size##_t
  /bionic/libc/include/netinet/
ip6.h 283 struct mbuf *_t; \
288 _t = m_pulldown((m), (off), (len), &_tmp); \
289 if (_t) { \
290 if (_t->m_len < _tmp + (len)) \
292 (val) = (typ)(mtod(_t, char *) + _tmp); \
302 struct mbuf *_t; \
306 _t = m_pulldown((m), (off), (len), NULL); \
307 if (_t) { \
308 if (_t->m_len < (len)) \
310 (val) = (typ)mtod(_t, void *);
    [all...]