/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() 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_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()
|
D | svolume_mmx.c | 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 | sample-util.h | 81 typedef void (*pa_do_volume_func_t) (void *samples, const void *volumes, unsigned channels, unsigne…
|
/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 …]
|
D | volumetexture9.h | 32 struct NineVolume9 **volumes; member
|
D | basetexture9.c | 238 NineVolume9_SetResource(tex->volumes[l], res, l - This->managed.lod); in NineBaseTexture9_UploadSelf() 305 NineVolume9_UploadSelf(tex->volumes[l], &box); in NineBaseTexture9_UploadSelf() 352 NineVolume9_UploadSelf(tex->volumes[l], &box); in NineBaseTexture9_UploadSelf()
|
/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()
|
/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/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/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/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/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/astc-encoder/jenkins/ |
D | dockerimage.Jenkinsfile | 23 volumes:
|
/third_party/alsa-utils/alsaconf/po/ |
D | ru.po | 127 " amixer to raise the default volumes.\n" 199 "If you have a big amplifier, lower your volumes or say no.\n" 223 " For adjustment of volumes, use your favorite mixer.\n"
|
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"
|
/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/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/pulseaudio/conf/ |
D | daemon.conf | 62 flat-volumes = no
|
/third_party/mesa3d/.gitlab-ci/b2c/ |
D | b2c.yml.jinja2.jinja2 | 57 {% for volume in volumes %}
|