/external/mesa3d/src/mesa/program/ |
D | hash_table.c | 119 struct hash_node *hn = (struct hash_node *) node; in get_node() local 121 if ((*ht->compare)(hn->key, key) == 0) { in get_node() 122 return hn; in get_node() 132 struct hash_node *hn = get_node(ht, key); in hash_table_find() local 134 return (hn == NULL) ? NULL : hn->data; in hash_table_find() 158 struct hash_node *hn; in hash_table_replace() local 161 hn = (struct hash_node *) node; in hash_table_replace() 163 if ((*ht->compare)(hn->key, key) == 0) { in hash_table_replace() 164 hn->data = data; in hash_table_replace() 169 hn = calloc(1, sizeof(*hn)); in hash_table_replace() [all …]
|
/external/opencv3/modules/photo/src/ |
D | fast_nlmeans_denoising_opencl.hpp | 34 const FT *h, int hn, int cn, int normType, in ocl_calcAlmostDist2Weight() argument 59 CV_Assert(hn > 0 && hn <= 4); in ocl_calcAlmostDist2Weight() 60 for (int i=0; i<hn; i++) in ocl_calcAlmostDist2Weight() 63 almostDist2Weight.create(1, almostMaxDist, CV_32SC(hn == 3 ? 4 : hn)); in ocl_calcAlmostDist2Weight() 69 ocl::typeToStr(depth), ocl::typeToStr(CV_MAKE_TYPE(depth, hn)), in ocl_calcAlmostDist2Weight() 70 ocl::typeToStr(CV_32SC(hn)), ocl::convertTypeStr(depth, CV_32S, hn, buf), in ocl_calcAlmostDist2Weight() 78 ocl::KernelArg::Constant(den, (hn == 3 ? 4 : hn)*sizeof(FT)), WEIGHT_THRESHOLD); in ocl_calcAlmostDist2Weight() 84 static bool ocl_fastNlMeansDenoising(InputArray _src, OutputArray _dst, const float *h, int hn, in ocl_fastNlMeansDenoising() argument 111 ocl::typeToStr(CV_32SC(hn)), in ocl_fastNlMeansDenoising() 112 depth == CV_8U ? ocl::typeToStr(CV_32SC(hn)) : in ocl_fastNlMeansDenoising() [all …]
|
D | denoising.cpp | 52 int hn = (int)h.size(); in fastNlMeansDenoising_() local 63 if (hn == 1) in fastNlMeansDenoising_() 75 if (hn == 1) in fastNlMeansDenoising_() 87 if (hn == 1) in fastNlMeansDenoising_() 114 int hn = (int)h.size(), type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); in fastNlMeansDenoising() local 115 CV_Assert(hn == 1 || hn == cn); in fastNlMeansDenoising() 120 ocl_fastNlMeansDenoising(_src, _dst, &h[0], hn, in fastNlMeansDenoising() 130 if(hn == 1 && tegra::useTegra() && in fastNlMeansDenoising() 247 int hn = (int)h.size(); in fastNlMeansDenoisingMulti_() local 260 if (hn == 1) in fastNlMeansDenoisingMulti_() [all …]
|
/external/avahi/avahi-utils/ |
D | avahi-set-host-name.c | 165 const char *version, *hn; in main() local 172 if (!(hn = avahi_client_get_host_name_fqdn(client))) { in main() 177 fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn); in main() 186 const char *hn; in main() local 188 if (!(hn = avahi_client_get_host_name_fqdn(client))) { in main() 193 fprintf(stderr, _("Host name successfully changed to %s\n"), hn); in main()
|
D | avahi-resolve.c | 277 const char *version, *hn; in main() local 284 if (!(hn = avahi_client_get_host_name_fqdn(client))) { in main() 289 fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn); in main()
|
D | avahi-publish.c | 391 const char *version, *hn; in main() local 398 if (!(hn = avahi_client_get_host_name_fqdn(client))) { in main() 403 fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn); in main()
|
D | avahi-browse.c | 532 const char *version, *hn; in start() local 539 if (!(hn = avahi_client_get_host_name_fqdn(client))) { in start() 544 fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn); in start()
|
/external/freetype/src/gzip/ |
D | inftrees.c | 104 uInt *hn, /* hufts used in space */ in huft_build() argument 238 if (*hn + z > MANY) /* (note: doesn't matter for fixed) */ in huft_build() 240 u[h] = q = hp + *hn; in huft_build() 241 *hn += z; in huft_build() 308 uInt hn = 0; /* hufts used in space */ in inflate_trees_bits() local 314 tb, bb, hp, &hn, v); in inflate_trees_bits() 340 uInt hn = 0; /* hufts used in space */ in inflate_trees_dynamic() local 348 r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v); in inflate_trees_dynamic() 363 r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v); in inflate_trees_dynamic()
|
/external/libvorbis/lib/ |
D | floor1.c | 643 int hn=hineighbor[sortpos]; in floor1_fit() local 646 if(memo[ln]!=hn){ in floor1_fit() 649 int hsortpos=look->reverse_index[hn]; in floor1_fit() 650 memo[ln]=hn; in floor1_fit() 655 int hx=info->postlist[hn]; in floor1_fit() 657 int hy=post_Y(fit_valueA,fit_valueB,hn); in floor1_fit() 690 fit_valueA[hn]=hy1; in floor1_fit() 691 if(hn==1)fit_valueB[hn]=hy1; in floor1_fit() 696 if(hineighbor[j]==hn) in floor1_fit() 725 int hn=look->hineighbor[i-2]; in floor1_fit() local [all …]
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/ |
D | de-DE_kdt_acc.pkb | 19 �H�*'M�ma�XR��,����4�a�H��J*>�ւ�Z�dm�͗hnЅ�փ�B[�����\aYu�k<���y��:)%��k��b�1/&$ܞ��R…
|
/external/avahi/avahi-core/ |
D | server.c | 1248 char *hn = NULL; in avahi_server_set_host_name() local 1254 hn = avahi_get_host_name_strdup(); in avahi_server_set_host_name() 1256 hn = avahi_normalize_name_strdup(host_name); in avahi_server_set_host_name() 1258 hn[strcspn(hn, ".")] = 0; in avahi_server_set_host_name() 1260 if (avahi_domain_equal(s->host_name, hn) && s->state != AVAHI_SERVER_COLLISION) { in avahi_server_set_host_name() 1261 avahi_free(hn); in avahi_server_set_host_name() 1268 s->host_name = hn; in avahi_server_set_host_name()
|
/external/icu/icu4c/source/data/region/ |
D | shi_Latn.txt | 98 HU{"hnɣarya"}
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/ |
D | fr-FR_kdt_posd.pkb | 160 …F�pm��@N�Po�������v��6�0<$�;�RC�ޖ+��߃�����f�Ӝ��hn�t�����
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/ |
D | en-GB_klex.pkb | 1 �06a13a1hn2530035t40t46t51s 57t 3 7883a8hn95\?abuadaadvaftajaaltanganyapparcaskattavaban bef…
|
D | en-GB_kdt_g2p.pkb | 392 …T�TϐX8�Ђ�����V��{}����E�T�-��tcn悱AhAnCa��l�h+4f��7���N0ᠽ!��hn���kN()4.��ࡵd2ށ�
|
D | en-GB_kh0_kpdf_mgc.pkb | 907 ������HUP=+F:Q_OIf�yz�B7H?QP*/G�Ȫ�iawuwss�t����������[hnݪ�okryy�x����������������S� 2358 CL��dbXqZwm������PG4JJS"3A��������������ǻ˸�hn���ȉ����������������������1%�r����e��>�����…
|
/external/icu/icu4c/source/data/lang/ |
D | ksh.txt | 282 Zyyy{"-öhnß en Schreff-"}
|
/external/icu/icu4c/source/data/unit/ |
D | is.txt | 545 dnam{"hnútur"} 547 other{"{0} hnútar"}
|
/external/chromium-trace/catapult/experimental/heatmap/ |
D | jquery.min.js | 6 …hn=[],dn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=hn.pop()…
|
/external/hyphenation-patterns/es/ |
D | hyph-es.pat.txt | 122 2hn
|
/external/hyphenation-patterns/de/ |
D | hyph-de-1996.pat.txt | 7158 6hn 9755 2l1ähn 10884 2m1ähn 11560 4n1ähn 15906 4s3ähn
|
D | hyph-de-1901.pat.txt | 7258 2hn 9909 2l1ähn 11101 2m1ähn 11780 4n1ähn 16119 4s3ähn
|
D | hyph-de-ch-1901.pat.txt | 7163 2hn 9807 2l1ähn 10988 2m1ähn 11664 4n1ähn 15971 2s3ähn
|
/external/libjpeg-turbo/testimages/ |
D | testorig.ppm | 4 …hn�]`�XZqSUjRWjT^hZgmfvvr�t�~�����~��w�zr�qftgZeT[ZE`ZBb\D-.0-.0-.0-.0-.0-.0.......,-.-+.-+-,*/+…
|
/external/webrtc/talk/media/testdata/ |
D | voice.rtpdump | 6 ��pjjn|{twon�����hn����}����kg}���ot�pfw����~���t���plv�������o`f���]^���i\i��utm���fZg����|�vpo���…
|