/external/bluetooth/glib/tests/ |
D | onceinit.c | 176 #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/ |
D | defs.h | 410 #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/ |
D | list-inl.h | 37 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/ |
D | kseed.c | 241 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/ |
D | fmtable.cls | 58 …�D��0 *��J�@% @@� X�,m+��h`c�`�c�d"��� ���J�B-0P@�# ��<m+��hC`c… 69 �P! @B�"@(k.�HB@A@�!D 72 �P! @@��"@(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�А "�l0�A�À``���A�"�`P`"�0�А "�l…
|
/external/e2fsprogs/tests/f_dup3/ |
D | image.gz |
|
/external/e2fsprogs/tests/f_dup2/ |
D | image.gz |
|
/external/e2fsprogs/tests/f_lpf/ |
D | image.gz |
|
/external/e2fsprogs/tests/f_baddir/ |
D | image.gz |
|
/external/openssl/crypto/ec/ |
D | ectest.c | 125 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/ |
D | algorithm | 208 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/ |
D | bn_mp_exptmod.c | 24 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 …]
|
D | bn_mp_exptmod_fast.c | 32 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/ |
D | COMPtr.h | 201 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/ |
D | rmdtest.c | 106 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/ |
D | ltc_ecc_map.c | 33 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/ |
D | HashFunctions.h | 126 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; };
|
D | HashTraits.h | 77 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/ |
D | private.h | 171 #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/ |
D | S054.nwf | 13 F`m���B���� #$(��������%=H?IXPO80)������… 20 0-����"\w�wi�zP) 26 …,)&/+V�vN+������������,l�xi>������ ),1@PB(-/$ 27 8adT8��������=JPF/ 41 PoG$%������0�������������������� 48 …21������������������������������������������������������P$����������0��… 55 …��������)���� ��������������������������������������������%-JP$������@?"… 67 …��������������������������������������������������������(DXP ���������������� … 93 ����������������������������������������������������@DDXPE8 118 …���������(����������������������"5��������������������������������������/PB7 [all …]
|
D | S065.nwf | 18 ��������������'///7A?OhfU����������>L ����EbP/&-�� +… 23 ����������������������������������$HLP5������ ������������������������… 25 …*B6 ;D;K^YerS:8Ejw}�p_PXeK.! &:MLF'+FUIJ>… 27 …EG����@HC24v���n�g7����OWV������X~P�������stv… 28 …P;��������$dm�����p\8����2[I,!;������D}�~>������… 30 …BX5��IXkcE5(5<$���� =+��������3D-����7OPcM����������5… 41 (9e��hH,.L=.??GM3��������G9NW-��9P[U\N% 49 ������������������������(PjE������8IH&']`1������x���������…
|
D | S070.nwf | 16 ������������*HP?4 .@7������x�����������GkaD�������� 18 …3��8m}7��G�M�������������������������2����g^Y]dM$����P~�<����v���2ar… 22 Io��}P:X~�w\!����?q��e;+��������������������E���wXU… 28 3:IV1����������\��q7 ��������������$��f�Y�j�����Siq����Y��%P… 37 �������� SQ��������������?J38������������-2J/��������&D0P�9����… 44 P���nB-;?������������-F<����������������{�������h�������4K? ��������… 46 /HSG����������������������������������������P`^O�������;X6 47 …��8\.����������������������������5DX]<&����������(R]rgCP[?����0����… 49 BticW$������������PF������������������2RDYA������FLSw���i������������PM…
|
/external/srec/config/en.us/wave/dallas/0304/ |
D | S052.nwf | 14 (���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���5C������H��N 34 X��A��=��o���}�q���P���^����9�� 36 …���6����Q�����Q�n�66 g�P�����i������>���������{iV��Wke�%��Y�����n… 40 …P���������� � �:?���h�����}�p��L�d�O�X�]�@���^�b���E��h���d.����$����… 42 ��5�6���P���`�����[ /
|
/external/srec/config/en.us/wave/dallas/0303/ |
D | S083.nwf | 10 …-[u��pJ�������������������� ��������������������D������}aP.������������x���… 11 …������4?IG9+"������������������������������������������-GQPD)������Nr|… 12 …����&�H����8G@4����������IPIPJgfF_tgr���yTFA ��������������(WX… 14 …PHH5������������/N7EID?����������������&3@A%������������������������������… 15 …F&(5EXX9����������������������������������7c������P������ 16 %*,7'����������������+IO������������������#6Px��d7������������ 3( 19 …��3ks_T<����1h[MdY����u�v�������$FO:��?PA?QU&����������…
|
/external/e2fsprogs/intl/ |
D | relocatable.c | 78 # 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
|