/third_party/pulseaudio/src/pulsecore/ |
D | svolume_c.c | 31 static void pa_volume_u8_c(uint8_t *samples, const int32_t *volumes, unsigned channels, unsigned le… in pa_volume_u8_c() argument 35 int32_t t = pa_mult_s16_volume(*samples - 0x80, volumes[channel]); in pa_volume_u8_c() 45 static void pa_volume_alaw_c(uint8_t *samples, const int32_t *volumes, unsigned channels, unsigned … in pa_volume_alaw_c() argument 49 int32_t t = pa_mult_s16_volume(st_alaw2linear16(*samples), volumes[channel]); in pa_volume_alaw_c() 59 static void pa_volume_ulaw_c(uint8_t *samples, const int32_t *volumes, unsigned channels, unsigned … in pa_volume_ulaw_c() argument 63 int32_t t = pa_mult_s16_volume(st_ulaw2linear16(*samples), volumes[channel]); in pa_volume_ulaw_c() 73 static void pa_volume_s16ne_c(int16_t *samples, const int32_t *volumes, unsigned channels, unsigned… in pa_volume_s16ne_c() argument 79 int32_t t = pa_mult_s16_volume(*samples, volumes[channel]); in pa_volume_s16ne_c() 89 static void pa_volume_s16re_c(int16_t *samples, const int32_t *volumes, unsigned channels, unsigned… in pa_volume_s16re_c() argument 95 int32_t t = pa_mult_s16_volume(PA_INT16_SWAP(*samples), volumes[channel]); in pa_volume_s16re_c() [all …]
|
D | svolume_orc.c | 35 pa_volume_s16ne_orc(int16_t *samples, const int32_t *volumes, unsigned channels, unsigned length) { in pa_volume_s16ne_orc() argument 37 int64_t v = (int64_t)volumes[1] << 32 | volumes[0]; in pa_volume_s16ne_orc() 40 pa_volume_s16ne_orc_1ch (samples, volumes[0], length / (sizeof(int16_t))); in pa_volume_s16ne_orc() 42 fallback(samples, volumes, channels, length); in pa_volume_s16ne_orc()
|
D | svolume_arm.c | 43 static void pa_volume_s16ne_arm(int16_t *samples, const int32_t *volumes, unsigned channels, unsign… in pa_volume_s16ne_arm() argument 47 const int32_t *ve = volumes + (channels == 3 ? 6 : PA_MAX (4U, channels)); in pa_volume_s16ne_arm() 52 _volume_ref(samples, volumes, channels, rem < length ? rem : length); in pa_volume_s16ne_arm() 62 " mov r6, %4 \n\t" /* r6 = volumes + rem */ in pa_volume_s16ne_arm() 150 : "+r" (samples), "+r" (volumes), "+r" (ve), "+r" (length) in pa_volume_s16ne_arm() 151 : "r" (volumes + ((rem / sizeof(*samples)) % channels)) in pa_volume_s16ne_arm()
|
D | svolume_mmx.c | 37 * in v: 2 int32_t volumes, fixed point 16:16 93 static void pa_volume_s16ne_mmx(int16_t *samples, const int32_t *volumes, unsigned channels, unsign… in pa_volume_s16ne_mmx() argument 152 : "+r" (samples), "+r" (volumes), "+r" (length), "=&D" (channel), "=&r" (temp) in pa_volume_s16ne_mmx() 162 static void pa_volume_s16re_mmx(int16_t *samples, const int32_t *volumes, unsigned channels, unsign… in pa_volume_s16re_mmx() argument 231 : "+r" (samples), "+r" (volumes), "+r" (length), "=&D" (channel), "=&r" (temp) in pa_volume_s16re_mmx()
|
D | svolume_sse.c | 76 static void pa_volume_s16ne_sse2(int16_t *samples, const int32_t *volumes, unsigned channels, unsig… in pa_volume_s16ne_sse2() argument 150 : "+r" (samples), "+r" (volumes), "+r" (length), "=&D" (channel), "=&r" (temp) in pa_volume_s16ne_sse2() 160 static void pa_volume_s16re_sse2(int16_t *samples, const int32_t *volumes, unsigned channels, unsig… in pa_volume_s16re_sse2() argument 242 : "+r" (samples), "+r" (volumes), "+r" (length), "=&D" (channel), "=&r" (temp) in pa_volume_s16re_sse2()
|
/third_party/pulseaudio/src/pulse/ |
D | volume.h | 38 * own volumes. To deal with these, The PulseAudio library contains a number of 45 * Volumes commonly span between muted (0%), and normal (100%). It is possible 46 * to set volumes to higher than 100%, but clipping might occur. 50 * volumes enabled, it means the maximum volume that the sound hardware is 55 * With flat volumes disabled the sink input volume is relative to the sink 64 * The volumes in PulseAudio are cubic in nature and applications shouldn't 74 * It's often unknown what scale hardware volumes relate to. Don't use the 75 * above functions on sink and source volumes, unless the sink or source in 78 * it's sufficient to treat all volumes as opaque with a range from 129 * Note: UIs should deal gracefully with volumes greater than this value [all …]
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | volumetexture9.c | 110 This->volumes = CALLOC(This->base.level_count, sizeof(*This->volumes)); in NineVolumeTexture9_ctor() 111 if (!This->volumes) in NineVolumeTexture9_ctor() 125 &voldesc, &This->volumes[l]); in NineVolumeTexture9_ctor() 143 if (This->volumes) { in NineVolumeTexture9_dtor() 145 if (This->volumes[l]) in NineVolumeTexture9_dtor() 146 NineUnknown_Destroy(&This->volumes[l]->base); in NineVolumeTexture9_dtor() 147 FREE(This->volumes); in NineVolumeTexture9_dtor() 160 *pDesc = This->volumes[Level]->desc; in NineVolumeTexture9_GetLevelDesc() 172 NineUnknown_AddRef(NineUnknown(This->volumes[Level])); in NineVolumeTexture9_GetVolumeLevel() 173 *ppVolumeLevel = (IDirect3DVolume9 *)This->volumes[Level]; in NineVolumeTexture9_GetVolumeLevel() [all …]
|
/third_party/pulseaudio/src/tests/ |
D | mult-s16-test.c | 55 int32_t volumes[SAMPLES]; in START_TEST() local 60 pa_random(volumes, sizeof(volumes)); in START_TEST() 63 int32_t a = pa_mult_s16_volume_32(samples[i], volumes[i]); in START_TEST() 64 int32_t b = pa_mult_s16_volume_64(samples[i], volumes[i]); in START_TEST() 74 sum1 += pa_mult_s16_volume_32(samples[i], volumes[i]); in START_TEST() 80 sum2 += pa_mult_s16_volume_64(samples[i], volumes[i]); in START_TEST()
|
D | cpu-volume-test.c | 50 int32_t volumes[channels + PADDING]; in run_volume_test() local 68 volumes[i] = PA_CLAMP_VOLUME((pa_volume_t)(rand() >> 15)); in run_volume_test() 70 volumes[i] = volumes[padding]; in run_volume_test() 73 orig_func(samples_ref, volumes, channels, size); in run_volume_test() 74 func(samples, volumes, channels, size); in run_volume_test() 80 samples_orig[i], volumes[i % channels]); in run_volume_test() 91 func(samples, volumes, channels, size); in run_volume_test() 96 orig_func(samples_ref, volumes, channels, size); in run_volume_test()
|
D | core-util-test.c | 46 // dB volumes in START_TEST() 64 // percentage volumes in START_TEST() 74 // integer volumes` in START_TEST() 86 // invalid volumes in START_TEST()
|
/third_party/openGLES/extensions/INTEL/ |
D | INTEL_texture_scissor.txt | 47 large volumes. Three factors require the ability to clip based on texture 52 volumes, one has to partition the volume into blocks large enough to fit in 67 rendering morphed volumes. 70 resulting primitives when rendering morphed volumes, the equations are not
|
/third_party/gstreamer/gstplugins_base/tests/examples/audio/ |
D | audiomix.c | 33 static GObject *volumes[2]; variable 41 g_object_set (volumes[0], "volume", 1.0 - value, NULL); in value_changed_callback() 42 g_object_set (volumes[1], "volume", value, NULL); in value_changed_callback() 154 volumes[num_vol++] = (GObject *) volume; in make_mixer_channel()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/INTEL/ |
D | INTEL_texture_scissor.txt | 47 large volumes. Three factors require the ability to clip based on texture 52 volumes, one has to partition the volume into blocks large enough to fit in 67 rendering morphed volumes. 70 resulting primitives when rendering morphed volumes, the equations are not
|
/third_party/ltp/testcases/kernel/fs/fs_maim/ |
D | README | 46 add maimlvm to stress lvm volumes 47 add maimevms to stress evms volumes
|
/third_party/ntfs-3g/ |
D | TODO.ntfsprogs | 11 - Correct support for creating volumes with larger sector sizes (mft record 77 - On ntfs 3.0+ volumes need to disable the usn journal if it is active. This 79 - On ntfs 3.0+ volumes need to mark the quota out of date? - Probably, but
|
/third_party/gstreamer/gstplugins_base/gst/volume/ |
D | gstvolume.c | 674 g_free (self->volumes); in volume_stop() 675 self->volumes = NULL; in volume_stop() 761 self->volumes = g_realloc (self->volumes, sizeof (gdouble) * nsamples); in volume_transform_ip() 765 if (volume_cb && self->volumes) { in volume_transform_ip() 768 nsamples, (gpointer) self->volumes); in volume_transform_ip() 772 volume_orc_memset_f64 (self->volumes, self->current_volume, nsamples); in volume_transform_ip() 781 volume_orc_prepare_volumes (self->volumes, self->mutes, nsamples); in volume_transform_ip() 788 self->process_controlled (self, map.data, self->volumes, channels, in volume_transform_ip()
|
/third_party/alsa-utils/alsamixer/ |
D | mixer_display.c | 410 double volumes[2]; in display_control() local 459 volumes[0] = get_vol_func(control->elem, control->volume_channels[0]); in display_control() 461 volumes[1] = get_vol_func(control->elem, control->volume_channels[1]); in display_control() 463 volumes[1] = volumes[0]; in display_control() 468 bar_height = lrint(volumes[c] * volume_height); in display_control() 496 sprintf(buf, "%d", (int)lrint(volumes[0] * 100)); in display_control() 500 "%3d", (int)lrint(volumes[0] * 100)); in display_control() 506 wprintw(mixer_widget.window, "%-3d", (int)lrint(volumes[1] * 100)); in display_control()
|
/third_party/pulseaudio/src/modules/ |
D | stream-interaction.c | 445 const char *volumes; in pa_stream_interaction_init() local 468 volumes = pa_modargs_get_value(ma, "volume", NULL); in pa_stream_interaction_init() 469 if (volumes) { in pa_stream_interaction_init() 472 while ((n = pa_split(volumes, "/", &split_state))) { in pa_stream_interaction_init() 564 const char *volumes; in pa_stream_interaction_init() local 566 if ((volumes = pa_modargs_get_value(ma, "volume", NULL))) { in pa_stream_interaction_init() 570 while ((n = pa_split(volumes, "/", &group_split_state))) { in pa_stream_interaction_init()
|
/third_party/alsa-utils/amixer/ |
D | amixer.1 | 149 playback and capture volumes exist, this is applied to both volumes.
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_depth_clamp.txt | 45 In some rendering applications such as shadow volumes, it is useful 60 of stenciled shadow volumes. The functionality may also be useful
|
/third_party/mesa3d/docs/ci/ |
D | LAVA.rst | 71 access it. You probably have a ``volumes = ["/cache"]`` already, so now it would be:: 73 volumes = ["/home/anholt/lava-config/lavacli.yaml:/root/.config/lavacli.yaml", "/cache"]
|
/third_party/skia/infra/bots/task_drivers/compile_wasm_gm_tests/ |
D | compile_wasm_gm_tests.go | 63 volumes := []string{skiaAbsPath + ":/SRC", workAbsPath + ":/OUT"} 65 if err := doc.Run(ctx, dockerImage, command, volumes, nil); err != nil {
|
/third_party/pulseaudio/man/ |
D | pulse-daemon.conf.5.xml.in | 255 <p><opt>flat-volumes=</opt> Enable 'flat' volumes, i.e. where 256 possible let the sink volume equal the maximum of the volumes of 550 (with lower volumes) have the appropriate adjustment applied in SW to 552 cannot be timed accurately and thus this change of volumes can sometimes 554 So to ensure SW and HW volumes are applied concurrently without any 556 implementation needs to support deferred volumes. The following
|
/third_party/pulseaudio/src/modules/alsa/mixer/paths/ |
D | analog-output.conf.common | 33 ; first element. If that element does not support dB volumes, this is 34 ; where the story ends. If it does support dB volumes, PA divides the 41 ; over all volume sliders and a very high granularity of volumes
|
/third_party/alsa-utils/alsaconf/po/ |
D | ja.po | 122 " amixer to raise the default volumes.\n" 192 "If you have a big amplifier, lower your volumes or say no.\n" 215 " For adjustment of volumes, use your favorite mixer.\n"
|