Home
last modified time | relevance | path

Searched full:volumes (Results 1 – 25 of 235) sorted by relevance

12345678910

/third_party/pulseaudio/src/pulsecore/
Dsvolume_c.c31 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 …]
Dsvolume_orc.c35 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()
Dsvolume_arm.c43 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()
Dsvolume_mmx.c37 * 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()
Dsvolume_sse.c76 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/
Dvolume.h38 * 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/
Dvolumetexture9.c110 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/
Dmult-s16-test.c55 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()
Dcpu-volume-test.c50 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()
Dcore-util-test.c46 // 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/lzma/CPP/7zip/UI/Common/
DArchiveOpenCallback.cpp32 Volumes.Init(); in Init2()
122 return OpenCallbackImp->Volumes.EnsureOpen(FileIndex);
254 CMultiStreams::CSubStream &s = OpenCallbackImp->Volumes.Streams[FileIndex];
263 CMultiStreams::CSubStream &s = OpenCallbackImp->Volumes.Streams[FileIndex];
271 CMultiStreams::CSubStream &s = OpenCallbackImp->Volumes.Streams[FileIndex];
337 RINOK(Volumes.PrepareToOpenNew())
345 const unsigned fileIndex = Volumes.Streams.Add(s);
346 Volumes.InsertToList(fileIndex);
DArchiveOpenCallback.h138 Volumes.CloseFile(fileIndex); in AtCloseFile()
164 CMultiStreams Volumes;
/third_party/openGLES/extensions/INTEL/
DINTEL_texture_scissor.txt47 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/skia/third_party/externals/opengl-registry/extensions/INTEL/
DINTEL_texture_scissor.txt47 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/ntfs-3g/
DTODO.ntfsprogs11 - 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/ltp/testcases/kernel/fs/fs_maim/
DREADME46 add maimlvm to stress lvm volumes
47 add maimevms to stress evms volumes
/third_party/alsa-utils/alsamixer/
Dmixer_display.c410 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/
Dstream-interaction.c445 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/
Damixer.1149 playback and capture volumes exist, this is applied to both volumes.
/third_party/skia/infra/bots/task_drivers/compile_wasm_gm_tests/
Dcompile_wasm_gm_tests.go63 volumes := []string{skiaAbsPath + ":/SRC", workAbsPath + ":/OUT"}
65 if err := doc.Run(ctx, dockerImage, command, volumes, nil); err != nil {
/third_party/mesa3d/docs/ci/
DLAVA.rst71 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/openGLES/extensions/EXT/
DEXT_depth_clamp.txt45 In some rendering applications such as shadow volumes, it is useful
60 of stenciled shadow volumes. The functionality may also be useful
/third_party/pulseaudio/man/
Dpulse-daemon.conf.5.xml.in255 <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/lzma/CPP/7zip/Common/
DMultiOutStream.cpp269 keep oldest volumes that will be used for header rewriting later. */ in PrepareToOpenNew()
562 2) volume size was small, and we have too big number of volumes in Z7_COM7F_IMF()
789 /* [b, e) is previous restricted region. So all volumes that in Z7_COM7F_IMF()
795 to reduce main loop that checks volumes for derestriction. in Z7_COM7F_IMF()
809 /* Here we close finished volumes that are not restricted anymore. in Z7_COM7F_IMF()
810 We close (low number) volumes at first. */ in Z7_COM7F_IMF()
/third_party/pulseaudio/src/modules/alsa/mixer/paths/
Danalog-output.conf.common33 ; 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

12345678910