Searched refs:cell_t (Results 1 - 25 of 65) sorted by relevance

123

/freebsd-11.0-release/sys/boot/ofw/libofw/
H A Dopenfirm.c115 cell_t name;
116 cell_t nargs;
117 cell_t nreturns;
118 cell_t service;
119 cell_t missing;
121 (cell_t)"test",
126 args.service = (cell_t)name;
137 cell_t name;
138 cell_t nargs;
139 cell_t nreturn
[all...]
H A Dlibofw.h79 cell_t base;
80 cell_t size;
85 cell_t base_hi;
86 cell_t base_lo;
87 cell_t size;
H A Dopenfirm.h70 typedef unsigned long int cell_t; typedef
H A Dofw_memory.c122 cell_t available[4];
123 cell_t acells;
/freebsd-11.0-release/sys/dev/ofw/
H A Dofw_standard.c76 cell_t *returns);
97 const char *method, int nargs, int nreturns, cell_t *args_and_returns);
169 cell_t name;
170 cell_t nargs;
171 cell_t nreturns;
172 cell_t service;
173 cell_t missing;
175 (cell_t)"test",
180 args.service = (cell_t)name;
187 ofw_std_interpret(ofw_t ofw, const char *cmd, int nreturns, cell_t *return
[all...]
/freebsd-11.0-release/sys/powerpc/ofw/
H A Dofw_real.c101 int nargs, int nreturns, cell_t *args_and_returns);
103 cell_t *returns);
230 static cell_t
234 cell_t phys;
245 return (cell_t)(uintptr_t)buf;
282 ofw_real_unmap(cell_t physaddr, void *buf, size_t len)
317 cell_t name;
318 cell_t nargs;
319 cell_t nreturns;
320 cell_t servic
[all...]
H A Drtas.c76 cell_t rtas_size = 0, rtas_ptr;
136 (cell_t)rtas_private_data, &rtas_ptr);
150 static cell_t
153 cell_t phys;
181 rtas_real_unmap(cell_t physaddr, void *buf, size_t len)
200 rtas_call_method(cell_t token, int nargs, int nreturns, ...)
206 cell_t token;
207 cell_t nargs;
208 cell_t nreturns;
209 cell_t args_n_result
[all...]
H A Dofw_machdep.c146 cell_t address_cells, size_cells;
147 cell_t OFmem[4 * PHYS_AVAIL_SZ];
174 while (i < sz/sizeof(cell_t)) {
414 cell_t name;
415 cell_t nargs;
416 cell_t nreturns;
421 args.name = (cell_t)(uintptr_t)"quiesce";
532 cell_t name;
533 cell_t nargs;
534 cell_t nreturn
[all...]
/freebsd-11.0-release/sys/arm64/include/
H A Dofw_machdep.h37 typedef uint32_t cell_t; typedef
/freebsd-11.0-release/sys/riscv/include/
H A Dofw_machdep.h33 typedef uint32_t cell_t; typedef
/freebsd-11.0-release/sys/powerpc/include/
H A Drtas.h46 int rtas_call_method(cell_t token, int nargs, int nreturns, ...);
47 cell_t rtas_token_lookup(const char *method);
H A Dofw_machdep.h38 typedef uint32_t cell_t; typedef
/freebsd-11.0-release/sys/x86/include/
H A Dofw_machdep.h35 typedef uint32_t cell_t; typedef
/freebsd-11.0-release/sys/mips/include/
H A Dofw_machdep.h36 typedef uint32_t cell_t; typedef
/freebsd-11.0-release/sys/arm/include/
H A Dofw_machdep.h40 typedef uint32_t cell_t; typedef
/freebsd-11.0-release/sys/sparc64/include/
H A Dofw_machdep.h35 typedef uint64_t cell_t; typedef
/freebsd-11.0-release/sys/powerpc/pseries/
H A Dplpar_iommu.c76 cell_t dma_acells, dma_scells, dmawindow[6];
92 sizeof(cell_t)) <= 0)
94 sizeof(cell_t));
96 sizeof(cell_t)) <= 0)
98 sizeof(cell_t));
102 sizeof(cell_t)*(dma_scells + dma_acells + 1));
105 sizeof(cell_t)*(dma_scells + dma_acells + 1));
H A Drtas_dev.c107 cell_t tod[8];
108 cell_t token;
136 cell_t token, status;
157 cell_t token, status;
H A Dxics.c199 cell_t status, cpu;
265 cell_t status, cpu;
313 cell_t status;
325 cell_t status;
/freebsd-11.0-release/contrib/dtc/
H A Ddtc.h62 typedef uint32_t cell_t; typedef
111 struct data data_append_cell(struct data d, cell_t word);
157 cell_t phandle;
207 cell_t propval_cell(struct property *prop);
215 struct node *get_node_by_phandle(struct node *tree, cell_t phandle);
217 cell_t get_node_phandle(struct node *root, struct node *node);
H A Dtreesource.c140 cell_t *cp = (cell_t *)val.val;
219 if ((m->offset % sizeof(cell_t)) != 0)
227 } else if (((len % sizeof(cell_t)) == 0) && (nnotcelllbl == 0)) {
/freebsd-11.0-release/sys/dev/vt/hw/fb/
H A Dvt_early_fb.c79 cell_t retval;
117 (cell_t)((info->fb_cmap[i] >> 16) & 0xff),
118 (cell_t)((info->fb_cmap[i] >> 8) & 0xff),
119 (cell_t)((info->fb_cmap[i] >> 0) & 0xff),
120 (cell_t)i, &retval);
/freebsd-11.0-release/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c284 cell_t retval;
304 (cell_t)((sc->fb.fb_cmap[i] >> 16) & 0xff),
305 (cell_t)((sc->fb.fb_cmap[i] >> 8) & 0xff),
306 (cell_t)((sc->fb.fb_cmap[i] >> 0) & 0xff),
307 (cell_t)i, &retval);
383 OF_call_method("set-depth", sc->sc_handle, 1, 1, (cell_t)32, &i);
/freebsd-11.0-release/sys/sparc64/sparc64/
H A Dtrap.c240 cell_t name;
241 cell_t nargs;
242 cell_t nreturns;
243 cell_t tba_addr;
245 (cell_t)"SUNW,set-trap-table",
250 args.tba_addr = (cell_t)tba_addr;
H A Dvm_machdep.c336 cell_t name;
337 cell_t nargs;
338 cell_t nreturns;
339 cell_t bootspec;
341 (cell_t)"boot",
344 (cell_t)bspec

Completed in 141 milliseconds

123