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

1 2 3 4 5 6 7 8 9

  /external/toybox/tests/
lsattr.test 12 _t="abcdefghijklmnopqrstuvwxyz"
14 testing "chattr [-/+]i FILE[write]" "$IN && echo "$_t" > testFile &&
15 chattr +i testFile && lsattr testFile && echo "$_t" > testFile;
17 testing "chattr [-/+]i FILE[re-write]" "$IN && echo "$_t" > testFile &&
18 chattr +i testFile && echo \"$_t\" > testFile || chattr -i testFile &&
19 echo \"$_t\" > testFile && lsattr testFile; rm -rf testFile; $OUT" \
21 testing "chattr [-/+]i FILE[append]" "$IN && echo "$_t" > testFile &&
22 chattr +i testFile && echo \"$_t\" >> testFile || lsattr testFile &&
24 testing "chattr [-/+]i FILE[move]" "$IN && echo "$_t" > testFile &&
27 testing "chattr [-/+]i FILE[delete]" "$IN && echo "$_t" > testFile &&
    [all...]
  /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 51 u32 t[5], _t[5]; local
77 os_memcpy(_t, t, 20);
78 sha1_transform(_t, xkey);
79 _t[0] = host_to_be32(_t[0]);
80 _t[1] = host_to_be32(_t[1]);
81 _t[2] = host_to_be32(_t[2]);
82 _t[3] = host_to_be32(_t[3])
    [all...]
  /external/libcxx/test/std/utilities/meta/meta.hel/
bool_constant.pass.cpp 20 typedef std::bool_constant<true> _t; typedef
21 static_assert(_t::value, "");
22 static_assert((std::is_same<_t::value_type, bool>::value), "");
23 static_assert((std::is_same<_t::type, _t>::value), "");
24 static_assert((_t() == true), "");
  /external/libdivsufsort/include/
divsufsort.h.cmake 53 #ifndef SAIDX@W64BIT@_T
54 #define SAIDX@W64BIT@_T
55 typedef @SAINDEX_TYPE@ saidx@W64BIT@_t;
56 #endif /* SAIDX@W64BIT@_T */
60 #ifndef PRIdSAIDX@W64BIT@_T
61 #define PRIdSAIDX@W64BIT@_T @SAINDEX_PRId@
62 #endif /* PRIdSAIDX@W64BIT@_T */
76 divsufsort@W64BIT@(const sauchar_t *T, saidx@W64BIT@_t *SA, saidx@W64BIT@_t n);
87 saidx@W64BIT@_t
    [all...]
  /external/clang/test/Sema/
inline-asm-validate.c 6 __asm__ __volatile__( "stxr %w[_t], %[_r], [%[_p]]" : [_t] "=&r" (t) : [_p] "p" (p), [_r] "r" (r) : "memory"); // expected-warning{{value size does not match register size specified by the constraint and modifier}} expected-note {{use constraint modifier "w"}}
  /external/libopus/tests/
test_opus_common.h 28 static OPUS_INLINE void deb2_impl(unsigned char *_t,unsigned char **_p,int _k,int _x,int _y)
32 if(_y<3)for(i=0;i<_y;i++)*(--*_p)=_t[i+1];
34 _t[_x]=_t[_x-_y];
35 deb2_impl(_t,_p,_k,_x+1,_y);
36 for(i=_t[_x-_y]+1;i<_k;i++){
37 _t[_x]=i;
38 deb2_impl(_t,_p,_k,_x+1,_x);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
trivial_singleton.hpp 54 template class unit_test::singleton< BOOST_JOIN( inst, _t ) > ; \
55 namespace { BOOST_JOIN( inst, _t)& inst = BOOST_JOIN( inst, _t)::instance(); }
59 static BOOST_JOIN( inst, _t)& inst = BOOST_JOIN (inst, _t)::instance();
64 namespace { BOOST_JOIN( inst, _t)& inst = BOOST_JOIN( inst, _t)::instance(); }
  /external/harfbuzz_ng/src/
hb-gobject-structs.cc 46 GType id = g_boxed_type_register_static (g_intern_static_string ("hb_" #name "_t"), \
58 static hb_##name##_t *_hb_##name##_reference (const hb_##name##_t *l) \
60 hb_##name##_t *c = (hb_##name##_t *) calloc (1, sizeof (hb_##name##_t)); \
65 static void _hb_##name##_destroy (hb_##name##_t *l) { free (l); } \
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
basic_parameter.hpp 64 inline shared_ptr<param_type ## _t<T> > \
67 return shared_ptr<param_type ## _t<T> >( new param_type ## _t<T>( name ) ); \
70 inline shared_ptr<param_type ## _t<cstring> > \
73 return shared_ptr<param_type ## _t<cstring> >( new param_type ## _t<cstring>( name ) ); \
  /external/strace/
mpers_test.sh 84 typedef uint${size}_t mpers_ptr_t;
96 int${size}_t sl;
101 uint${size}_t ul;
102 int${size}_t asl[3];
110 int${size}_t sl;
111 uint${size}_t ul;
  /external/elfutils/libasm/
asm_adduint8.c 45 #define _UTYPE(size) uint##size##_t
47 #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...]
  /development/ndk/platforms/android-21/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...]
  /development/ndk/platforms/android-3/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...]
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/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...]
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/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...]
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/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...]
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/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...]
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/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...]
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/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...]
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/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...]
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/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...]
  /prebuilts/ndk/current/platforms/android-14/arch-x86/usr/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...]
  /prebuilts/ndk/current/platforms/android-15/arch-arm/usr/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...]

Completed in 1208 milliseconds

1 2 3 4 5 6 7 8 9