Searched refs:hw (Results 1 - 25 of 178) sorted by relevance

12345678

/fuchsia/zircon/scripts/
H A Dmake-parallel17 PARALLEL=-j`sysctl -n hw.ncpu`
20 PARALLEL=-j`sysctl -n hw.ncpu`
/fuchsia/zircon/system/dev/audio/usb-audio/
H A Dbinding.c8 #include <zircon/hw/usb.h>
9 #include <zircon/hw/usb-audio.h>
H A Dusb-audio.h10 #include <zircon/hw/usb.h>
11 #include <zircon/hw/usb-audio.h>
/fuchsia/zircon/system/dev/gpu/aml-gpu/
H A Ds912-gpu.h7 #include <soc/aml-s912/s912-hw.h>
H A Ds905d2-gpu.h8 #include <soc/aml-s905d2/s905d2-hw.h>
/fuchsia/zircon/third_party/ulib/musl/src/string/
H A Dmemmem.c6 uint16_t nw = n[0] << 8 | n[1], hw = h[0] << 8 | h[1]; local
7 for (h += 2, k -= 2; k; k--, hw = hw << 8 | *h++)
8 if (hw == nw)
10 return hw == nw ? (char*)h - 2 : 0;
15 uint32_t hw = h[0] << 24 | h[1] << 16 | h[2] << 8; local
16 for (h += 3, k -= 3; k; k--, hw = (hw | *h++) << 8)
17 if (hw == nw)
19 return hw
24 uint32_t hw = h[0] << 24 | h[1] << 16 | h[2] << 8 | h[3]; local
[all...]
H A Dstrstr.c5 uint16_t nw = n[0] << 8 | n[1], hw = h[0] << 8 | h[1]; local
6 for (h++; *h && hw != nw; hw = hw << 8 | *++h)
13 uint32_t hw = h[0] << 24 | h[1] << 16 | h[2] << 8; local
14 for (h += 2; *h && hw != nw; hw = (hw | *++h) << 8)
21 uint32_t hw = h[0] << 24 | h[1] << 16 | h[2] << 8 | h[3]; local
22 for (h += 3; *h && hw !
[all...]
/fuchsia/zircon/kernel/lib/gfxconsole/
H A Dgfxconsole.cpp44 // underlying hw surface, if different from above
264 struct gfx_surface hw; local
275 if (gfx_init_surface_from_display(&hw, info)) {
280 memcpy(&hw_surface, &hw, sizeof(hw));
288 if ((hw.format == hw_surface.format) && (hw.width == hw_surface.width) &&
289 (hw.height == hw_surface.height) && (hw.stride == hw_surface.stride) &&
290 (hw
[all...]
/fuchsia/zircon/system/dev/usb/usb-composite/
H A Dusb-interface.h8 #include <zircon/hw/usb.h>
/fuchsia/zircon/system/ulib/ddk/include/ddk/protocol/
H A Dsdhci.h7 #include <hw/sdhci.h>
/fuchsia/zircon/system/dev/board/vim/
H A Dvim-mali.c7 #include <hw/reg.h>
8 #include <soc/aml-s912/s912-hw.h>
H A Dvim-sdio.c8 #include <hw/reg.h>
9 #include <soc/aml-s912/s912-hw.h>
10 #include <soc/aml-a113/a113-hw.h>
H A Dvim-sd-emmc.c8 #include <hw/reg.h>
9 #include <soc/aml-s912/s912-hw.h>
10 #include <soc/aml-a113/a113-hw.h>
H A Dvim-canvas.c9 #include <soc/aml-s912/s912-hw.h>
H A Dvim-clk.c9 #include <soc/aml-s912/s912-hw.h>
H A Dvim-led2472g.c9 #include <soc/aml-s912/s912-hw.h>
/fuchsia/zircon/system/dev/lib/amlogic/
H A Ds905d2-mali.c8 #include <soc/aml-s905d2/s905d2-hw.h>
9 #include <hw/reg.h>
/fuchsia/zircon/system/dev/board/astro/
H A Dastro-rawnand.c13 #include <hw/reg.h>
14 #include <soc/aml-s905d2/s905d2-hw.h>
17 #include <zircon/hw/gpt.h>
H A Dastro-canvas.c11 #include <soc/aml-s905d2/s905d2-hw.h>
H A Dastro-clk.c9 #include <soc/aml-s905d2/s905d2-hw.h>
/fuchsia/zircon/system/dev/board/gauss/
H A Dgauss-rawnand.c13 #include <hw/reg.h>
14 #include <soc/aml-a113/a113-hw.h>
16 #include <zircon/hw/gpt.h>
19 #include "gauss-hw.h"
H A Dgauss-clk.c11 #include <soc/aml-a113/a113-hw.h>
H A Dgauss-i2c.c8 #include <soc/aml-a113/a113-hw.h>
/fuchsia/zircon/system/dev/board/imx8mevk/
H A Dimx8mevk-i2c.c10 #include <soc/imx8m/imx8m-hw.h>
/fuchsia/zircon/system/dev/lib/usb/include/ddk/usb/
H A Dusb.h10 #include <zircon/hw/usb.h>

Completed in 259 milliseconds

12345678