Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/libsodium/test/default/
H A Dindex.html.tpl43 var xhr, expected, hn, idx = 0, passed = true;
59 hn.appendChild(document.createTextNode(' - PASSED (time: ' + duration + ' ms)'));
60 hn.className = 'passed';
62 hn.appendChild(document.createTextNode(' - FAILED'));
63 hn.className = 'err';
68 hn = document.getElementsByTagName('h1')[0];
69 hn.appendChild(document.createTextNode('Test: ' + tname));
/f-stack/tools/libxo/doc/
H A Dxolint.rst35 The hn-* modifiers (hn-decimal, hn-space, hn-1000)
203 'Field has hn-* modifier but not 'h' modifier'
206 The message "Field has hn-* modifier but not 'h' modifier" can be caused by code like:
210 xo_emit("{,hn-1000:value}", value);
216 xo_emit("{h,hn-1000:value}", value);
218 The hn-* modifiers (hn-decimal, hn-space, hn-1000)
H A Dfield-modifiers.rst19 h humanize (hn) Format large numbers in human-readable style
20 \ hn-space Humanize: Place space between numeric and unit
21 \ hn-decimal Humanize: Add a decimal digit, if number < 10
22 \ hn-1000 Humanize: Use 1000 as divisor instead of 1024
164 "hn" can be used as an alias for "humanize".
172 "`hn-space`" modifier places a space between the number and any
174 "`hn-decimal`" modifier will add a decimal point and a single tenths
175 digit when the number is less than 10 (ex: "4.4K"). The "`hn-1000`"
181 xo_emit("{h:input/%u}, {h,hn-space:output/%u}, "
182 "{h,hn-decimal:errors/%u}, {h,hn-1000:capacity/%u}, "
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_stub_status_module.c90 ngx_atomic_int_t ap, hn, ac, rq, rd, wr, wa; in ngx_http_stub_status_handler() local
130 hn = *ngx_stat_handled; in ngx_http_stub_status_handler()
142 b->last = ngx_sprintf(b->last, " %uA %uA %uA \n", ap, hn, rq); in ngx_http_stub_status_handler()
/f-stack/dpdk/devtools/
H A Dcheckpatches.sh206 while getopts hn:qr:v ARG ; do
/f-stack/app/redis-5.0.5/src/
H A Dquicklist.c283 quicklistNode *h = quicklist->head, *hn = h->next, *hnn = hn->next; in __quicklistCompress()
286 quicklistDecompressNode(hn); in __quicklistCompress()
289 if (h != node && hn != node && t != node && tp != node) { in __quicklistCompress()