Home
last modified time | relevance | path

Searched full:iout (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/arm-optimized-routines/math/test/rtest/
H A Dsemi.c489 char *test_modf(uint32 *x, uint32 *fout, uint32 *iout) { in test_modf() argument
498 fout[0] = iout[0] = x[0]; in test_modf()
499 fout[1] = iout[1] = x[1]; in test_modf()
503 test_rint(x, iout, 0, 0); in test_modf()
504 fh = x[0] - iout[0]; in test_modf()
505 fl = x[1] - iout[1]; in test_modf()
511 if (!(iout[0] & 0x7FFFFFFF) && !iout[1]) { /* no integer part */ in test_modf()
526 char *test_modff(uint32 *x, uint32 *fout, uint32 *iout) { in test_modff() argument
535 *fout = *iout = *x; in test_modff()
539 test_rintf(x, iout, 0, 0); in test_modff()
[all …]
H A Dsemi.h18 char *test_modf(uint32 *x, uint32 *iout, uint32 *fout);
24 char *test_modff(uint32 *x, uint32 *iout, uint32 *fout);
/freebsd/sys/contrib/device-tree/Bindings/iio/addac/
H A Dadi,ad74115.yaml196 either source or sink for VOUT and 4mA sink for IOUT.
198 1mA sink for IOUT.
/freebsd/sys/contrib/device-tree/src/arm/microchip/
H A Dat91-natte.dtsi42 iout-mux {
/freebsd/contrib/ee/
H A Dnew_curse.h242 extern void iout P_((WINDOW *window, int value));
H A Dnew_curse.c2890 iout(window, value); in wprintw()
2930 iout(window, value) /* output characters */ in iout() function
2937 iout(window, i);
/freebsd/contrib/sqlite3/
H A Dshell.c10540 int iOut = 0; in zipfileDequote() local
10545 zIn[iOut++] = c; in zipfileDequote()
10547 zIn[iOut] = '\0'; in zipfileDequote()
13143 int iOut = 0; in expertDequote() local
13150 zRet[iOut++] = zIn[iIn]; in expertDequote()
13152 zRet[iOut] = '\0'; in expertDequote()
19509 int iOut = 0; in recoverEscapeCrlf() local
19519 memcpy(&zOut[iOut], "replace(replace(", 16); in recoverEscapeCrlf()
19520 iOut += 16; in recoverEscapeCrlf()
19522 memcpy(&zOut[iOut], "replace(", 8); in recoverEscapeCrlf()
[all …]
H A Dsqlite3.c67698 int iOut = 0; /* Current index in output buffer */ local
67716 aTmp[iOut++] = logpage;
67724 *pnRight = iOut;
67725 memcpy(aLeft, aTmp, sizeof(aTmp[0])*iOut);
106136 ** Recompute pMerger->aTree[iOut] by comparing the next keys on the
106142 int iOut /* Store the result in pMerger->aTree[iOut] */
106150 assert( iOut<pMerger->nTree && iOut>0 );
106152 if( iOut>=(pMerger->nTree/2) ){
106153 i1 = (iOut - pMerger->nTree/2) * 2;
106156 i1 = pMerger->aTree[iOut*2];
[all …]