Home
last modified time | relevance | path

Searched refs:fc_cell_t (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/sun4/sys/
H A Dfc_plat.h51 typedef unsigned long long fc_cell_t; typedef
65 #define fc_int2cell(i) ((fc_cell_t)((int)(i)))
70 #define fc_size2cell(u) ((fc_cell_t)((size_t)(u)))
71 #define fc_ssize2cell(i) ((fc_cell_t)((ssize_t)(i)))
75 #define fc_ull2cell_low(ll) ((fc_cell_t)(ll))
81 #define fc_cell2ptr(p) ((void *)((fc_cell_t)(p)))
82 #define fc_cell2int(i) ((int)((fc_cell_t)(i)))
86 #define fc_cell2uint8_t(b) ((uint8_t)((fc_cell_t)(b)))
87 #define fc_cell2size(u) ((size_t)((fc_cell_t)(u)))
88 #define fc_cell2ssize(i) ((ssize_t)((fc_cell_t)(i)))
[all …]
H A Dfcode.h143 fc_cell_t svc_name;
144 fc_cell_t nargs;
145 fc_cell_t nresults;
146 fc_cell_t error;
147 fc_cell_t priv_error;
148 fc_cell_t v[1]; /* variable array of args and results */
/illumos-gate/usr/src/uts/sun4/io/efcode/
H A Dfcode.c645 if (copyin((void *)arg, &tc, 3 * sizeof (fc_cell_t))) { in fc_run_priv()
657 csize = (FCC_FIXED_CELLS + nargs + nresults) * sizeof (fc_cell_t); in fc_run_priv()
662 if (copyin((void *)arg, cp, csize - (nresults * sizeof (fc_cell_t)))) { in fc_run_priv()
713 error = copyout(&cp->error, &ap->error, sizeof (fc_cell_t)); in fc_run_priv()
715 sizeof (fc_cell_t)); in fc_run_priv()
731 error = copyout(&cp->error, &ap->error, sizeof (fc_cell_t)); in fc_run_priv()
733 sizeof (fc_cell_t)); in fc_run_priv()
735 sizeof (fc_cell_t)); in fc_run_priv()
756 error = copyout(&cp->nresults, &ap->nresults, sizeof (fc_cell_t)); in fc_run_priv()
757 error |= copyout(&cp->error, &ap->error, sizeof (fc_cell_t)); in fc_run_priv()
[all …]