Home
last modified time | relevance | path

Searched refs:P (Results 1 – 25 of 1561) sorted by relevance

12345678910>>...63

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dstor-layout.h69 #define make_signed_fract_type(P) make_fract_type (P, 0, 0) argument
70 #define make_unsigned_fract_type(P) make_fract_type (P, 1, 0) argument
71 #define make_sat_signed_fract_type(P) make_fract_type (P, 0, 1) argument
72 #define make_sat_unsigned_fract_type(P) make_fract_type (P, 1, 1) argument
73 #define make_signed_accum_type(P) make_accum_type (P, 0, 0) argument
74 #define make_unsigned_accum_type(P) make_accum_type (P, 1, 0) argument
75 #define make_sat_signed_accum_type(P) make_accum_type (P, 0, 1) argument
76 #define make_sat_unsigned_accum_type(P) make_accum_type (P, 1, 1) argument
78 #define make_or_reuse_signed_fract_type(P) \ argument
79 make_or_reuse_fract_type (P, 0, 0)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dstor-layout.h69 #define make_signed_fract_type(P) make_fract_type (P, 0, 0) argument
70 #define make_unsigned_fract_type(P) make_fract_type (P, 1, 0) argument
71 #define make_sat_signed_fract_type(P) make_fract_type (P, 0, 1) argument
72 #define make_sat_unsigned_fract_type(P) make_fract_type (P, 1, 1) argument
73 #define make_signed_accum_type(P) make_accum_type (P, 0, 0) argument
74 #define make_unsigned_accum_type(P) make_accum_type (P, 1, 0) argument
75 #define make_sat_signed_accum_type(P) make_accum_type (P, 0, 1) argument
76 #define make_sat_unsigned_accum_type(P) make_accum_type (P, 1, 1) argument
78 #define make_or_reuse_signed_fract_type(P) \ argument
79 make_or_reuse_fract_type (P, 0, 0)
[all …]
/OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/
H A Dhash_md5.c107 #define P(a,b,c,d,k,s,t) \ in mbedtls_md5_process() macro
119 P( A, B, C, D, 0, 7, 0xD76AA478 ); in mbedtls_md5_process()
120 P( D, A, B, C, 1, 12, 0xE8C7B756 ); in mbedtls_md5_process()
121 P( C, D, A, B, 2, 17, 0x242070DB ); in mbedtls_md5_process()
122 P( B, C, D, A, 3, 22, 0xC1BDCEEE ); in mbedtls_md5_process()
123 P( A, B, C, D, 4, 7, 0xF57C0FAF ); in mbedtls_md5_process()
124 P( D, A, B, C, 5, 12, 0x4787C62A ); in mbedtls_md5_process()
125 P( C, D, A, B, 6, 17, 0xA8304613 ); in mbedtls_md5_process()
126 P( B, C, D, A, 7, 22, 0xFD469501 ); in mbedtls_md5_process()
127 P( A, B, C, D, 8, 7, 0x698098D8 ); in mbedtls_md5_process()
[all …]
H A Dhash_sha1.c115 #define P(a,b,c,d,e,x) \ in mbedtls_sha1_process() macro
129 P( A, B, C, D, E, W[0] ); in mbedtls_sha1_process()
130 P( E, A, B, C, D, W[1] ); in mbedtls_sha1_process()
131 P( D, E, A, B, C, W[2] ); in mbedtls_sha1_process()
132 P( C, D, E, A, B, W[3] ); in mbedtls_sha1_process()
133 P( B, C, D, E, A, W[4] ); in mbedtls_sha1_process()
134 P( A, B, C, D, E, W[5] ); in mbedtls_sha1_process()
135 P( E, A, B, C, D, W[6] ); in mbedtls_sha1_process()
136 P( D, E, A, B, C, W[7] ); in mbedtls_sha1_process()
137 P( C, D, E, A, B, W[8] ); in mbedtls_sha1_process()
[all …]
H A Decp.c331 mbedtls_mpi_free( &grp->P ); in mbedtls_ecp_group_free()
364 int mbedtls_ecp_copy( mbedtls_ecp_point *P, const mbedtls_ecp_point *Q ) in mbedtls_ecp_copy() argument
368 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->X, &Q->X ) ); in mbedtls_ecp_copy()
369 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->Y, &Q->Y ) ); in mbedtls_ecp_copy()
370 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &P->Z, &Q->Z ) ); in mbedtls_ecp_copy()
410 int mbedtls_ecp_point_cmp( const mbedtls_ecp_point *P, in mbedtls_ecp_point_cmp() argument
413 if( mbedtls_mpi_cmp_mpi( &P->X, &Q->X ) == 0 && in mbedtls_ecp_point_cmp()
414 mbedtls_mpi_cmp_mpi( &P->Y, &Q->Y ) == 0 && in mbedtls_ecp_point_cmp()
415 mbedtls_mpi_cmp_mpi( &P->Z, &Q->Z ) == 0 ) in mbedtls_ecp_point_cmp()
426 int mbedtls_ecp_point_read_string( mbedtls_ecp_point *P, int radix, in mbedtls_ecp_point_read_string() argument
[all …]
/OK3568_Linux_fs/u-boot/lib/
H A Dsha1.c107 #define P(a,b,c,d,e,x) { \ in sha1_process_one() macro
120 P (A, B, C, D, E, W[0]); in sha1_process_one()
121 P (E, A, B, C, D, W[1]); in sha1_process_one()
122 P (D, E, A, B, C, W[2]); in sha1_process_one()
123 P (C, D, E, A, B, W[3]); in sha1_process_one()
124 P (B, C, D, E, A, W[4]); in sha1_process_one()
125 P (A, B, C, D, E, W[5]); in sha1_process_one()
126 P (E, A, B, C, D, W[6]); in sha1_process_one()
127 P (D, E, A, B, C, W[7]); in sha1_process_one()
128 P (C, D, E, A, B, W[8]); in sha1_process_one()
[all …]
H A Dsha256.c107 #define P(a,b,c,d,e,f,g,h,x,K) { \ in sha256_process_one() macro
122 P(A, B, C, D, E, F, G, H, W[0], 0x428A2F98); in sha256_process_one()
123 P(H, A, B, C, D, E, F, G, W[1], 0x71374491); in sha256_process_one()
124 P(G, H, A, B, C, D, E, F, W[2], 0xB5C0FBCF); in sha256_process_one()
125 P(F, G, H, A, B, C, D, E, W[3], 0xE9B5DBA5); in sha256_process_one()
126 P(E, F, G, H, A, B, C, D, W[4], 0x3956C25B); in sha256_process_one()
127 P(D, E, F, G, H, A, B, C, W[5], 0x59F111F1); in sha256_process_one()
128 P(C, D, E, F, G, H, A, B, W[6], 0x923F82A4); in sha256_process_one()
129 P(B, C, D, E, F, G, H, A, W[7], 0xAB1C5ED5); in sha256_process_one()
130 P(A, B, C, D, E, F, G, H, W[8], 0xD807AA98); in sha256_process_one()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/
H A Dinserter_algorithm.hpp41 BOOST_MPL_PP_DEFAULT_PARAMS(arity, typename P, na) \
44 : aux::name##_impl<BOOST_MPL_PP_PARAMS(arity, P)> \
49 BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), typename P) \
51 struct name< BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), P),na > \
54 BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), P) \
58 BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), P) \
66 BOOST_MPL_PP_DEFAULT_PARAMS(arity, typename P, na) \
69 : aux::reverse_##name##_impl<BOOST_MPL_PP_PARAMS(arity, P)> \
74 BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), typename P) \
76 struct reverse_##name< BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), P),na > \
[all …]
/OK3568_Linux_fs/kernel/scripts/
H A Dresource_tool.c91 #define P(a,b,c,d,e,x) { \ in sha1_process() macro
104 P (A, B, C, D, E, W[0]); in sha1_process()
105 P (E, A, B, C, D, W[1]); in sha1_process()
106 P (D, E, A, B, C, W[2]); in sha1_process()
107 P (C, D, E, A, B, W[3]); in sha1_process()
108 P (B, C, D, E, A, W[4]); in sha1_process()
109 P (A, B, C, D, E, W[5]); in sha1_process()
110 P (E, A, B, C, D, W[6]); in sha1_process()
111 P (D, E, A, B, C, W[7]); in sha1_process()
112 P (C, D, E, A, B, W[8]); in sha1_process()
[all …]
/OK3568_Linux_fs/u-boot/tools/rockchip/
H A Dresource_tool.c91 #define P(a,b,c,d,e,x) { \ in sha1_process() macro
104 P (A, B, C, D, E, W[0]); in sha1_process()
105 P (E, A, B, C, D, W[1]); in sha1_process()
106 P (D, E, A, B, C, W[2]); in sha1_process()
107 P (C, D, E, A, B, W[3]); in sha1_process()
108 P (B, C, D, E, A, W[4]); in sha1_process()
109 P (A, B, C, D, E, W[5]); in sha1_process()
110 P (E, A, B, C, D, W[6]); in sha1_process()
111 P (D, E, A, B, C, W[7]); in sha1_process()
112 P (C, D, E, A, B, W[8]); in sha1_process()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-wheel/
H A D0001-Fixed-potential-DoS-attack-via-WHEEL_INFO_RE.patch23 - r"""^(?P<namever>(?P<name>.+?)-(?P<ver>.+?))(-(?P<build>\d[^-]*))?
24 - -(?P<pyver>.+?)-(?P<abi>.+?)-(?P<plat>.+?)\.whl$""",
25 + r"""^(?P<namever>(?P<name>[^-]+?)-(?P<ver>[^-]+?))(-(?P<build>\d[^-]*))?
26 + -(?P<pyver>[^-]+?)-(?P<abi>[^-]+?)-(?P<plat>[^.]+?)\.whl$""",
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/typeof/
H A Dregister_functions_iterate.hpp11 template<class V, class R BOOST_PP_ENUM_TRAILING_PARAMS(n, class P)>
12 struct encode_type_impl<V, R(*)(BOOST_PP_ENUM_PARAMS(n, P))>
14 typedef R BOOST_PP_CAT(P, n);
18 template<class V, class R BOOST_PP_ENUM_TRAILING_PARAMS(n, class P)>
19 struct encode_type_impl<V, R(*)(BOOST_PP_ENUM_PARAMS(n, P) ...)>
21 typedef R BOOST_PP_CAT(P, n);
47 template<class V, class R BOOST_PP_ENUM_TRAILING_PARAMS(n, class P)>
48 struct encode_type_impl<V, R(&)(BOOST_PP_ENUM_PARAMS(n, P))>
50 typedef R BOOST_PP_CAT(P, n);
54 template<class V, class R BOOST_PP_ENUM_TRAILING_PARAMS(n, class P)>
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
H A Dnv50.c58 int P, N, M, id; in read_pll_src() local
75 P = (coef & 0x00070000) >> 16; in read_pll_src()
83 P = (coef & 0x00070000) >> 16; in read_pll_src()
109 P = (nvkm_rd32(device, 0x00e824 + (id * 0x28)) >> 16) & 7; in read_pll_src()
110 P += (coef & 0x00070000) >> 16; in read_pll_src()
119 return (ref * N / M) >> P; in read_pll_src()
198 u32 P = 0; in nv50_clk_read() local
221 P = (nvkm_rd32(device, 0x004028) & 0x00070000) >> 16; in nv50_clk_read()
223 case 0x00000000: return nvkm_clk_read(&clk->base, nv_clk_src_crystal) >> P; in nv50_clk_read()
225 case 0x00000002: return read_pll(clk, 0x004020) >> P; in nv50_clk_read()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/geometries/register/
H A Dbox.hpp44 template <typename P, size_t D> \
45 struct indexed_access<Box<P>, min_corner, D> \
47 typedef typename coordinate_type<P>::type ct; \
48 static inline ct get(Box<P> const& b) \
50 static inline void set(Box<P>& b, ct const& value) \
53 template <typename P, size_t D> \
54 struct indexed_access<Box<P>, max_corner, D> \
56 typedef typename coordinate_type<P>::type ct; \
57 static inline ct get(Box<P> const& b) \
59 static inline void set(Box<P>& b, ct const& value) \
[all …]
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dmem-events.c348 #define P(a, b) PERF_MEM_##a##_##b in c2c_decode_stats() macro
352 if (lock & P(LOCK, LOCKED)) stats->locks++; in c2c_decode_stats()
354 if (op & P(OP, LOAD)) { in c2c_decode_stats()
363 if (lvl & P(LVL, HIT)) { in c2c_decode_stats()
364 if (lvl & P(LVL, UNC)) stats->ld_uncache++; in c2c_decode_stats()
365 if (lvl & P(LVL, IO)) stats->ld_io++; in c2c_decode_stats()
366 if (lvl & P(LVL, LFB)) stats->ld_fbhit++; in c2c_decode_stats()
367 if (lvl & P(LVL, L1 )) stats->ld_l1hit++; in c2c_decode_stats()
368 if (lvl & P(LVL, L2 )) stats->ld_l2hit++; in c2c_decode_stats()
369 if (lvl & P(LVL, L3 )) { in c2c_decode_stats()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/
H A Dstrategy_transform.hpp91 template <typename P>
94 inline bool apply(P const& p1, P& p2) const in apply()
182 template <typename P, typename T, typename R>
183 inline void spherical_polar_to_cartesian(T phi, T theta, R r, P& p) in spherical_polar_to_cartesian()
185 assert_dimension<P, 3>(); in spherical_polar_to_cartesian()
207 template <typename P, typename T, typename R>
208 inline void spherical_equatorial_to_cartesian(T lambda, T delta, R r, P& p) in spherical_equatorial_to_cartesian()
210 assert_dimension<P, 3>(); in spherical_equatorial_to_cartesian()
227 template <typename P, typename T>
228 inline bool cartesian_to_spherical2(T x, T y, T z, P& p) in cartesian_to_spherical2()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/geometries/concepts/
H A Dpoint_concept.hpp108 template <typename P, std::size_t Dimension, std::size_t DimensionCount>
113 P* p = 0; in apply()
115 dimension_checker<P, Dimension+1, DimensionCount>::apply(); in apply()
120 template <typename P, std::size_t DimensionCount>
121 struct dimension_checker<P, DimensionCount, DimensionCount>
161 template <typename P, std::size_t Dimension, std::size_t DimensionCount>
166 const P* p = 0; in apply()
169 dimension_checker<P, Dimension+1, DimensionCount>::apply(); in apply()
174 template <typename P, std::size_t DimensionCount>
175 struct dimension_checker<P, DimensionCount, DimensionCount>
/OK3568_Linux_fs/kernel/kernel/sched/
H A Ddebug.c433 #define P(F) SEQ_printf(m, " .%-30s: %lld\n", #F, (long long)F) in print_cfs_group_stats() macro
458 P(se->load.weight); in print_cfs_group_stats()
460 P(se->avg.load_avg); in print_cfs_group_stats()
461 P(se->avg.util_avg); in print_cfs_group_stats()
462 P(se->avg.runnable_avg); in print_cfs_group_stats()
468 #undef P in print_cfs_group_stats()
644 #define P(x) \ in print_rt_rq() macro
655 P(rt_throttled); in print_rt_rq()
661 #undef P in print_rt_rq()
702 #define P(x) \ in print_cpu() macro
[all …]
/OK3568_Linux_fs/kernel/Documentation/arm/nwfpe/
H A Dnetwinder-fpe.rst14 {P|M|Z} = {round to +infinity,round to -infinity,round to zero},
51 FLT{cond}<S,D,E>{P,M,Z} Fn, Rd Convert integer to floating point
52 FIX{cond}{P,M,Z} Rd, Fn Convert floating point to integer
80 ADF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - add
81 SUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - subtract
82 RSF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse subtract
83 MUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - multiply
84 DVF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - divide
85 RDV{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse divide
89 FML{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - fast multiply
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-kernel/pm-graph/pm-graph/
H A D0001-sleepgraph-add-support-for-RT-kernel-ftrace-flags.patch32 '[ +!#\*@$]*(?P<dur>[0-9\.]*) .*\| (?P<msg>.*)'
34 ' *(?P<proc>.*)-(?P<pid>[0-9]*) *\[(?P<cpu>[0-9]*)\] *'+\
35 - '(?P<flags>.{4}) *(?P<time>[0-9\.]*): *'+\
36 + '(?P<flags>.{4,7}) *(?P<time>[0-9\.]*): *'+\
37 '(?P<msg>.*)'
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/map/aux_/
H A Dnumbered.hpp28 # define AUX778076_MAP_TAIL(map, i_, P) \ argument
30 BOOST_PP_ENUM_PARAMS(i_, P) \
38 BOOST_PP_ENUM_PARAMS(i_, typename P)
42 typename BOOST_PP_CAT(P,BOOST_PP_DEC(i_))::first in BOOST_PP_CAT()
43 , typename BOOST_PP_CAT(P,BOOST_PP_DEC(i_))::second in BOOST_PP_CAT()
44 , AUX778076_MAP_TAIL(map,BOOST_PP_DEC(i_),P) in BOOST_PP_CAT()
91 BOOST_PP_ENUM_PARAMS(i_, typename P)
96 , typename BOOST_PP_CAT(P,BOOST_PP_DEC(i_))::first in BOOST_PP_CAT()
97 , typename BOOST_PP_CAT(P,BOOST_PP_DEC(i_))::second in BOOST_PP_CAT()
98 , AUX778076_MAP_TAIL(map,BOOST_PP_DEC(i_),P) in BOOST_PP_CAT()
/OK3568_Linux_fs/kernel/mm/
H A Dpercpu-stats.c19 #define P(X, Y) \ macro
125 P("nr_alloc", chunk->nr_alloc); in chunk_map_stats()
126 P("max_alloc_size", chunk->max_alloc_size); in chunk_map_stats()
127 P("empty_pop_pages", chunk->nr_empty_pop_pages); in chunk_map_stats()
128 P("first_bit", chunk_md->first_free); in chunk_map_stats()
129 P("free_bytes", chunk->free_bytes); in chunk_map_stats()
130 P("contig_bytes", chunk_md->contig_hint * PCPU_MIN_ALLOC_SIZE); in chunk_map_stats()
131 P("sum_frag", sum_frag); in chunk_map_stats()
132 P("max_frag", max_frag); in chunk_map_stats()
133 P("cur_min_alloc", cur_min_alloc); in chunk_map_stats()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/busybox/busybox/
H A D0001-testsuite-use-www.example.org-for-wget-test-cases.patch13 testsuite/wget/wget--O-overrides--P | 2 +-
16 testsuite/wget/wget-supports--P | 2 +-
19 diff --git a/testsuite/wget/wget--O-overrides--P b/testsuite/wget/wget--O-overrides--P
21 --- a/testsuite/wget/wget--O-overrides--P
22 +++ b/testsuite/wget/wget--O-overrides--P
27 -busybox wget -q -O index.html -P foo http://www.google.com/
28 +busybox wget -q -O index.html -P foo http://www.example.org/
49 diff --git a/testsuite/wget/wget-supports--P b/testsuite/wget/wget-supports--P
51 --- a/testsuite/wget/wget-supports--P
52 +++ b/testsuite/wget/wget-supports--P
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/
H A Dpair.hpp38 typename BOOST_MPL_AUX_NA_PARAM(P)
43 typedef typename P::first type;
45 typedef typename aux::msvc_eti_base<P>::first type;
47 BOOST_MPL_AUX_LAMBDA_SUPPORT(1,first,(P))
51 typename BOOST_MPL_AUX_NA_PARAM(P)
56 typedef typename P::second type;
58 typedef typename aux::msvc_eti_base<P>::second type;
60 BOOST_MPL_AUX_LAMBDA_SUPPORT(1,second,(P))
/OK3568_Linux_fs/kernel/security/apparmor/include/
H A Dlabel.h157 #define label_for_each(I, L, P) \ argument
158 for ((I).i = 0; ((P) = (L)->vec[(I).i]); ++((I).i))
161 #define label_for_each_cont(I, L, P) \ argument
162 for (++((I).i); ((P) = (L)->vec[(I).i]); ++((I).i))
191 #define label_for_each_confined(I, L, P) \ argument
193 ((P) = (L)->vec[(I).i]); \
196 #define label_for_each_in_merge(I, A, B, P) \ argument
198 ((P) = aa_label_next_in_merge(&(I), (A), (B))); \
201 #define label_for_each_not_in_set(I, SET, SUB, P) \ argument
203 ((P) = __aa_label_next_not_in_set(&(I), (SET), (SUB))); \
[all …]

12345678910>>...63