Searched defs:hw (Results 1 - 25 of 72) sorted by relevance

123

/external/syslinux/gpxe/src/drivers/net/
H A Dprism2_pci.c26 hfa384x_t *hw = &hw_global; local
29 hw->membase = ioremap ( pci->membase, 0x100 );
34 return prism2_probe ( nic, hw );
H A Dprism2_plx.c30 * hw device structure to be filled in
36 static int prism2_find_plx ( hfa384x_t *hw, struct pci_device *p ) argument
52 /* Fill out hw structure */
53 hw->iobase = iobase;
83 hfa384x_t *hw = &hw_global; local
86 if ( ! prism2_find_plx ( hw, pci ) ) return 0;
87 nic->ioaddr = hw->iobase;
89 return prism2_probe ( nic, hw );
/external/libese/tools/ese_replay/
H A Dhw.h24 /* TODO(wad): Move this into a libese-hw/hw_loader.{h,cpp} impl. */
34 const struct Hardware hw[]; member in struct:SupportedHardware
37 bool initialize_hardware(struct EseInterface *ese, const struct Hardware *hw);
38 void release_hardware(const struct Hardware *hw);
H A Dmain.c32 #include "hw.h"
37 .hw =
42 .lib = "libese-hw-nxp-pn80t-nq-nci.so",
48 .lib = "libese-hw-fake.so",
54 .lib = "libese-hw-echo.so",
77 const struct Hardware *hw = &kSupportedHardware.hw[hw_id]; local
82 if (!initialize_hardware(&ese, hw)) {
87 if (ese_open(&ese, hw->options)) {
88 ALOGE("Cannot open hw");
[all...]
H A Dhw.c28 #include "hw.h"
33 printf("\t%s\t(%s / %s)\n", supported->hw[i].name, supported->hw[i].sym,
34 supported->hw[i].lib);
41 if (!strcmp(name, supported->hw[i].name)) {
49 void release_hardware(const struct Hardware *hw) { argument
50 void *hw_handle = dlopen(hw->lib, RTLD_NOW);
56 bool initialize_hardware(struct EseInterface *ese, const struct Hardware *hw) { argument
57 void *hw_handle = dlopen(hw->lib, RTLD_NOW);
62 const struct EseOperations **hw_ops = dlsym(hw_handle, hw
[all...]
/external/syslinux/gpxe/src/core/
H A Dhw.c16 struct hw { struct
24 static void hw_finished ( struct hw *hw, int rc ) { argument
25 xfer_nullify ( &hw->xfer );
26 xfer_close ( &hw->xfer, rc );
27 process_del ( &hw->process );
31 struct hw *hw = container_of ( xfer, struct hw, xfer ); local
33 hw_finished ( hw, r
46 struct hw *hw = container_of ( process, struct hw, process ); local
56 struct hw *hw; local
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_format.h9 unsigned hw; member in struct:nv30_format
13 unsigned hw; member in struct:nv30_vtxfmt
H A Dnv30_query.c36 struct nouveau_heap *hw; member in struct:nv30_query_object
46 if (qo && qo->hw)
47 ntfy = (char *)notify->map + query->offset + qo->hw->start;
60 nouveau_heap_free(&qo->hw);
75 /* allocate a new hw query object, if no hw objects left we need to
78 while (nouveau_heap_alloc(screen->query_heap, 32, NULL, &qo->hw)) {
160 PUSH_DATA (push, (q->report << 24) | q->qo[0]->hw->start);
189 PUSH_DATA (push, (q->report << 24) | q->qo[1]->hw->start);
264 PUSH_DATA (push, 0x02000000 | q->qo[1]->hw
[all...]
H A Dnv30_state_validate.c55 rt_format |= nv30_format(pscreen, fb->cbufs[0]->format)->hw;
69 rt_format |= nv30_format(pscreen, fb->zsbuf->format)->hw;
358 uint32_t hw = 0x00000000; local
361 hw |= (nv30->rast->pipe.sprite_coord_enable & 0xff) << 8;
363 hw |= fp->point_sprite_control;
366 if (hw)
370 hw |= NV30_3D_POINT_SPRITE_ENABLE;
375 PUSH_DATA (push, hw);
/external/syslinux/gpxe/src/drivers/net/ath5k/
H A Dath5k_attach.c101 * ath5k_hw_attach - Check if hw is supported and init the needed structs
105 * @hw: Returned newly allocated hardware structure, on success
113 struct ath5k_hw **hw)
322 *hw = ah;
112 ath5k_hw_attach(struct ath5k_softc *sc, u8 mac_version, struct ath5k_hw **hw) argument
/external/libnl/lib/netfilter/
H A Dlog_msg.c127 struct nfulnl_msg_packet_hw *hw = nla_data(attr); local
129 nfnl_log_msg_set_hwaddr(msg, hw->hw_addr, ntohs(hw->hw_addrlen));
H A Dqueue_msg.c127 struct nfqnl_msg_packet_hw *hw = nla_data(attr); local
129 nfnl_queue_msg_set_hwaddr(msg, hw->hw_addr,
130 ntohs(hw->hw_addrlen));
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv04_context.c52 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
64 fahrenheit = hw->eng3dm;
66 fahrenheit = hw->eng3d;
80 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
82 struct nv04_fifo *fifo = hw->chan->data;
85 PUSH_DATA (push, hw->surf3d->handle);
87 PUSH_DATA (push, hw->ntfy->handle);
92 PUSH_DATA (push, hw
146 struct nouveau_hw_state *hw; local
[all...]
H A Dnv20_context.c48 nouveau_pushbuf_bufctx(push, nctx->hw.bufctx);
100 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
101 struct nv04_fifo *fifo = hw->chan->data;
105 PUSH_DATA (push, hw->eng3d->handle);
107 PUSH_DATA (push, hw->ntfy->handle);
434 nouveau_object_del(&nctx->hw.eng3d);
490 NULL, 0, &nctx->hw.eng3d);
H A Dnv04_state_frag.c57 uint32_t hw; member in struct:combiner_state
76 (rc)->hw = 0; \
166 (rc)->hw |= ((flags & INVERT ? COMBINER_INVERT : 0) | \
172 (rc)->hw |= get_input_arg(rc, arg, flags) << COMBINER_SHIFT(in)
175 (rc)->hw |= ((rc)->logscale ? \
179 (rc)->hw |= ((rc)->logscale ? \
295 nv04->alpha[i] = rc_a.hw;
296 nv04->color[i] = rc_c.hw;
H A Dnv10_context.c180 nouveau_pushbuf_bufctx(push, nctx->hw.bufctx);
204 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
205 struct nv04_fifo *fifo = hw->chan->data;
209 PUSH_DATA (push, hw->eng3d->handle);
211 PUSH_DATA (push, hw->ntfy->handle);
423 nouveau_object_del(&nctx->hw.eng3d);
482 NULL, 0, &nctx->hw.eng3d);
H A Dnouveau_context.h77 struct nouveau_hw_state hw; member in struct:nouveau_context
94 (to_nouveau_context(ctx)->hw.chan)
96 (to_nouveau_context(ctx)->hw.client)
98 (to_nouveau_context(ctx)->hw.pushbuf)
100 (to_nouveau_context(ctx)->hw.eng3d)
H A Dnv04_surface.c204 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
205 struct nouveau_object *swzsurf = hw->swzsurf;
206 struct nv04_fifo *fifo = hw->chan->data;
269 PUSH_DATA (push, hw->surf3d->handle);
285 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
286 struct nv04_fifo *fifo = hw->chan->data;
433 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
466 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
482 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
[all...]
/external/python/cpython2/Lib/idlelib/idle_test/
H A Dtest_text.py9 hw = 'hello\nworld' # usual initial insert after initialization variable in class:TextTest
10 hwn = hw+'\n' # \n present at initialization, before insert
32 self.text.insert('1.0', self.hw)
46 self.text.insert('1.0', self.hw)
58 Equal(get('1.0', '2.5'), self.hw)
67 insert('1.0', self.hw)
93 self.text.insert('1.0', self.hw)
117 self.text.insert('1.0', self.hw)
141 self.text.insert('1.0', self.hw)
149 self.text.insert('1.0', self.hw)
[all...]
/external/skia/gm/
H A Dverylargebitmap.cpp59 int hw = width / 2; local
61 SkIRect subset = SkIRect::MakeLTRB(hw - 64, hh - 32, hw + 64, hh + 32);
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_misc.c89 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer; local
94 pipe_surface_reference(&hw->cbufs[i], NULL);
98 pipe_surface_reference(&hw->zsbuf, NULL);
H A Dsvga_shader.c491 struct svga_hw_draw_state *hw = &svga->state.hw_draw; local
508 if (svga->rebind.flags.vs && hw->vs && hw->vs->gb_shader) {
509 ret = swc->resource_rebind(swc, NULL, hw->vs->gb_shader, SVGA_RELOC_READ);
515 if (svga->rebind.flags.gs && hw->gs && hw->gs->gb_shader) {
516 ret = swc->resource_rebind(swc, NULL, hw->gs->gb_shader, SVGA_RELOC_READ);
522 if (svga->rebind.flags.fs && hw->fs && hw->fs->gb_shader) {
523 ret = swc->resource_rebind(swc, NULL, hw
[all...]
H A Dsvga_state_framebuffer.c57 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer; local
70 if ((curr->cbufs[i] != hw->cbufs[i]) || (reemit && hw->cbufs[i])) {
79 pipe_surface_reference(&hw->cbufs[i], curr->cbufs[i]);
83 if ((curr->zsbuf != hw->zsbuf) || (reemit && hw->zsbuf)) {
101 pipe_surface_reference(&hw->zsbuf, curr->zsbuf);
120 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer; local
127 if (hw->cbufs[i]) {
129 hw
169 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer; local
296 struct svga_hw_draw_state *hw = &svga->state.hw_draw; local
[all...]
/external/pdfium/core/fxge/ge/
H A Dcfx_pathdata.cpp17 FX_FLOAT hw) {
20 rect->UpdateRect(end_pos.x + hw, end_pos.y + hw);
21 rect->UpdateRect(end_pos.x - hw, end_pos.y - hw);
27 point_y = end_pos.y - hw;
29 point_y = end_pos.y + hw;
31 rect->UpdateRect(end_pos.x + hw, point_y);
32 rect->UpdateRect(end_pos.x - hw, point_y);
39 point_x = end_pos.x - hw;
14 UpdateLineEndPoints(CFX_FloatRect* rect, const CFX_PointF& start_pos, const CFX_PointF& end_pos, FX_FLOAT hw) argument
[all...]
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvoe.h100 webrtc::VoEHardware* hw,
108 hw_(hw),
118 webrtc::VoEHardware* hw() const { return hw_.get(); } function in class:cricket::VoEWrapper
97 VoEWrapper(webrtc::VoEAudioProcessing* processing, webrtc::VoEBase* base, webrtc::VoECodec* codec, webrtc::VoEHardware* hw, webrtc::VoENetwork* network, webrtc::VoERTP_RTCP* rtp, webrtc::VoEVolumeControl* volume) argument

Completed in 686 milliseconds

123