HomeSort by relevance Sort by last modified time
    Searched refs:a_inv (Results 1 - 2 of 2) sorted by null

  /external/boringssl/src/crypto/fipsmodule/bn/
rsaz_exp.c 74 unsigned char *a_inv, *m, *result, local
82 a_inv = storage + 320;
87 a_inv = storage + (320 * 2);
91 rsaz_1024_norm2red_avx2(a_inv, base_norm);
99 /* table[1] = a_inv^1 */
100 rsaz_1024_mul_avx2(a_inv, a_inv, R2, m, k0);
103 rsaz_1024_scatter5_avx2(table_s,a_inv,1);
105 /* table[2] = a_inv^2 */
106 rsaz_1024_sqr_avx2(result, a_inv, m, k0, 1)
    [all...]
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
utils.h 364 inline bool Invert2x2(const T* const a, float* const a_inv) {
371 a_inv[0] = inv_det * static_cast<float>(a[3]); // d
372 a_inv[1] = inv_det * static_cast<float>(-a[1]); // -b
373 a_inv[2] = inv_det * static_cast<float>(-a[2]); // -c
374 a_inv[3] = inv_det * static_cast<float>(a[0]); // a

Completed in 138 milliseconds