Symbol: tau
crypto/libressl/crypto/chacha/chacha-merged.c
101
constants = tau;
crypto/libressl/crypto/chacha/chacha-merged.c
83
static const char tau[16] = {
crypto/openssh/chacha.c
52
static const char tau[16] = "expand 16-byte k";
crypto/openssh/chacha.c
67
constants = tau;
crypto/openssh/xmss_fast.c
453
unsigned int tau = h;
crypto/openssh/xmss_fast.c
472
tau = i;
crypto/openssh/xmss_fast.c
477
if (tau > 0) {
crypto/openssh/xmss_fast.c
478
memcpy(buf, state->auth + (tau-1) * n, n);
crypto/openssh/xmss_fast.c
480
memcpy(buf + n, state->keep + ((tau-1) >> 1) * n, n);
crypto/openssh/xmss_fast.c
482
if (!((leaf_idx >> (tau + 1)) & 1) && (tau < h - 1)) {
crypto/openssh/xmss_fast.c
483
memcpy(state->keep + (tau >> 1)*n, state->auth + tau*n, n);
crypto/openssh/xmss_fast.c
485
if (tau == 0) {
crypto/openssh/xmss_fast.c
491
setTreeHeight(node_addr, (tau-1));
crypto/openssh/xmss_fast.c
492
setTreeIndex(node_addr, leaf_idx >> tau);
crypto/openssh/xmss_fast.c
493
hash_h(state->auth + tau * n, buf, pub_seed, node_addr, n);
crypto/openssh/xmss_fast.c
494
for (i = 0; i < tau; i++) {
crypto/openssh/xmss_fast.c
505
for (i = 0; i < ((tau < h - k) ? tau : (h - k)); i++) {
sys/crypto/chacha20/chacha.c
53
static const char tau[16] = "expand 16-byte k";
sys/crypto/chacha20/chacha.c
68
constants = tau;
sys/dev/drm/amd/amdgpu/si_dpm.c
2609
dte_tables->tau[i] = cpu_to_be32(dte_data->tau[i]);
sys/dev/drm/amd/amdgpu/si_dpm.h
889
u32 tau[SMC_SISLANDS_DTE_MAX_FILTER_STAGES];
sys/dev/drm/amd/amdgpu/sislands_smc.h
371
uint32_t tau[SMC_SISLANDS_DTE_MAX_FILTER_STAGES];
sys/dev/drm/radeon/si_dpm.c
2514
dte_tables->tau[i] = cpu_to_be32(dte_data->tau[i]);
sys/dev/drm/radeon/si_dpm.h
73
u32 tau[SMC_SISLANDS_DTE_MAX_FILTER_STAGES];
sys/dev/drm/radeon/sislands_smc.h
371
uint32_t tau[SMC_SISLANDS_DTE_MAX_FILTER_STAGES];
usr.bin/calendar/moon.c
663
double tau = t + rate * mod_f(phi - phase, 360);
usr.bin/calendar/moon.c
666
double a = (t > tau - 2) ? t : tau - 2;
usr.bin/calendar/moon.c
667
double b = tau + 2;
usr.bin/calendar/sun.c
180
double tau = t + rate * mod_f(lambda - lon, 360);
usr.bin/calendar/sun.c
183
double a = (t > tau - 5) ? t : tau - 5;
usr.bin/calendar/sun.c
184
double b = tau + 5;
usr.bin/calendar/sun.c
201
double tau = t - rate * mod_f(lon - lambda, 360);
usr.bin/calendar/sun.c
204
lon = solar_longitude(tau);
usr.bin/calendar/sun.c
206
double t2 = tau - rate * delta;