Searched refs:mix (Results 1 - 9 of 9) sorted by relevance

/haiku/headers/os/media/
H A DPlaySound.h15 sound_handle play_sound(const entry_ref* soundRef, bool mix, bool queue,
/haiku/src/kits/media/
H A DPlaySound.cpp15 bool mix,
14 play_sound(const entry_ref *soundRef, bool mix, bool queue, bool background ) argument
/haiku/src/apps/cortex/addons/audioOps/
H A DAudioAdapterOp.cpp512 bool mix = outChannels < inChannels;
520 mix ? (IAudioOp*)new _AudioAdapterOp_mix < uint8, uint8>(host) :
526 mix ? (IAudioOp*)new _AudioAdapterOp_swap_mix < uint8, short>(host) :
530 mix ? (IAudioOp*)new _AudioAdapterOp_mix < uint8, short>(host) :
536 mix ? (IAudioOp*)new _AudioAdapterOp_swap_mix < uint8, float>(host) :
540 mix ? (IAudioOp*)new _AudioAdapterOp_mix < uint8, float>(host) :
546 mix ? (IAudioOp*)new _AudioAdapterOp_swap_mix < uint8, int32>(host) :
550 mix ? (IAudioOp*)new _AudioAdapterOp_mix < uint8, int32>(host) :
561 mix ? (IAudioOp*)new _AudioAdapterOp_swap_mix < short, uint8>(host) :
565 mix
[all...]
/haiku/src/apps/processcontroller/
H A DUtilities.cpp101 mix_colors(rgb_color &target, rgb_color & first, rgb_color & second, float mix) argument
103 target.red = (uint8)(second.red * mix + (1. - mix) * first.red);
104 target.green = (uint8)(second.green * mix + (1. - mix) * first.green);
105 target.blue = (uint8)(second.blue * mix + (1. - mix) * first.blue);
106 target.alpha = (uint8)(second.alpha * mix + (1. - mix) * first.alpha);
H A DUtilities.h29 void mix_colors(rgb_color& target, rgb_color& first, rgb_color& second, float mix);
/haiku/src/add-ons/kernel/network/protocols/ipv6/
H A Djenkins.h16 hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
30 mix(a,b,c);
32 mix(a,b,c);
38 a mix of things, see the comments above hashlittle().
41 then mix those integers. This is fast (you can do a lot more thorough
51 mix -- mix 3 32-bit values reversibly.
53 This is reversible, so any information in (a,b,c) before mix() is
54 still in (a,b,c) after mix().
56 If four pairs of (a,b,c) inputs are run through mix(), o
93 #define mix macro
[all...]
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTHost.cpp531 float mix = 0; local
533 mix += outputs[c][j];
534 *dst = mix / (float)fOutputChannels;
/haiku/src/kits/interface/
H A DHaikuControlLook.cpp3943 float mix = 1.0; local
3947 mix = 0.4;
3951 mix = 0.7;
3954 mix = 0.3;
3958 mix = 0.5;
3963 color.red = uint8(color.red * mix + base.red * (1.0 - mix));
3964 color.green = uint8(color.green * mix + base.green * (1.0 - mix));
3965 color.blue = uint8(color.blue * mix
[all...]
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211.c1450 * You MUST NOT mix bands when calling this. It will not add 5ghz
2586 #define mix(a, b, c) \ macro
2612 mix(a, b, c);
2616 #undef mix macro

Completed in 103 milliseconds