Searched refs:product1 (Results 1 – 9 of 9) sorted by relevance
/external/rust/crates/itertools/tests/ |
D | test_core.rs | 266 fn product1() { in product1() function 268 assert_eq!(v[..0].iter().cloned().product1::<i32>(), None); in product1() 269 assert_eq!(v[..1].iter().cloned().product1::<i32>(), Some(0)); in product1() 270 assert_eq!(v[1..3].iter().cloned().product1::<i32>(), Some(2)); in product1() 271 assert_eq!(v[1..5].iter().cloned().product1::<i32>(), Some(24)); in product1()
|
/external/libchrome/base/ |
D | hash.cc | 87 uint64_t product1 = static_cast<uint64_t>(value1a) * short_random1; in HashInts64() local 92 uint64_t hash64 = product1 + product2 + product3 + product4; in HashInts64()
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/CMSIS/Include/ |
D | arm_math.h | 5020 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_clarke_q31() local 5026 product1 = (q31_t) (((q63_t) Ia * 0x24F34E8B) >> 30); in arm_clarke_q31() 5032 *pIbeta = __QADD(product1, product2); in arm_clarke_q31() 5117 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_inv_clarke_q31() local 5123 product1 = (q31_t) (((q63_t) (Ialpha) * (0x40000000)) >> 31); in arm_inv_clarke_q31() 5129 *pIb = __QSUB(product2, product1); in arm_inv_clarke_q31() 5233 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_park_q31() local 5237 product1 = (q31_t) (((q63_t) (Ialpha) * (cosVal)) >> 31); in arm_park_q31() 5250 *pId = __QADD(product1, product2); in arm_park_q31() 5346 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_inv_park_q31() local [all …]
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/CMSIS/Include/ |
D | arm_math.h | 5020 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_clarke_q31() local 5026 product1 = (q31_t) (((q63_t) Ia * 0x24F34E8B) >> 30); in arm_clarke_q31() 5032 *pIbeta = __QADD(product1, product2); in arm_clarke_q31() 5117 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_inv_clarke_q31() local 5123 product1 = (q31_t) (((q63_t) (Ialpha) * (0x40000000)) >> 31); in arm_inv_clarke_q31() 5129 *pIb = __QSUB(product2, product1); in arm_inv_clarke_q31() 5233 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_park_q31() local 5237 product1 = (q31_t) (((q63_t) (Ialpha) * (cosVal)) >> 31); in arm_park_q31() 5250 *pId = __QADD(product1, product2); in arm_park_q31() 5346 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_inv_park_q31() local [all …]
|
/external/tensorflow/tensorflow/compiler/xla/client/lib/ |
D | prng.cc | 295 auto product1 = mul_hi_low(x[2], kPhiloxM4x32B); in Philox4x32() local 296 return Philox4x32State{product1.high ^ x[1] ^ key[0], product1.low, in Philox4x32()
|
/external/rust/crates/itertools/ |
D | CHANGELOG.md | 71 …tools.html#method.sum1) and [`.product1()`](https://docs.rs/itertools/0.8.1/itertools/trait.Iterto…
|
/external/python/cpython2/Lib/test/ |
D | test_itertools.py | 691 def product1(*args, **kwds): function 728 self.assertEqual(list(product(*args)), list(product1(*args)))
|
/external/rust/crates/itertools/src/ |
D | lib.rs | 2228 fn product1<P>(mut self) -> Option<P> in product1() method
|
/external/python/cpython3/Lib/test/ |
D | test_itertools.py | 1043 def product1(*args, **kwds): function 1080 self.assertEqual(list(product(*args)), list(product1(*args)))
|