Searched defs:volume (Results 1 - 25 of 33) sorted by relevance

12

/vbox/src/VBox/Additions/haiku/SharedFolders/
H A Dvnode_cache.cpp117 extern "C" status_t vboxsf_get_vnode(fs_volume* volume, ino_t id, fs_vnode* vnode, argument
130 extern "C" status_t vboxsf_put_vnode(fs_volume* volume, fs_vnode* vnode, bool reenter) argument
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdpsnd_oss.c384 uint32 volume; local
386 volume = left / (65536 / 100);
387 volume |= right / (65536 / 100) << 8;
389 if (ioctl(dsp_fd, MIXER_WRITE(SOUND_MIXER_PCM), &volume) == -1)
391 warning("hardware volume control unavailable, falling back to software volume control!\n");
H A Drdpsnd_sun.c387 uint volume; local
391 volume = (left > right) ? left : right;
393 if (volume / AUDIO_MID_BALANCE != 0)
396 AUDIO_MID_BALANCE - (left / (volume / AUDIO_MID_BALANCE)) +
397 (right / (volume / AUDIO_MID_BALANCE));
404 info.play.gain = volume / (65536 / AUDIO_MAX_GAIN);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dvolume.c77 ERR("Volume should be part of a volume texture\n");
313 WARN("Trying to unlock unlocked volume %p.\n", iface);
316 TRACE("(%p) : unlocking volume\n", This);
409 HRESULT volume_init(IWineD3DVolumeImpl *volume, IWineD3DDeviceImpl *device, UINT width, argument
424 WARN("Volume cannot be created - no volume texture support.\n");
428 volume->lpVtbl = &IWineD3DVolume_Vtbl;
430 hr = resource_init((IWineD3DResource *)volume, WINED3DRTYPE_VOLUME, device,
442 volume->currentDesc.Width = width;
443 volume->currentDesc.Height = height;
444 volume
[all...]
H A Dvolumetexture.c95 IWineD3DVolume *volume = This->volumes[i]; local
97 if (volume)
100 IWineD3DVolume_SetContainer(volume, NULL);
101 IWineD3DVolume_Release(volume);
277 TRACE("(%p) -> level(%d) returning volume@%p\n", This, Level, *ppVolumeLevel);
319 TRACE("(%p) : dirtyfication of volume Level (0)\n", This);
357 /* volume texture */
383 ERR("shared handle support for volume textures not impemented yet, ignoring!");
397 WARN("(%p) : Texture cannot be created - no volume texture support.\n", texture);
451 /* Create the volume
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Dvolume.c60 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
64 if (volume->forwardReference)
67 TRACE("Forwarding to %p,\n", volume->forwardReference);
68 return IUnknown_AddRef(volume->forwardReference);
73 ULONG ref = InterlockedIncrement(&volume->refcount);
80 wined3d_volume_incref(volume->wined3d_volume);
90 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
94 if (volume->forwardReference)
97 TRACE("Forwarding to %p.\n", volume->forwardReference);
98 return IUnknown_Release(volume
120 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
141 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
159 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
176 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
192 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
210 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
236 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
256 struct d3d8_volume *volume = impl_from_IDirect3DVolume8(iface); local
295 volume_init(struct d3d8_volume *volume, struct d3d8_device *device, UINT width, UINT height, UINT depth, DWORD usage, enum wined3d_format_id format, enum wined3d_pool pool) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/
H A Dvolume.c61 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
66 if (volume->forwardReference)
68 TRACE("Forwarding to %p.\n", volume->forwardReference);
69 return IUnknown_AddRef(volume->forwardReference);
72 refcount = InterlockedIncrement(&volume->refcount);
78 wined3d_volume_incref(volume->wined3d_volume);
87 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
92 if (volume->forwardReference)
94 TRACE("Forwarding to %p.\n", volume->forwardReference);
95 return IUnknown_Release(volume
113 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
134 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
152 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
169 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
185 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
202 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
227 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
247 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface); local
286 volume_init(struct d3d9_volume *volume, struct d3d9_device *device, UINT width, UINT height, UINT depth, DWORD usage, enum wined3d_format_id format, enum wined3d_pool pool , HANDLE *shared_handle , void *pvClientMem ) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Dvolume.c267 HRESULT volume_init(IDirect3DVolume8Impl *volume, IDirect3DDevice8Impl *device, UINT width, UINT height, argument
272 volume->lpVtbl = &Direct3DVolume8_Vtbl;
273 volume->ref = 1;
276 format, pool, &volume->wineD3DVolume, (IUnknown *)volume, &d3d8_volume_wined3d_parent_ops);
279 WARN("Failed to create wined3d volume, hr %#x.\n", hr);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Dvolume.c278 HRESULT volume_init(IDirect3DVolume9Impl *volume, IDirect3DDevice9Impl *device, UINT width, UINT height, argument
288 volume->lpVtbl = &Direct3DVolume9_Vtbl;
289 volume->ref = 1;
293 format, pool, &volume->wineD3DVolume, (IUnknown *)volume, &d3d9_volume_wined3d_parent_ops,
297 format, pool, &volume->wineD3DVolume, (IUnknown *)volume, &d3d9_volume_wined3d_parent_ops);
301 WARN("Failed to create wined3d volume, hr %#x.\n", hr);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon6824
46 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon7449
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon7824
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon8177
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon8496
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon8815
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon9129
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon9448
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon4974
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon5286
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon5598
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon5908
46 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon6211
46 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon6509
46 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dmsp3430.h27 CARD8 volume; member in struct:__anon4607
47 /* a handy volume transform function, -1000..1000 -> 0x01..0x7F */
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dvolume.c42 static void volume_bind_and_dirtify(const struct wined3d_volume *volume, struct wined3d_context *context) argument
44 struct wined3d_texture *container = volume->container;
55 active_sampler = volume->resource.device->rev_tex_unit_map[context->active_texture];
58 device_invalidate_state(volume->resource.device, STATE_SAMPLER(active_sampler));
63 void volume_add_dirty_box(struct wined3d_volume *volume, const struct wined3d_box *dirty_box) argument
65 volume->dirty = TRUE;
68 volume->lockedBox.left = min(volume->lockedBox.left, dirty_box->left);
69 volume->lockedBox.top = min(volume
86 volume_set_container(struct wined3d_volume *volume, struct wined3d_texture *container) argument
94 volume_load(const struct wined3d_volume *volume, struct wined3d_context *context, UINT level, BOOL srgb_mode) argument
127 wined3d_volume_incref(struct wined3d_volume *volume) argument
145 wined3d_volume_decref(struct wined3d_volume *volume) argument
163 HeapFree(GetProcessHeap(), 0, volume); local
169 wined3d_volume_get_parent(const struct wined3d_volume *volume) argument
176 wined3d_volume_set_priority(struct wined3d_volume *volume, DWORD priority) argument
181 wined3d_volume_get_priority(const struct wined3d_volume *volume) argument
187 wined3d_volume_preload(struct wined3d_volume *volume) argument
192 wined3d_volume_get_resource(struct wined3d_volume *volume) argument
199 wined3d_volume_map(struct wined3d_volume *volume, struct wined3d_map_desc *map_desc, const struct wined3d_box *box, DWORD flags) argument
272 wined3d_volume_unmap(struct wined3d_volume *volume) argument
293 volume_init(struct wined3d_volume *volume, struct wined3d_device *device, UINT width, UINT height, UINT depth, DWORD usage, enum wined3d_format_id format_id, enum wined3d_pool pool, void *parent, const struct wined3d_parent_ops *parent_ops , HANDLE *shared_handle , void *pvClientMem ) argument
[all...]

Completed in 2390 milliseconds

12