HomeSort by relevance Sort by last modified time
    Searched refs:hn (Results 1 - 25 of 38) sorted by null

1 2

  /external/mesa3d/src/mesa/program/
hash_table.c 119 struct hash_node *hn = (struct hash_node *) node; local
121 if ((*ht->compare)(hn->key, key) == 0) {
122 return hn;
132 struct hash_node *hn = get_node(ht, key); local
134 return (hn == NULL) ? NULL : hn->data;
158 struct hash_node *hn; local
161 hn = (struct hash_node *) node;
163 if ((*ht->compare)(hn->key, key) == 0) {
164 hn->data = data
201 struct hash_node *hn = (struct hash_node *) node; local
    [all...]
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_opencl.hpp 34 const FT *h, int hn, int cn, int normType,
59 CV_Assert(hn > 0 && hn <= 4);
60 for (int i=0; i<hn; i++)
63 almostDist2Weight.create(1, almostMaxDist, CV_32SC(hn == 3 ? 4 : hn));
69 ocl::typeToStr(depth), ocl::typeToStr(CV_MAKE_TYPE(depth, hn)),
70 ocl::typeToStr(CV_32SC(hn)), ocl::convertTypeStr(depth, CV_32S, hn, buf),
78 ocl::KernelArg::Constant(den, (hn == 3 ? 4 : hn)*sizeof(FT)), WEIGHT_THRESHOLD)
    [all...]
denoising.cpp 52 int hn = (int)h.size(); local
63 if (hn == 1)
75 if (hn == 1)
87 if (hn == 1)
114 int hn = (int)h.size(), type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local
115 CV_Assert(hn == 1 || hn == cn);
120 ocl_fastNlMeansDenoising(_src, _dst, &h[0], hn,
130 if(hn == 1 && tegra::useTegra() &&
247 int hn = (int)h.size() local
327 int hn = (int)h.size(); local
    [all...]
  /external/avahi/avahi-utils/
avahi-set-host-name.c 165 const char *version, *hn; local
172 if (!(hn = avahi_client_get_host_name_fqdn(client))) {
177 fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn);
186 const char *hn; local
188 if (!(hn = avahi_client_get_host_name_fqdn(client))) {
193 fprintf(stderr, _("Host name successfully changed to %s\n"), hn);
avahi-resolve.c 277 const char *version, *hn; local
284 if (!(hn = avahi_client_get_host_name_fqdn(client))) {
289 fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn);
avahi-publish.c 391 const char *version, *hn; local
398 if (!(hn = avahi_client_get_host_name_fqdn(client))) {
403 fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn);
avahi-browse.c 532 const char *version, *hn; local
539 if (!(hn = avahi_client_get_host_name_fqdn(client))) {
544 fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn);
  /external/freetype/src/gzip/
inftrees.c 95 local int huft_build( /* b, n, s, d, e, t, m, hp, hn, v) */
104 uInt *hn, /* hufts used in space */
238 if (*hn + z > MANY) /* (note: doesn't matter for fixed) */
240 u[h] = q = hp + *hn;
241 *hn += z;
308 uInt hn = 0; /* hufts used in space */ local
314 tb, bb, hp, &hn, v);
340 uInt hn = 0; /* hufts used in space */ local
348 r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v);
363 r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v)
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
inftrees.c 95 local int huft_build( /* b, n, s, d, e, t, m, hp, hn, v) */
104 uInt *hn, /* hufts used in space */
238 if (*hn + z > MANY) /* (note: doesn't matter for fixed) */
240 u[h] = q = hp + *hn;
241 *hn += z;
308 uInt hn = 0; /* hufts used in space */ local
314 tb, bb, hp, &hn, v);
340 uInt hn = 0; /* hufts used in space */ local
348 r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v);
363 r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v)
    [all...]
  /external/libvorbis/lib/
floor1.c 643 int hn=hineighbor[sortpos]; local
646 if(memo[ln]!=hn){
649 int hsortpos=look->reverse_index[hn];
650 memo[ln]=hn;
655 int hx=info->postlist[hn];
657 int hy=post_Y(fit_valueA,fit_valueB,hn);
690 fit_valueA[hn]=hy1;
691 if(hn==1)fit_valueB[hn]=hy1;
696 if(hineighbor[j]==hn)
725 int hn=look->hineighbor[i-2]; local
807 int hn=look->hineighbor[i-2]; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 752 QNode hn = h.next; // Absorb cancelled first node as head local
753 if (hn != null && hn.isCancelled()) {
754 advanceHead(h, hn);
    [all...]
LinkedTransferQueue.java 1125 Node hn = h.next; local
    [all...]
ConcurrentHashMap.java 2458 Node<K,V> ln, hn; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/bdf/
bdflib.c 1141 hashnode hn; local
1364 hashnode hn; local
2697 hashnode hn; local
    [all...]
  /external/avahi/avahi-core/
server.c 1248 char *hn = NULL; local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
readelf.c 10060 unsigned long hn; local
10357 unsigned long hn; local
10432 unsigned long hn; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_import.py 519 hn = socket.gethostname()
521 unc = "\\\\%s\\%s$"%(hn, drive)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_import.py 519 hn = socket.gethostname()
521 unc = "\\\\%s\\%s$"%(hn, drive)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_import.py 519 hn = socket.gethostname()
521 unc = "\\\\%s\\%s$"%(hn, drive)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_import.py 519 hn = socket.gethostname()
521 unc = "\\\\%s\\%s$"%(hn, drive)
  /bionic/libc/dns/net/
gethnamaddr.c 95 #define maybe_hnok(res, hn) maybe_ok((res), (hn), res_hnok)
    [all...]
  /frameworks/base/media/tests/contents/media_api/music/
test_amr_ietf.amr 254 2\v?}? Z???<B$C????(?7?QN???3???w(%??<R[{D????????*???{?aW??<@4=`<['??????hn^_F?XZ?????<?C{I?wA?8+W?WGp???v;?%c!S?@<?e?6?!?Z??y???Sp??m?\
419 X??????<B????%?.??%??D???8? 9n?X8??P<Hl???t?*??";<d?*?i???m??t`< ??'?)K?U?%?0?XzEm???J?`??@<?[?w?,??Ut?#xuxX??[?oJ?K?<?q=?????x?&HN|?HZ?8HS??&P<l 'R??????{g89??]?#?P=
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 

Completed in 3006 milliseconds

1 2