Home
last modified time | relevance | path

Searched refs:hn (Results 1 – 25 of 43) sorted by relevance

12

/third_party/python/Modules/_decimal/libmpdec/
Dtranspose.c82 mpd_size_t hn, hmax; /* halfrow number */ in swap_halfrows_pow2() local
107 for (hn = 1; hn <= hmax; hn += 2) { in swap_halfrows_pow2()
109 if (done[hn/dbits] & mpd_bits[hn%dbits]) { in swap_halfrows_pow2()
119 hp = matrix + hn*cols/2; in swap_halfrows_pow2()
123 next = mulmod_size_t(hn, r, m); in swap_halfrows_pow2()
126 while (next != hn) { in swap_halfrows_pow2()
141 done[hn/dbits] |= mpd_bits[hn%dbits]; in swap_halfrows_pow2()
/third_party/skia/third_party/externals/freetype/src/gzip/
Dinftrees.c104 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()
/third_party/flutter/skia/third_party/externals/freetype/src/gzip/
Dinftrees.c104 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()
/third_party/pulseaudio/src/pulse/
Dutil.c322 char hn[256]; in pa_get_fqdn() local
330 if (!pa_get_host_name(hn, sizeof(hn))) in pa_get_fqdn()
338 if (getaddrinfo(hn, NULL, &hints, &a)) in pa_get_fqdn()
339 return pa_strlcpy(s, hn, l); in pa_get_fqdn()
343 return pa_strlcpy(s, hn, l); in pa_get_fqdn()
350 return pa_strlcpy(s, hn, l); in pa_get_fqdn()
/third_party/pulseaudio/src/utils/
Dpax11publish.c166 char hn[256]; in main() local
167 if (!pa_get_fqdn(hn, sizeof(hn))) { in main()
172 pa_x11_set_prop(xcb, screen, "PULSE_SERVER", hn); in main()
/third_party/libwebsockets/plugins/
Dprotocol_lws_openmetrics_export.c391 char hn[64]; in ome_prepare() local
399 hn[0] = '\0'; in ome_prepare()
400 gethostname(hn, sizeof(hn) - 1); in ome_prepare()
404 "target_info{hostname=\"%s\"", hn); in ome_prepare()
407 if (grabfile("/proc/self/cmdline", hn, sizeof(hn))) in ome_prepare()
409 ",cmdline=\"%s\"", hn); in ome_prepare()
432 if (grabfile("/proc/loadavg", hn, sizeof(hn))) { in ome_prepare()
433 char *sp = strchr(hn, ' '); in ome_prepare()
438 lws_ptr_diff(sp, hn), hn); in ome_prepare()
/third_party/pulseaudio/src/modules/macosx/
Dmodule-bonjour-publish.c283 char *hn, *un; in get_service() local
304 hn = pa_get_host_name_malloc(); in get_service()
307 …s->service_name = pa_truncate_utf8(pa_sprintf_malloc("%s@%s: %s", un, hn, n), kDNSServiceMaxDomain… in get_service()
310 pa_xfree(hn); in get_service()
438 char *hn, *un; in pa__init() local
460 hn = pa_get_host_name_malloc(); in pa__init()
461 …u->service_name = pa_truncate_utf8(pa_sprintf_malloc("%s@%s", un, hn), kDNSServiceMaxDomainName-1); in pa__init()
463 pa_xfree(hn); in pa__init()
/third_party/ffmpeg/libavcodec/
Dvaapi_encode_h264.c730 VAAPIEncodeH264Picture *hp, *hn, *hc; in vaapi_encode_h264_default_ref_pic_list() local
738 hn = prev->dpb[i]->priv_data; in vaapi_encode_h264_default_ref_pic_list()
739 av_assert0(hn->frame_num < hp->frame_num); in vaapi_encode_h264_default_ref_pic_list()
744 av_assert0(hc->frame_num != hn->frame_num); in vaapi_encode_h264_default_ref_pic_list()
745 if (hc->frame_num > hn->frame_num) in vaapi_encode_h264_default_ref_pic_list()
756 if (hn->pic_order_cnt > hp->pic_order_cnt || in vaapi_encode_h264_default_ref_pic_list()
757 hn->pic_order_cnt < hc->pic_order_cnt) in vaapi_encode_h264_default_ref_pic_list()
760 if (hn->pic_order_cnt > hc->pic_order_cnt) in vaapi_encode_h264_default_ref_pic_list()
771 if (hn->pic_order_cnt < hp->pic_order_cnt || in vaapi_encode_h264_default_ref_pic_list()
772 hn->pic_order_cnt > hc->pic_order_cnt) in vaapi_encode_h264_default_ref_pic_list()
[all …]
/third_party/pulseaudio/src/modules/
Dmodule-zeroconf-publish.c397 char *hn, *un; in get_service() local
418 hn = pa_get_host_name_malloc(); in get_service()
421 … s->service_name = pa_truncate_utf8(pa_sprintf_malloc("%s@%s: %s", un, hn, n), AVAHI_LABEL_MAX-1); in get_service()
424 pa_xfree(hn); in get_service()
813 char *hn, *un; in pa__init() local
849 hn = pa_get_host_name_malloc(); in pa__init()
850 u->service_name = pa_truncate_utf8(pa_sprintf_malloc("%s@%s", un, hn), AVAHI_LABEL_MAX-1); in pa__init()
852 pa_xfree(hn); in pa__init()
Dmodule-tunnel.c923 char un[128], hn[128]; in update_description() local
949 pa_get_host_name(hn, sizeof(hn))); in update_description()
1584 char name[256], un[128], hn[128]; in setup_complete_callback() local
1625 pa_get_host_name(hn, sizeof(hn))); in setup_complete_callback()
1633 pa_get_host_name(hn, sizeof(hn))); in setup_complete_callback()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/namespaces/import_alias_declarations/
Dimport_alias_declarations_1.ts27 interface N2 { hn: number } property
/third_party/pulseaudio/src/modules/rtp/
Dmodule-rtp-send.c229 char hn[128], *n; in pa__init() local
473 n = pa_sprintf_malloc("PulseAudio RTP Stream on %s", pa_get_fqdn(hn, sizeof(hn))); in pa__init()
/third_party/ffmpeg/libavfilter/
Daf_superequalizer.c91 static float hn(int n, EqParameter *param, float fs) in hn() function
175 s->irest[i] = hn(i - winlen / 2, param, fs) * win(s, i - winlen / 2, winlen); in make_fir()
/third_party/icu/icu4c/source/data/region/
Dshi_Latn.txt92 HU{"hnɣarya"}
/third_party/skia/third_party/externals/icu/source/data/region/
Dshi_Latn.txt92 HU{"hnɣarya"}
/third_party/flutter/skia/third_party/externals/icu/source/data/region/
Dshi_Latn.txt91 HU{"hnɣarya"}
/third_party/typescript/tests/baselines/reference/
DhugeDeclarationOutputGetsTruncatedWithError.types6 …" | "hd" | "he" | "hf" | "hg" | "hh" | "hi" | "hj" | "hk" | "hl" | "hm" | "hn" | "ho" | "hp" | "hq…
9hn: "aa.hn"; ho: "aa.ho"; hp: "aa.hp"; hq: "aa.hq"; hr: "aa.hr"; hs: "aa.hs"; ht: "aa.ht"; hu: "aa…
10hn: "aa.hn"; ho: "aa.ho"; hp: "aa.hp"; hq: "aa.hq"; hr: "aa.hr"; hs: "aa.hs"; ht: "aa.ht"; hu: "aa…
DhugeDeclarationOutputGTruncatedWithError.ts.types6 …" | "hd" | "he" | "hf" | "hg" | "hh" | "hi" | "hj" | "hk" | "hl" | "hm" | "hn" | "ho" | "hp" | "hq…
9hn: "aa.hn"; ho: "aa.ho"; hp: "aa.hp"; hq: "aa.hq"; hr: "aa.hr"; hs: "aa.hs"; ht: "aa.ht"; hu: "aa…
10hn: "aa.hn"; ho: "aa.ho"; hp: "aa.hp"; hq: "aa.hq"; hr: "aa.hr"; hs: "aa.hs"; ht: "aa.ht"; hu: "aa…
/third_party/python/Lib/test/test_import/
D__init__.py724 hn = socket.gethostname()
726 unc = "\\\\%s\\%s$"%(hn, drive)
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/
Dksh.txt401 Zyyy{"-öhnß en Schreff-"}
/third_party/skia/third_party/externals/icu/source/data/lang/
Dksh.txt402 Zyyy{"-öhnß en Schreff-"}
/third_party/icu/icu4c/source/data/lang/
Dksh.txt402 Zyyy{"-öhnß en Schreff-"}
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/
Dis.txt609 dnam{"hnútar"}
611 other{"{0} hnútar"}
/third_party/openssl/apps/
Ds_client.c229 const char *hn = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name); in ssl_servername_cb() local
231 p->ack = !SSL_session_reused(s) && hn != NULL; in ssl_servername_cb()
/third_party/icu/icu4c/source/data/unit/
Dis.txt809 dnam{"hnútar"}
811 other{"{0} hnútar"}

12