Home
last modified time | relevance | path

Searched refs:rnd_val (Results 1 – 3 of 3) sorted by relevance

/external/aac/libFDK/include/
Dqmf_pcm.h155 FIXP_DBL rnd_val = 0; in qmfSynPrototypeFirSlot() local
159 rnd_val = FIXP_DBL(1 << (scale - 1)); in qmfSynPrototypeFirSlot()
186 (Are + rnd_val)); /* Round-addition must not overflow, might be in qmfSynPrototypeFirSlot()
189 SATURATE_RIGHT_SHIFT(Are + rnd_val, scale, SAMPLE_BITS_QMFOUT)); in qmfSynPrototypeFirSlot()
246 FIXP_DBL rnd_val = (FIXP_DBL)0; in qmfSynPrototypeFirSlot_NonSymmetric() local
250 rnd_val = FIXP_DBL(1 << (scale - 1)); in qmfSynPrototypeFirSlot_NonSymmetric()
276 (Are + rnd_val)); /* Round-addition must not overflow */ in qmfSynPrototypeFirSlot_NonSymmetric()
278 SATURATE_RIGHT_SHIFT(Are + rnd_val, scale, SAMPLE_BITS_QMFOUT)); in qmfSynPrototypeFirSlot_NonSymmetric()
/external/libmicrohttpd/src/platform/
Dw32functions.c630 static int32_t rnd_val = 0; variable
638 if (0 == rnd_val) in MHD_W32_random_()
639 rnd_val = (int32_t)time(NULL); in MHD_W32_random_()
641 rnd_val = (16807 * (rnd_val % 127773) - 2836 * (rnd_val / 127773)) in MHD_W32_random_()
643 return (int)rnd_val; in MHD_W32_random_()
/external/tensorflow/tensorflow/python/kernel_tests/
Dpartitioned_variables_test.py434 rnd_val = rnd.eval()
456 self.assertAllClose(rnd_val, var_val)