Home
last modified time | relevance | path

Searched refs:ncols (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dcurses_tests.py14 ncols, nlines = 8, 3
23 win = curses.newwin(nlines, ncols, uly, ulx)
24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
29 stdscr.addstr(uly+ncols+2, 0, "Text entered in the box\n")
36 stdscr.move(uly+ncols+2 + i, 0)
/device/google/contexthub/firmware/os/algos/common/math/
Dmat.h192 size_t nrows, size_t ncols);
199 size_t nrows, size_t ncols);
206 size_t nrows, size_t ncols);
Dmat.c574 size_t nrows, size_t ncols) { in matTransposeMultiplyMat() argument
580 memset(out, 0, sizeof(float) * ncols * ncols); in matTransposeMultiplyMat()
581 for (i = 0; i < ncols; ++i) { in matTransposeMultiplyMat()
582 for (j = 0; j < ncols; ++j) { in matTransposeMultiplyMat()
586 out[i * ncols + j] = out[j * ncols + i]; in matTransposeMultiplyMat()
589 out[i * ncols + j] = 0; in matTransposeMultiplyMat()
591 out[i * ncols + j] += A[k * ncols + i] * in matTransposeMultiplyMat()
592 A[k * ncols + j]; in matTransposeMultiplyMat()
600 size_t nrows, size_t ncols) { in matMultiplyVec() argument
606 const float *row = &A[i * ncols]; in matMultiplyVec()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcmd.py367 ncols = (size+nrows-1) // nrows
370 for col in range(ncols):
386 ncols = 1
390 for col in range(ncols):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcmd.py370 ncols = (size+nrows-1) // nrows
373 for col in range(ncols):
389 ncols = 1
393 for col in range(ncols):