Home
last modified time | relevance | path

Searched refs:_t (Results 1 – 25 of 410) sorted by relevance

12345678910>>...17

/external/toybox/tests/
Dchattr.test19 _t="abcdefghijklmnopqrstuvwxyz"
21 testing "[-/+]i FILE[write]" "$IN && echo "$_t" > testFile &&
22 chattr +i testFile && lsattr testFile && echo "$_t" > testFile;
24 testing "[-/+]i FILE[re-write]" "$IN && echo "$_t" > testFile &&
25 chattr +i testFile && echo \"$_t\" > testFile || chattr -i testFile &&
26 echo \"$_t\" > testFile && lsattr testFile; rm -rf testFile; $OUT" \
28 testing "[-/+]i FILE[append]" "$IN && echo "$_t" > testFile &&
29 chattr +i testFile && echo \"$_t\" >> testFile || lsattr testFile &&
31 testing "[-/+]i FILE[move]" "$IN && echo "$_t" > testFile &&
34 testing "[-/+]i FILE[delete]" "$IN && echo "$_t" > testFile &&
[all …]
/external/libvpx/libvpx/vpx_dsp/arm/
Dloopfilter_neon.c23 uint8x##w##_t *blimit_vec, uint8x##w##_t *limit_vec, \
24 uint8x##w##_t *thresh_vec) { \
69 static INLINE uint8x##w##_t filter_hev_mask4_##w( \
70 const uint8x##w##_t limit, const uint8x##w##_t blimit, \
71 const uint8x##w##_t thresh, const uint8x##w##_t p3, \
72 const uint8x##w##_t p2, const uint8x##w##_t p1, const uint8x##w##_t p0, \
73 const uint8x##w##_t q0, const uint8x##w##_t q1, const uint8x##w##_t q2, \
74 const uint8x##w##_t q3, uint8x##w##_t *hev, uint8x##w##_t *mask) { \
75 uint8x##w##_t max, t0, t1; \
101 static INLINE uint8x##w##_t filter_flat_hev_mask_##w( \
[all …]
/external/wpa_supplicant_8/src/crypto/
Dfips_prf_internal.c20 u32 t[5], _t[5]; in fips186_2_prf() local
46 os_memcpy(_t, t, 20); in fips186_2_prf()
47 SHA1Transform(_t, xkey); in fips186_2_prf()
48 _t[0] = host_to_be32(_t[0]); in fips186_2_prf()
49 _t[1] = host_to_be32(_t[1]); in fips186_2_prf()
50 _t[2] = host_to_be32(_t[2]); in fips186_2_prf()
51 _t[3] = host_to_be32(_t[3]); in fips186_2_prf()
52 _t[4] = host_to_be32(_t[4]); in fips186_2_prf()
53 os_memcpy(xpos, _t, 20); in fips186_2_prf()
Dfips_prf_wolfssl.c39 u32 t[5], _t[5]; in fips186_2_prf() local
65 os_memcpy(_t, t, 20); in fips186_2_prf()
66 sha1_transform(_t, xkey); in fips186_2_prf()
67 WPA_PUT_BE32(xpos, _t[0]); in fips186_2_prf()
68 WPA_PUT_BE32(xpos + 4, _t[1]); in fips186_2_prf()
69 WPA_PUT_BE32(xpos + 8, _t[2]); in fips186_2_prf()
70 WPA_PUT_BE32(xpos + 12, _t[3]); in fips186_2_prf()
71 WPA_PUT_BE32(xpos + 16, _t[4]); in fips186_2_prf()
Dfips_prf_openssl.c51 u32 t[5], _t[5]; in fips186_2_prf() local
77 os_memcpy(_t, t, 20); in fips186_2_prf()
78 sha1_transform(_t, xkey); in fips186_2_prf()
79 WPA_PUT_BE32(xpos, _t[0]); in fips186_2_prf()
80 WPA_PUT_BE32(xpos + 4, _t[1]); in fips186_2_prf()
81 WPA_PUT_BE32(xpos + 8, _t[2]); in fips186_2_prf()
82 WPA_PUT_BE32(xpos + 12, _t[3]); in fips186_2_prf()
83 WPA_PUT_BE32(xpos + 16, _t[4]); in fips186_2_prf()
/external/jemalloc_new/include/jemalloc/internal/
Datomic_c11.h19 typedef _Atomic(type) atomic_##short_type##_t; \
22 atomic_load_##short_type(const atomic_##short_type##_t *a, \
29 atomic_##short_type##_t* a_nonconst = \
30 (atomic_##short_type##_t*)a; \
35 atomic_store_##short_type(atomic_##short_type##_t *a, \
41 atomic_exchange_##short_type(atomic_##short_type##_t *a, type val, \
47 atomic_compare_exchange_weak_##short_type(atomic_##short_type##_t *a, \
55 atomic_compare_exchange_strong_##short_type(atomic_##short_type##_t *a, \
71 atomic_fetch_add_##short_type(atomic_##short_type##_t *a, \
77 atomic_fetch_sub_##short_type(atomic_##short_type##_t *a, \
[all …]
Datomic_gcc_atomic.h43 } atomic_##short_type##_t; \
46 atomic_load_##short_type(const atomic_##short_type##_t *a, \
54 atomic_store_##short_type(atomic_##short_type##_t *a, type val, \
60 atomic_exchange_##short_type(atomic_##short_type##_t *a, type val, \
69 atomic_compare_exchange_weak_##short_type(atomic_##short_type##_t *a, \
78 atomic_compare_exchange_strong_##short_type(atomic_##short_type##_t *a, \
93 atomic_fetch_add_##short_type(atomic_##short_type##_t *a, type val, \
100 atomic_fetch_sub_##short_type(atomic_##short_type##_t *a, type val, \
107 atomic_fetch_and_##short_type(atomic_##short_type##_t *a, type val, \
114 atomic_fetch_or_##short_type(atomic_##short_type##_t *a, type val, \
[all …]
Datomic_msvc.h38 #define ATOMIC_INTERLOCKED_REPR(lg_size) atomic_repr_ ## lg_size ## _t
57 } atomic_##short_type##_t; \
60 atomic_load_##short_type(const atomic_##short_type##_t *a, \
70 atomic_store_##short_type(atomic_##short_type##_t *a, \
82 atomic_exchange_##short_type(atomic_##short_type##_t *a, type val, \
89 atomic_compare_exchange_weak_##short_type(atomic_##short_type##_t *a, \
108 atomic_compare_exchange_strong_##short_type(atomic_##short_type##_t *a, \
121 atomic_fetch_add_##short_type(atomic_##short_type##_t *a, \
128 atomic_fetch_sub_##short_type(atomic_##short_type##_t *a, \
140 atomic_fetch_and_##short_type(atomic_##short_type##_t *a, \
[all …]
Datomic_gcc_sync.h88 } atomic_##short_type##_t; \
91 atomic_load_##short_type(const atomic_##short_type##_t *a, \
104 atomic_store_##short_type(atomic_##short_type##_t *a, \
116 atomic_exchange_##short_type(atomic_##short_type##_t *a, type val, \
131 atomic_compare_exchange_weak_##short_type(atomic_##short_type##_t *a, \
144 atomic_compare_exchange_strong_##short_type(atomic_##short_type##_t *a, \
162 atomic_fetch_add_##short_type(atomic_##short_type##_t *a, type val, \
168 atomic_fetch_sub_##short_type(atomic_##short_type##_t *a, type val, \
174 atomic_fetch_and_##short_type(atomic_##short_type##_t *a, type val, \
180 atomic_fetch_or_##short_type(atomic_##short_type##_t *a, type val, \
[all …]
/external/libaom/libaom/aom_ports/
Dmem_ops_aligned.h50 const uint##sz##_t *mem = (const uint##sz##_t *)vmem; \
57 const int##sz##_t *mem = (const int##sz##_t *)vmem; \
64 const uint##sz##_t *mem = (const uint##sz##_t *)vmem; \
73 const int##sz##_t *mem = (const int##sz##_t *)vmem; \
82 uint##sz##_t *mem = (uint##sz##_t *)vmem; \
83 *mem = (uint##sz##_t)val; \
89 uint##sz##_t *mem = (uint##sz##_t *)vmem, raw; \
91 *mem = (uint##sz##_t)raw; \
/external/libvpx/libvpx/vpx_ports/
Dmem_ops_aligned.h49 const uint##sz##_t *mem = (const uint##sz##_t *)vmem; \
56 const int##sz##_t *mem = (const int##sz##_t *)vmem; \
63 const uint##sz##_t *mem = (const uint##sz##_t *)vmem; \
72 const int##sz##_t *mem = (const int##sz##_t *)vmem; \
81 uint##sz##_t *mem = (uint##sz##_t *)vmem; \
82 *mem = (uint##sz##_t)val; \
88 uint##sz##_t *mem = (uint##sz##_t *)vmem, raw; \
90 *mem = (uint##sz##_t)raw; \
/external/libdivsufsort/include/
Ddivsufsort.h.cmake55 typedef @SAINDEX_TYPE@ saidx@W64BIT@_t;
76 divsufsort@W64BIT@(const sauchar_t *T, saidx@W64BIT@_t *SA, saidx@W64BIT@_t n);
87 saidx@W64BIT@_t
88 divbwt@W64BIT@(const sauchar_t *T, sauchar_t *U, saidx@W64BIT@_t *A, saidx@W64BIT@_t n);
111 saidx@W64BIT@_t *SA /* can NULL */,
112 saidx@W64BIT@_t n, saidx@W64BIT@_t *idx);
126 saidx@W64BIT@_t *A /* can NULL */,
127 saidx@W64BIT@_t n, saidx@W64BIT@_t idx);
139 sufcheck@W64BIT@(const sauchar_t *T, const saidx@W64BIT@_t *SA, saidx@W64BIT@_t n, saint_t verbose);
153 saidx@W64BIT@_t
[all …]
/external/libunwind/doc/
Dlibunwind-ptrace.tex16 \Type{unw\_accessors\_t} \Var{\_UPT\_accessors};\\
18 \Type{void~*}\Func{\_UPT\_create}(\Type{pid\_t});\\
23 …nc{\_UPT\_find\_proc\_info}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{unw\_proc\_info…
25 \Type{void} \Func{\_UPT\_put\_unwind\_info}(\Type{unw\_addr\_space\_t}, \Type{unw\_proc\_info\_t~*}…
27 \Type{int} \Func{\_UPT\_get\_dyn\_info\_list\_addr}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t~…
29 …int} \Func{\_UPT\_access\_mem}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{unw\_word\_t
31 …nt} \Func{\_UPT\_access\_reg}(\Type{unw\_addr\_space\_t}, \Type{unw\_regnum\_t}, \Type{unw\_word\_…
33 …} \Func{\_UPT\_access\_fpreg}(\Type{unw\_addr\_space\_t}, \Type{unw\_regnum\_t}, \Type{unw\_fpreg\
35 …et\_proc\_name}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{char~*}, \Type{size\_t}, \T…
37 \Type{int} \Func{\_UPT\_resume}(\Type{unw\_addr\_space\_t}, \Type{unw\_cursor\_t~*}, \Type{void~*})…
Dunw_create_addr_space.tex15 \Type{unw\_addr\_space\_t} \Func{unw\_create\_addr\_space}(\Type{unw\_accessors\_t~*}\Var{ap}, \Typ…
36 variable of type \Type{unw\_accessors\_t}. The contents of this
54 \Type{int} \Func{find\_proc\_info}(\Type{unw\_addr\_space\_t} \Var{as},\\
55 …SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\Type{unw\_word\_t} \Var{ip}, \Type{unw\_proc\_info\_t~*}…
57 \Type{void} \Func{put\_unwind\_info}(\Type{unw\_addr\_space\_t} \Var{as},\\
58 \SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\Type{unw\_proc\_info\_t~*}pip, \Type{void~*}\Var{a…
59 \Type{int} \Func{get\_dyn\_info\_list\_addr}(\Type{unw\_addr\_space\_t} \Var{as},\\
60 \SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\Type{unw\_word\_t~*}\Var{dilap}, \Type{void~*}\Var…
61 \Type{int} \Func{access\_mem}(\Var{unw\_addr\_space\_t} \Var{as},\\
62 \SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\Type{unw\_word\_t} \Var{addr}, \Type{unw\_word\_t~…
[all …]
Dlibunwind.tex16 \Type{int} \Func{unw\_getcontext}(\Type{unw\_context\_t~*});\\
18 \Type{int} \Func{unw\_init\_local}(\Type{unw\_cursor\_t~*}, \Type{unw\_context\_t~*});\\
20 \Type{int} \Func{unw\_init\_remote}(\Type{unw\_cursor\_t~*}, \Type{unw\_addr\_space\_t}, \Type{void…
22 \Type{int} \Func{unw\_step}(\Type{unw\_cursor\_t~*});\\
24 \Type{int} \Func{unw\_get\_reg}(\Type{unw\_cursor\_t~*}, \Type{unw\_regnum\_t}, \Type{unw\_word\_t~…
26 \Type{int} \Func{unw\_get\_fpreg}(\Type{unw\_cursor\_t~*}, \Type{unw\_regnum\_t}, \Type{unw\_fpreg\
28 \Type{int} \Func{unw\_set\_reg}(\Type{unw\_cursor\_t~*}, \Type{unw\_regnum\_t}, \Type{unw\_word\_t}…
30 \Type{int} \Func{unw\_set\_fpreg}(\Type{unw\_cursor\_t~*}, \Type{unw\_regnum\_t}, \Type{unw\_fpreg\
32 \Type{int} \Func{unw\_resume}(\Type{unw\_cursor\_t~*});\\
35 \Type{unw\_addr\_space\_t} \Var{unw\_local\_addr\_space};\\
[all …]
Dlibunwind-dynamic.tex87 procedure by setting up a structure of type \Type{unw\_dyn\_info\_t}
90 \Type{unw\_dyn\_info\_t} structure are described below:
96 \item[\Type{unw\_word\_t} \Var{start\_ip}] The start-address of the
99 \item[\Type{unw\_word\_t} \Var{end\_ip}] The end-address of the
103 \item[\Type{unw\_word\_t} \Var{gp}] The global-pointer value in use
107 \item[\Type{int32\_t} \Var{format}] The format of the unwind-info.
114 \item[\Type{unw\_dyn\_proc\_info\_t} \Var{pi}] This member is used
116 \item[\Type{unw\_dyn\_table\_info\_t} \Var{ti}] This member is used
118 \item[\Type{unw\_dyn\_remote\_table\_info\_t} \Var{rti}] This member
129 \Type{unw\_dyn\_proc\_info\_t}. This structure contains the following
[all …]
/external/libopus/tests/
Dtest_opus_common.h28 static OPUS_INLINE void deb2_impl(unsigned char *_t,unsigned char **_p,int _k,int _x,int _y) in deb2_impl() argument
32 if(_y<3)for(i=0;i<_y;i++)*(--*_p)=_t[i+1]; in deb2_impl()
34 _t[_x]=_t[_x-_y]; in deb2_impl()
35 deb2_impl(_t,_p,_k,_x+1,_y); in deb2_impl()
36 for(i=_t[_x-_y]+1;i<_k;i++){ in deb2_impl()
37 _t[_x]=i; in deb2_impl()
38 deb2_impl(_t,_p,_k,_x+1,_x); in deb2_impl()
/external/libcxx/test/std/utilities/meta/meta.help/
Dbool_constant.pass.cpp22 typedef std::bool_constant<true> _t; in main() typedef
23 static_assert(_t::value, ""); in main()
24 static_assert((std::is_same<_t::value_type, bool>::value), ""); in main()
25 static_assert((std::is_same<_t::type, _t>::value), ""); in main()
26 static_assert((_t() == true), ""); in main()
/external/tremolo/Tremolo/
Dmisc.h157 #define XPROD32(_a, _b, _t, _v, _x, _y) \ argument
158 { *(_x)=MULT32(_a,_t)+MULT32(_b,_v); \
159 *(_y)=MULT32(_b,_t)-MULT32(_a,_v); }
160 #define XPROD31(_a, _b, _t, _v, _x, _y) \ argument
161 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \
162 *(_y)=MULT31(_b,_t)-MULT31(_a,_v); }
163 #define XNPROD31(_a, _b, _t, _v, _x, _y) \ argument
164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
165 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
/external/harfbuzz_ng/src/
Dhb-gobject-structs.cc70 static hb_##name##_t *_hb_##name##_reference (const hb_##name##_t *l) \
72 hb_##name##_t *c = (hb_##name##_t *) calloc (1, sizeof (hb_##name##_t)); \
77 static void _hb_##name##_destroy (hb_##name##_t *l) { free (l); } \
Dhb-shaper.hh80 HB_SHAPER_DATA_CREATE_FUNC (shaper, object) (hb_##object##_t *object); \
85 struct hb_shaper_object_data_type_t<HB_SHAPER_ORDER (shaper), hb_##object##_t> \
91 struct hb_shaper_lazy_loader_t<hb_##object##_t, WheresData, HB_SHAPER_DATA_TYPE(shaper, object)> \
93 hb_shaper_lazy_loader_t<hb_##object##_t, \
96 hb_##object##_t, WheresData> \
99 static Type* create (hb_##object##_t *data) \
/external/u-boot/arch/riscv/include/asm/
Dsetup.h152 #define tag_next(_t) \ argument
153 typeof(_t) (t) = (_t); \
157 #define for_each_tag(_t, base) \ argument
158 typeof(_t) (t) = (_t); \
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/ARM/
Dmacho-v7m.test5 .thumb_func _t
6 _t:
10 b _t
14 @ CHECK: b _t
/external/llvm/test/tools/llvm-objdump/ARM/
Dmacho-v7m.test5 .thumb_func _t
6 _t:
10 b _t
14 @ CHECK: b _t
/external/strace/
Dmpers_test.sh102 int${size}_t sl;
107 uint${size}_t ul;
108 int${size}_t asl[3][5][7];
116 int${size}_t sl;
117 uint${size}_t ul;

12345678910>>...17