Searched refs:band_end (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/linalg/ |
D | matrix_band_part_op.cc | 165 const int64_t band_end = num_upper_diags < 0 in operator ()() local 174 if (band_end < n) { in operator ()() 175 std::fill(&output(batch, row, band_end), &output(batch, row, n), in operator ()() 179 if (band_start < band_end) { in operator ()() 183 1, 1, band_end - band_start); in operator ()()
|
D | matrix_band_part_op_gpu.cu.cc | 42 const int band_end = (num_upper_diags < 0 ? n : row + num_upper_diags + 1); in MatrixBandPartKernel() local 43 if (col < band_start || col >= band_end) { in MatrixBandPartKernel()
|
D | cholesky_op_gpu.cu.cc | 50 const int band_end = (num_upper_diags < 0 ? n : row + num_upper_diags + 1); in MatrixBandFillKernel() local 51 if (col < band_start || col >= band_end) { in MatrixBandFillKernel()
|
/external/libopus/src/ |
D | analysis.c | 791 int band_start, band_end; in tonality_analysis() local 794 band_end = tbands[b+1]; in tonality_analysis() 795 for (i=band_start;i<band_end;i++) in tonality_analysis() 817 …if (E*1e9f > maxE && (Em > 3*noise_floor*(band_end-band_start) || E > noise_floor*(band_end-band_s… in tonality_analysis()
|
/external/libopus/celt/ |
D | bands.c | 220 int j, band_end; in denormalise_bands() local 227 band_end = M*eBands[i+1]; in denormalise_bands() 255 } while (++j<band_end); in denormalise_bands() 261 } while (++j<band_end); in denormalise_bands()
|