Home
last modified time | relevance | path

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

12345678910>>...19

/external/bluetooth/glib/tests/
Donceinit.c176 #define DEFINE_16_TEST_INITIALIZERS(P) \ argument
177 DEFINE_TEST_INITIALIZER (P##0) \
178 DEFINE_TEST_INITIALIZER (P##1) \
179 DEFINE_TEST_INITIALIZER (P##2) \
180 DEFINE_TEST_INITIALIZER (P##3) \
181 DEFINE_TEST_INITIALIZER (P##4) \
182 DEFINE_TEST_INITIALIZER (P##5) \
183 DEFINE_TEST_INITIALIZER (P##6) \
184 DEFINE_TEST_INITIALIZER (P##7) \
185 DEFINE_TEST_INITIALIZER (P##8) \
[all …]
/external/strace/
Ddefs.h410 #define P(args) args macro
412 #define P(args) () macro
415 extern int set_personality P((int personality));
416 extern char *xlookup P((const struct xlat *, int));
417 extern struct tcb *alloctcb P((int));
418 extern struct tcb *pid2tcb P((int));
419 extern void droptcb P((struct tcb *));
420 extern int expand_tcbtab P((void));
422 extern void set_sortby P((char *));
423 extern void set_overhead P((int));
[all …]
/external/webkit/V8Binding/v8/src/
Dlist-inl.h37 template<typename T, class P>
38 void List<T, P>::Add(const T& element) { in Add()
42 List<T, P>::ResizeAdd(element); in Add()
47 template<typename T, class P>
48 void List<T, P>::AddAll(const List<T, P>& other) { in AddAll()
60 template<typename T, class P>
61 void List<T, P>::ResizeAdd(const T& element) { in ResizeAdd()
66 template<typename T, class P>
67 void List<T, P>::ResizeAddInternal(const T& element) { in ResizeAddInternal()
80 template<typename T, class P>
[all …]
/external/dropbear/libtomcrypt/src/ciphers/
Dkseed.c241 static void rounds(ulong32 *P, ulong32 *K) in rounds() argument
246 F(P[0], P[1], P[2], P[3], K[0], K[1]); in rounds()
247 F(P[2], P[3], P[0], P[1], K[2], K[3]); in rounds()
261 ulong32 P[4]; in kseed_ecb_encrypt() local
262 LOAD32H(P[0], pt); in kseed_ecb_encrypt()
263 LOAD32H(P[1], pt+4); in kseed_ecb_encrypt()
264 LOAD32H(P[2], pt+8); in kseed_ecb_encrypt()
265 LOAD32H(P[3], pt+12); in kseed_ecb_encrypt()
266 rounds(P, skey->kseed.K); in kseed_ecb_encrypt()
267 STORE32H(P[2], ct); in kseed_ecb_encrypt()
[all …]
/external/tesseract/tessdata/
Dfmtable.cls58 …��D���0 *���J�@% @��@� X�,m+��h�`c �`�c��d�"��� ����J�B-0P��@�# ��<m+��h�C`c…
69P! @��B��"@(k.�H�B@A �@�!D
72P! @��@���"@(i.�H�@A �@�! �D���0 (���
95 ��X��������@�@�������$ �� "�&T� ��(20��� ��P������B�@�������$!��$"�&T� �(2�…
113  ��B��@�A���P����:���
116 .�EAI" ��@�P@�$
126 #�(�`F� �`#��`f� ���������|�P� :��-�
140 …�� ��`" $� ��0 ���肄���T���@� ��� �A@� ��d" � ��0 ���肄���P���$@� ��� �…
153 …���]�y�=�}����O������s/���X�0/*�W����O}�I�g��<w����M�x�=�}��F�O������s/���P��/"�����O}�I�e��<…
162 …��0��A��À`��`�����A�"���`P�`"���0��А "�l���0��A��À`��`����A�"���`P�`"���0�А "�l…
/external/e2fsprogs/tests/f_dup3/
Dimage.gz
/external/e2fsprogs/tests/f_dup2/
Dimage.gz
/external/e2fsprogs/tests/f_lpf/
Dimage.gz
/external/e2fsprogs/tests/f_baddir/
Dimage.gz
/external/openssl/crypto/ec/
Dectest.c125 EC_POINT *P;
135 P = EC_POINT_new(group);
136 if (P == NULL) ABORT;
137 EC_POINT_copy(P, EC_GROUP_get0_generator(group));
155 if (!EC_POINT_mul(group, P, (type != TIMING_RAND_PT) ? r[i] : NULL,
156 (type != TIMING_BASE_PT) ? P : NULL, (type != TIMING_BASE_PT) ? r0[i] : NULL, ctx)) ABORT;
188 EC_POINT_free(P);
204 EC_POINT *P, *Q, *R; in prime_field_tests() local
249 P = EC_POINT_new(group); in prime_field_tests()
252 if (!P || !Q || !R) ABORT; in prime_field_tests()
[all …]
/external/webkit/WebKit/android/stl/
Dalgorithm208 template<typename P> inline void sort (P** start, P**end,
209 bool (* comp)(const P*, const P*))
214 template<typename P> void sort(P* start, P* end,
215 bool (* comp)(const P&, const P&)) {
219 template<typename P> inline void stable_sort(P** start, P** end,
220 bool (* comp)(P*, P*))
225 template<typename P> inline void stable_sort(P** start, P** end,
226 bool (& comp)(const P*, const P*))
231 template<typename P> void stable_sort(P* start, P* end, P* temp,
232 bool (& comp)(const P&, const P&)) {
[all …]
/external/dropbear/libtommath/
Dbn_mp_exptmod.c24 int mp_exptmod (mp_int * G, mp_int * X, mp_int * P, mp_int * Y) in mp_exptmod() argument
29 if (P->sign == MP_NEG) { in mp_exptmod()
43 if ((err = mp_invmod(G, P, &tmpG)) != MP_OKAY) { in mp_exptmod()
59 err = mp_exptmod(&tmpG, &tmpX, P, Y); in mp_exptmod()
70 if (mp_reduce_is_2k_l(P) == MP_YES) { in mp_exptmod()
71 return s_mp_exptmod(G, X, P, Y, 1); in mp_exptmod()
77 dr = mp_dr_is_modulus(P); in mp_exptmod()
86 dr = mp_reduce_is_2k(P) << 1; in mp_exptmod()
92 if (mp_isodd (P) == 1 || dr != 0) { in mp_exptmod()
93 return mp_exptmod_fast (G, X, P, Y, dr); in mp_exptmod()
[all …]
Dbn_mp_exptmod_fast.c32 int mp_exptmod_fast (mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int redmode) in mp_exptmod_fast() argument
89 if ((err = mp_montgomery_setup (P, &mp)) != MP_OKAY) { in mp_exptmod_fast()
99 if (((P->used * 2 + 1) < MP_WARRAY) && in mp_exptmod_fast()
100 P->used < (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) { in mp_exptmod_fast()
116 mp_dr_setup(P, &mp); in mp_exptmod_fast()
125 if ((err = mp_reduce_2k_setup(P, &mp)) != MP_OKAY) { in mp_exptmod_fast()
150 if ((err = mp_montgomery_calc_normalization (&res, P)) != MP_OKAY) { in mp_exptmod_fast()
159 if ((err = mp_mulmod (G, &res, P, &M[1])) != MP_OKAY) { in mp_exptmod_fast()
164 if ((err = mp_mod(G, P, &M[1])) != MP_OKAY) { in mp_exptmod_fast()
178 if ((err = redux (&M[1 << (winsize - 1)], P, mp)) != MP_OKAY) { in mp_exptmod_fast()
[all …]
/external/webkit/WebCore/platform/win/
DCOMPtr.h201 template<typename P> struct HashTraits<COMPtr<P> > : GenericHashTraits<COMPtr<P> > {
203 …static void constructDeletedValue(COMPtr<P>& slot) { slot.releaseRef(); *&slot = reinterpret_cast<
204 … static bool isDeletedValue(const COMPtr<P>& value) { return value == reinterpret_cast<P*>(-1); }
207 template<typename P> struct PtrHash<COMPtr<P> > : PtrHash<P*> {
208 using PtrHash<P*>::hash;
209 static unsigned hash(const COMPtr<P>& key) { return hash(key.get()); }
210 using PtrHash<P*>::equal;
211 static bool equal(const COMPtr<P>& a, const COMPtr<P>& b) { return a == b; }
212 static bool equal(P* a, const COMPtr<P>& b) { return a == b; }
213 static bool equal(const COMPtr<P>& a, P* b) { return a == b; }
[all …]
/external/openssl/crypto/ripemd/
Drmdtest.c106 char **P,**R; in main() local
110 P=test; in main()
113 while (*P != NULL) in main()
116 ebcdic2ascii((char *)*P, (char *)*P, strlen((char *)*P)); in main()
118 EVP_Digest(&(P[0][0]),strlen((char *)*P),md,NULL,EVP_ripemd160(), NULL); in main()
122 printf("error calculating RIPEMD160 on '%s'\n",*P); in main()
130 P++; in main()
/external/dropbear/libtomcrypt/src/pk/ecc/
Dltc_ecc_map.c33 int ltc_ecc_map(ecc_point *P, void *modulus, void *mp) in ltc_ecc_map() argument
38 LTC_ARGCHK(P != NULL); in ltc_ecc_map()
47 if ((err = mp_montgomery_reduce(P->z, modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_map()
50 if ((err = mp_invmod(P->z, modulus, t1)) != CRYPT_OK) { goto done; } in ltc_ecc_map()
59 if ((err = mp_mul(P->x, t2, P->x)) != CRYPT_OK) { goto done; } in ltc_ecc_map()
60 if ((err = mp_montgomery_reduce(P->x, modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_map()
61 if ((err = mp_mul(P->y, t1, P->y)) != CRYPT_OK) { goto done; } in ltc_ecc_map()
62 if ((err = mp_montgomery_reduce(P->y, modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_map()
63 if ((err = mp_set(P->z, 1)) != CRYPT_OK) { goto done; } in ltc_ecc_map()
/external/webkit/JavaScriptCore/wtf/
DHashFunctions.h126 template<typename P> struct PtrHash<RefPtr<P> > : PtrHash<P*> {
127 using PtrHash<P*>::hash;
128 static unsigned hash(const RefPtr<P>& key) { return hash(key.get()); }
129 using PtrHash<P*>::equal;
130 static bool equal(const RefPtr<P>& a, const RefPtr<P>& b) { return a == b; }
131 static bool equal(P* a, const RefPtr<P>& b) { return a == b; }
132 static bool equal(const RefPtr<P>& a, P* b) { return a == b; }
172 template<typename P> struct DefaultHash<P*> { typedef PtrHash<P*> Hash; };
173 template<typename P> struct DefaultHash<RefPtr<P> > { typedef PtrHash<RefPtr<P> > Hash; };
DHashTraits.h77 template<typename P> struct HashTraits<P*> : GenericHashTraits<P*> {
80 static void constructDeletedValue(P*& slot) { slot = reinterpret_cast<P*>(-1); }
81 static bool isDeletedValue(P* value) { return value == reinterpret_cast<P*>(-1); }
84 template<typename P> struct HashTraits<RefPtr<P> > : GenericHashTraits<RefPtr<P> > {
86 …static void constructDeletedValue(RefPtr<P>& slot) { new (&slot) RefPtr<P>(HashTableDeletedValue);…
87 … static bool isDeletedValue(const RefPtr<P>& value) { return value.isHashTableDeletedValue(); }
/external/icu4c/tools/tzcode/
Dprivate.h171 #ifndef P
172 #define P(x) x macro
217 extern int unlink P((const char * filename));
245 char * icalloc P((int nelem, int elsize));
246 char * icatalloc P((char * old, const char * new));
247 char * icpyalloc P((const char * string));
248 char * imalloc P((int n));
249 void * irealloc P((void * pointer, int size));
250 void icfree P((char * pointer));
251 void ifree P((char * pointer));
[all …]
/external/srec/config/en.us/wave/dallas-8kHz/0302/
DS054.nwf13 ��F�`�m�������B������� ��#�$��(�����������%�=�H�?�I�X�P�O�8���0�)�����������������…
20 ��0�-������"�\�w���w�i���z�P�)�
26 …�,�)�&�/�+����V���v�N�+������ �����������,�l���x�i�>��������� �)�,�1�@�P�B����(�-�/�$� �
27 ���8�a�d�T�8������������=�J�P�F�/���
41P�o�G�$�%��������0����������������������
48 …2�1� �������������������������������������������������������� �������P�$������������0����…
55 …���������)����� �������������������������������������������������%�-�J�P�$���������@�?��"�…
67 …�����������������������������������������������������������������(�D�X�P� ����������������� �…
93 ���������������������������������������������������������@�D�D�X�P�E�8�
118 …����������(����������������������� �����"�5����������������������������������������/�P�B�7��
[all …]
DS065.nwf18 ����������������'�/���/�/�7�A�?�O�h�f�U�������������>�L��� � �������E�b�P�/�&�-���� �+��…
23 ���������� ����������������������������$�H�L�P�5���������� � � �����������������������������…
25 …�*�B�6���� �;�D�;�K�^�Y�e�r�S�:�8�E�j�w�}���p�_�P�X�e�K�.�!� �&�:�M�L�F�'���+�F�U�I�J�>���…
27 …E�G���������@�H�C�2�� ��4�v�������n����g�7�������O�W�V��������X�~�P�������������s�t�v�…
28P�;����������$�d�m�����������p�\�8������2�[�I�,������� �!�;����������D�}���~�>��������…
30 …B�X�5����I�X�k�c�E�5�(�5�<�$������� �=�+������������3�D�-�������7�O�P�c�M������������ �5�…
41 ��(����9�e�����h�H�,�� ���.�L�=�.�?�?�G�M�3�����������G�9�N�W�-���� �9�P�[�U�\�N�%��
49 ������������������������������(�P�j�E���������8�I�H�&� ���'�]�`�1��������x������������…
DS070.nwf16 ���������������*�H�P�?�4�� �.�@�7��������x����������� �G�k�a�D���������� ������
18 …�3�����8�m�}�7���G�M�������������������������2���������g�^�Y�]�d�M�$������P�~���<�����v���2�a�r�…
22 � ��I�o�����}�P�����:�X�~���w�\�!�������?�q�����e�;�+�����������������������E�������w�X�U�…
28 ���3�:�I�V�1������������\�����q�7� ����������������$����f�Y�j������S�i�q���������Y�����%�P�…
37 �� ���������� ��S�Q�������������������?�J�3�8���������������-�2�J�/���������&�D�0�P���9�����…
44 � �P�������n�B�-�;�?�����������������-�F�<������������������{�������h������� �4�K�?� ���������…
46 ��/�H�S�G������������������� ���������������������������P�`�^�O�����������;�X�6��
47 …��8�\�.��������������������������������5�D�X�]�<�&�����������(�R�]�r�g�C�P�[�?������0���������…
49 �B�t�i�c�W�$�������������P�F�������������������2�R�D�Y�A��������F�L�S�w�������i��������������P�M�…
/external/srec/config/en.us/wave/dallas/0304/
DS052.nwf14 (����P��k��E���}�-�� )�3�r��� �C���~���{� �H���+�5x�S �j��-���������e���…
17 ��J�d<)�������d�������E���n7���� 0p@��P����p�
21 N � rDU����j�P���m������7��$R�
25 ��P�K���R�y�� 4��\������\������B����q����'�����e�%� i�
26 �P��@:���������@&�g��k����������� �[�����Q���5�C������H��N
34 X��A��=��o���}�q���P���^����9��
36 …���6�����Q������Q�n����66 g�P�����i������>���������{iV���Wk�e��%��Y�����n…
40P���������� � �:?���h�����}��p���L�d�O�X�]�@���^�b���E��h���d.�����$����…
42 ��5�6���P���`�����[ /
/external/srec/config/en.us/wave/dallas/0303/
DS083.nwf10 …-�[�u�����p�J���������������������� ���������������������D�������������}�a�P�.��������������x���…
11 …�������4�?�I�G�9�+�"��� �������������������������������������������-�G�Q�P�D�)���������N�r�|�…
12 …����&�H�����8�G�@�4��������������I�P�I�P�J�g�f�F�_�t�g�r�������y�T�F�A� ����������������(�W�X…
14P�H�H�5��������������/�N�7�E�I�D�?������������������&�3�@�A�%����������������������������������…
15 …�F�&�(�5�E�X�X�9����������������������������� � ����������������7�c�������������P���������
16 ��%�*�,�7�'��������������������+�I�O��������������������#�6�P�x�����d�7�������������� � �3�(�
19 …�� ��3�k�s�_�T�<������1�h�[�M�d�Y������u�v�����������$�F�O�:�����?�P�A�?�Q�U�&�����������…
/external/e2fsprogs/intl/
Drelocatable.c78 # define HAS_DEVICE(P) \ argument
79 ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \
80 && (P)[1] == ':')
81 # define IS_PATH_WITH_DIR(P) \ argument
82 (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P))
83 # define FILESYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0) argument
87 # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) argument
88 # define FILESYSTEM_PREFIX_LEN(P) 0 argument

12345678910>>...19