HomeSort by relevance Sort by last modified time
    Searched defs:hw (Results 1 - 25 of 393) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/drivers/net/
prism2_pci.c 26 hfa384x_t *hw = &hw_global; local
29 hw->membase = ioremap ( pci->membase, 0x100 );
34 return prism2_probe ( nic, hw );
prism2_plx.c 30 * hw device structure to be filled in
36 static int prism2_find_plx ( hfa384x_t *hw, struct pci_device *p )
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 );
  /hardware/qcom/display/msm8998/sdm/libs/core/
hw_interface.cpp 50 HWInterface *hw = nullptr; local
56 hw = new HWPrimary(buffer_sync_handler, hw_info_intf);
59 hw = new HWDeviceDRM(buffer_sync_handler, hw_info_intf);
65 hw = new HWHDMI(buffer_sync_handler, hw_info_intf);
72 hw = new HWVirtual(buffer_sync_handler, hw_info_intf);
82 error = hw->Init();
84 delete hw;
85 DLOGE("Init on HW Intf type %d failed", type);
88 *intf = hw;
  /cts/suite/audio_quality/lib/src/task/
TaskInput.cpp 52 android::sp<AudioHardware> hw = AudioHardware::createAudioHw(localDevice, false, local
54 if (hw.get() == NULL) {
69 if (!hw->prepare(AudioHardware::ESampleRate_44100, mVolume, mMode)) {
73 if (!hw->startPlaybackOrRecord(buffer)) {
78 mHw = hw;
TaskOutput.cpp 48 android::sp<AudioHardware> hw = AudioHardware::createAudioHw(localDevice, true, getTestCase()); local
49 if (hw.get() == NULL) {
50 LOGE("cannot create Audio HW");
53 if (!hw->prepare(AudioHardware::ESampleRate_44100, mVolume, mMode)) {
64 if (!hw->startPlaybackOrRecord(buffer)) {
73 AudioRemotePlayback* remote = reinterpret_cast<AudioRemotePlayback*>(hw.get());
79 mHw = hw;
  /cts/suite/audio_quality/lib/src/audio/
AudioHardware.cpp 79 android::sp<AudioHardware> hw; local
88 hw = new AudioPlaybackLocal(mHwId);
90 hw = new AudioRecordingLocal(mHwId);
95 hw = new AudioRemotePlayback(testCase->getRemoteAudio());
97 hw = new AudioRemoteRecording(testCase->getRemoteAudio());
101 return hw;
  /external/libnl/lib/netfilter/
log_msg.c 127 struct nfulnl_msg_packet_hw *hw = nla_data(attr); local
129 nfnl_log_msg_set_hwaddr(msg, hw->hw_addr, ntohs(hw->hw_addrlen));
queue_msg.c 127 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/gallium/drivers/nv30/
nv30_format.h 9 unsigned hw; member in struct:nv30_format
13 unsigned hw; member in struct:nv30_vtxfmt
nv30_query.c 36 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)) {
159 PUSH_DATA (push, (q->report << 24) | q->qo[0]->hw->start);
187 PUSH_DATA (push, (q->report << 24) | q->qo[1]->hw->start);
254 PUSH_DATA (push, 0x02000000 | q->qo[1]->hw->start)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_misc.c 54 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer; local
59 pipe_surface_reference(&hw->cbufs[i], NULL);
63 pipe_surface_reference(&hw->zsbuf, NULL);
svga_resource_texture.c 142 void *hw, *sw; local
166 hw = sws->buffer_map(sws, st->hwbuf, usage);
167 assert(hw);
168 if (hw) {
169 memcpy(hw, sw, length);
187 hw = sws->buffer_map(sws, st->hwbuf, PIPE_TRANSFER_READ);
188 assert(hw);
189 if(hw) {
190 memcpy(sw, hw, length);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_context.c 48 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);
488 NULL, 0, &nctx->hw.eng3d);
nv04_context.c 52 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->eng3d->handle)
145 struct nouveau_hw_state *hw; local
    [all...]
nv10_context.c 180 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);
480 NULL, 0, &nctx->hw.eng3d);
nv04_state_frag.c 56 /* Derived HW state */
57 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;
nv04_surface.c 204 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;
207 /* Max width & height may not be the same on all HW, but must be POT */
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/syslinux/gpxe/src/core/
hw.c 16 struct hw { struct
24 static void hw_finished ( struct hw *hw, int rc ) {
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, rc )
46 struct hw *hw = container_of ( process, struct hw, process ); local
56 struct hw *hw; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
zmouse.h 36 HWND hw = FindWindow (MSH_WHEELMODULE_CLASS, MSH_WHEELMODULE_TITLE); local
41 *pf3DSupport = (*puiMsh_Msg3DSupport ? (WINBOOL) SendMessage (hw, *puiMsh_Msg3DSupport, 0, 0) : FALSE);
42 *piScrollLines = (*puiMsh_MsgScrollLines ? (int)SendMessage (hw, *puiMsh_MsgScrollLines, 0, 0) : 3);
43 return hw;
  /device/huawei/angler/camera/QCamera2/
QCamera2Factory.cpp 321 QCamera3HardwareInterface *hw = new QCamera3HardwareInterface(mHalDescriptors[camera_id].cameraId, local
323 if (!hw) {
327 rc = hw->openCamera(hw_device);
329 delete hw;
332 QCamera2HardwareInterface *hw = new QCamera2HardwareInterface((uint32_t)camera_id); local
333 if (!hw) {
337 rc = hw->openCamera(hw_device);
339 delete hw;
412 QCamera2HardwareInterface *hw = local
414 if (!hw) {
    [all...]
  /device/lge/bullhead/camera/QCamera2/
QCamera2Factory.cpp 321 QCamera3HardwareInterface *hw = new QCamera3HardwareInterface(mHalDescriptors[camera_id].cameraId, local
323 if (!hw) {
327 rc = hw->openCamera(hw_device);
329 delete hw;
332 QCamera2HardwareInterface *hw = new QCamera2HardwareInterface((uint32_t)camera_id); local
333 if (!hw) {
337 rc = hw->openCamera(hw_device);
339 delete hw;
412 QCamera2HardwareInterface *hw = local
414 if (!hw) {
    [all...]
  /external/skia/gm/
verylargebitmap.cpp 59 int hw = width / 2; local
61 SkIRect subset = SkIRect::MakeLTRB(hw - 64, hh - 32, hw + 64, hh + 32);
  /device/google/marlin/camera/QCamera2/
QCamera2Factory.cpp 389 QCamera3HardwareInterface *hw = new QCamera3HardwareInterface(mHalDescriptors[camera_id].cameraId, local
391 if (!hw) {
395 rc = hw->openCamera(hw_device);
397 delete hw;
400 QCamera2HardwareInterface *hw = new QCamera2HardwareInterface((uint32_t)camera_id); local
401 if (!hw) {
405 rc = hw->openCamera(hw_device);
407 delete hw;
486 QCamera2HardwareInterface *hw = local
488 if (!hw) {
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvoe.h 100 webrtc::VoEHardware* hw,
108 hw_(hw),
118 webrtc::VoEHardware* hw() const { return hw_.get(); } function in class:cricket::VoEWrapper
  /libcore/luni/src/test/java/libcore/java/io/
OldCharArrayReaderTest.java 25 char[] hw = { 'H', 'e', 'l', 'l', 'o', 'W', 'o', 'r', 'l', 'd' }; field in class:OldCharArrayReaderTest
36 cr = new CharArrayReader(hw);
54 cr = new CharArrayReader(hw, -1, 0);
60 cr = new CharArrayReader(hw, 0, -1);
66 cr = new CharArrayReader(hw, hw.length + 1, 1);
72 cr = new CharArrayReader(hw, 5, 5);
82 cr = new CharArrayReader(hw);
97 cr = new CharArrayReader(hw);
118 cr = new CharArrayReader(hw);
    [all...]

Completed in 762 milliseconds

1 2 3 4 5 6 7 8 91011>>