/external/google-benchmark/src/ |
benchmark_register.h | 17 static const T kmax = std::numeric_limits<T>::max(); local 20 for (T i = 1; i < kmax / mult; i *= mult) {
|
/external/libcxx/utils/google-benchmark/src/ |
benchmark_register.h | 17 static const T kmax = std::numeric_limits<T>::max(); local 20 for (T i = 1; i < kmax / mult; i *= mult) {
|
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_pruneL.h | 60 Index kmin = 0, kmax = 0, minloc, maxloc,krow; local 81 kmax = glu.xlsub(irep1) - 1; 82 for (krow = kmin; krow <= kmax; krow++) 100 while (kmin <= kmax) 102 if (perm_r(glu.lsub(kmax)) == emptyIdxLU) 103 kmax--; 108 // kmin below pivrow (not yet pivoted), and kmax 110 std::swap(glu.lsub(kmin), glu.lsub(kmax)); 119 maxloc = glu.xlusup(irep) + ( kmax - glu.xlsub(irep) ); 123 kmax-- [all...] |
/external/libxaac/decoder/ |
ixheaacd_esbr_polyphase.c | 209 WORD32 kmax = (synth_size >> 1); local 210 FLOAT32 *syn_buf = &buffer[kmax]; 211 kmax += synth_size; 219 for (k = 0; k < kmax; k++) { 226 kmax -= synth_size; 228 for (k = 0; k < kmax; k++) {
|
/external/webp/include/webp/ |
mux.h | 429 int kmax; // Minimum and maximum distance between consecutive key member in struct:WebPAnimEncoderOptions 432 // Note that these conditions should hold: kmax > kmin 433 // and kmin >= kmax / 2 + 1. Also, if kmax <= 0, then 434 // key-frame insertion is disabled; and if kmax == 1,
|
/external/webp/src/webp/ |
mux.h | 429 int kmax; // Minimum and maximum distance between consecutive key member in struct:WebPAnimEncoderOptions 432 // Note that these conditions should hold: kmax > kmin 433 // and kmin >= kmax / 2 + 1. Also, if kmax <= 0, then 434 // key-frame insertion is disabled; and if kmax == 1,
|
/external/lmfit/lib/ |
lmmin.c | 807 int i, j, k, kmax; local 826 kmax = j; 828 if (Rdiag[k] > Rdiag[kmax]) 829 kmax = k; 831 if (kmax != j) { 832 /* Swap columns j and kmax. */ 834 Pivot[j] = Pivot[kmax]; 835 Pivot[kmax] = k; 838 A[j*m+i] = A[kmax*m+i]; 839 A[kmax*m+i] = temp [all...] |