Searched refs:hz (Results 1 - 25 of 36) sorted by relevance

12

/external/fdlibm/
H A De_fmod.c35 int n,hx,hy,hz,ix,iy,sx,i; local
103 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
104 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;}
106 if((hz|lz)==0) /* return sign(x)*0 */
108 hx = hz+hz+(lz>>31); lx = lz+lz;
111 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
112 if(hz>
[all...]
H A Dk_cos.c71 double a,hz,z,r,qx; local
88 hz = 0.5*z-qx;
90 return a - (hz - (z*r-x*y));
/external/deqp/framework/opengl/simplereference/
H A DsglrContextUtil.cpp47 float hz = (p0.z() + p1.z()) * 0.5f; local
51 p0.x(), p1.y(), hz, 1.0f,
52 p1.x(), p0.y(), hz, 1.0f,
117 float hz = (p0.z() + p1.z()) * 0.5f; local
121 p0.x(), p1.y(), hz, 1.0f,
122 p1.x(), p0.y(), hz, 1.0f,
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_environment.c50 int hz = uHZ; variable
H A Duser_environment.h50 /* int hz; is declared in sys/kern/subr_param.c and refers to kernel timer frequency.
51 * See http://ivoras.sharanet.org/freebsd/vmware.html for additional info about kern.hz
52 * hz is initialized in void init_param1(void) in that file.
54 extern int hz;
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_constants.h77 #define SCTP_ZERO_COPY_TICK_DELAY (((100 * hz) + 999) / 1000)
78 #define SCTP_ZERO_COPY_SENDQ_TICK_DELAY (((100 * hz) + 999) / 1000)
605 #define MSEC_TO_TICKS(x) ((hz == 1000) ? x : ((((x) * hz) + 999) / 1000))
606 #define TICKS_TO_MSEC(x) ((hz == 1000) ? x : ((((x) * 1000) + (hz - 1)) / hz))
608 #define SEC_TO_TICKS(x) ((x) * hz)
609 #define TICKS_TO_SEC(x) (((x) + (hz - 1)) / hz)
[all...]
H A Dsctp_cc_functions.c2012 uint32_t cur_Bi = net->cc_mod.htcp_ca.bytecount/net->mtu*hz/(now - net->cc_mod.htcp_ca.lasttime);
2063 if (diff > (uint32_t)hz) {
2064 diff -= hz;
2065 factor = 1+ ( 10*diff + ((diff/2)*(diff/2)/hz))/hz;
2069 uint32_t scale = (hz<<3)/(10*minRTT);
/external/chromium_org/third_party/libevent/compat/sys/
H A D_libevent_time.h147 int hz; /* clock frequency */ member in struct:clockinfo
148 int tick; /* micro-seconds per hz tick */
H A D_time.h147 int hz; /* clock frequency */ member in struct:clockinfo
148 int tick; /* micro-seconds per hz tick */
/external/iproute2/ip/
H A Dipneigh.c276 int hz = get_user_hz(); local
280 fprintf(fp, " used %d/%d/%d", ci->ndm_used/hz,
281 ci->ndm_confirmed/hz, ci->ndm_updated/hz);
H A Diproute.c290 static int hz; local
470 if (!hz)
471 hz = get_user_hz();
473 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
482 fprintf(fp, " age %dsec", ci->rta_lastuse/hz);
495 if (!hz)
496 hz = get_user_hz();
500 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
509 fprintf(fp, " age %dsec", ci->rta_lastuse/hz);
/external/iproute2/tc/
H A Dtc_util.c458 int hz = get_user_hz(); local
460 fprintf(f, " installed %u sec", (unsigned)(tm->install/hz));
462 fprintf(f, " used %u sec", (unsigned)(tm->lastuse/hz));
464 fprintf(f, " expires %u sec", (unsigned)(tm->expires/hz));
/external/bzip2/
H A Dblocksort.c80 #define fpush(lz,hz) { stackLo[sp] = lz; \
81 stackHi[sp] = hz; \
84 #define fpop(lz,hz) { sp--; \
86 hz = stackHi[sp]; }
596 #define mpush(lz,hz,dz) { stackLo[sp] = lz; \
597 stackHi[sp] = hz; \
601 #define mpop(lz,hz,dz) { sp--; \
603 hz = stackHi[sp]; \
/external/iproute2/lib/
H A Dutils.c489 int hz = 0; local
508 hz = denom;
511 if (hz)
512 return hz;
/external/libnl/lib/route/
H A Dneigh.c369 int hz = nl_get_hz(); local
377 n->n_cacheinfo.nci_confirmed/hz,
378 n->n_cacheinfo.nci_used/hz, n->n_cacheinfo.nci_updated/hz);
/external/libnl/lib/
H A Dutils.c291 long hz = strtol(getenv("HZ"), NULL, 0); local
293 if (LONG_MIN != hz && LONG_MAX != hz) {
294 user_hz = hz;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dsysinfo.cc410 // SMP, APIC, or APM support. hz should be 64-bit in freebsd 7.0
421 uint64_t hz = 0; local
423 unsigned int hz = 0; local
425 size_t sz = sizeof(hz);
427 if ( sysctlbyname(sysctl_path, &hz, &sz, NULL, 0) != 0 ) {
432 cpuinfo_cycles_per_second = hz;
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dsysinfo.cc395 // SMP, APIC, or APM support. hz should be 64-bit in freebsd 7.0
406 uint64_t hz = 0; local
408 unsigned int hz = 0; local
410 size_t sz = sizeof(hz);
412 if ( sysctlbyname(sysctl_path, &hz, &sz, NULL, 0) != 0 ) {
417 cpuinfo_cycles_per_second = hz;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsvghelper.c311 static char *HzToHuman(unsigned long hz) argument
318 Hz = hz;
/external/chromium_org/v8/third_party/fdlibm/
H A Dfdlibm.js200 var hz = 0.5 * z - qx;
201 return (1 - qx - (hz - (z * r - X * Y))) SIGN;
/external/deqp/modules/glshared/
H A DglsScissorTests.cpp75 const float hz = (p0.z() + p1.z()) * 0.5f; local
79 p0.x(), p1.y(), hz, 1.0f,
80 p1.x(), p0.y(), hz, 1.0f,
/external/iproute2/misc/
H A Dss.c488 int hz = get_user_hz(); local
489 return print_ms_timer(((timeout*1000) + hz-1)/hz);
1260 int hz = get_user_hz(); local
1261 if (s.rto && s.rto != 3*hz)
1262 printf(" rto:%g", (double)s.rto/hz);
1264 printf(" ato:%g", (double)s.ato/hz);
/external/valgrind/main/VEX/switchback/
H A Dtest_bzip2.c2102 #define fpush(lz,hz) { stackLo[sp] = lz; \
2103 stackHi[sp] = hz; \
2106 #define fpop(lz,hz) { sp--; \
2108 hz = stackHi[sp]; }
2618 #define mpush(lz,hz,dz) { stackLo[sp] = lz; \
2619 stackHi[sp] = hz; \
2623 #define mpop(lz,hz,dz) { sp--; \
2625 hz = stackHi[sp]; \
/external/valgrind/main/exp-sgcheck/tests/
H A Dhackedbz2.c2126 #define fpush(lz,hz) { stackLo[sp] = lz; \
2127 stackHi[sp] = hz; \
2130 #define fpop(lz,hz) { sp--; \
2132 hz = stackHi[sp]; }
2642 #define mpush(lz,hz,dz) { stackLo[sp] = lz; \
2643 stackHi[sp] = hz; \
2647 #define mpop(lz,hz,dz) { sp--; \
2649 hz = stackHi[sp]; \
/external/valgrind/main/memcheck/tests/
H A Dorigin5-bz2.c2117 #define fpush(lz,hz) { stackLo[sp] = lz; \
2118 stackHi[sp] = hz; \
2121 #define fpop(lz,hz) { sp--; \
2123 hz = stackHi[sp]; }
2633 #define mpush(lz,hz,dz) { stackLo[sp] = lz; \
2634 stackHi[sp] = hz; \
2638 #define mpop(lz,hz,dz) { sp--; \
2640 hz = stackHi[sp]; \

Completed in 535 milliseconds

12