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

/external/clang/test/CodeGen/
H A Dpragma-weak.c96 void mix(void);
97 #pragma weak mix macro
98 __attribute((weak)) void mix(void) { } function
99 // CHECK: define weak void @mix()
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmengine.c277 EAS_BOOL mix,
344 if (mix)
388 EAS_BOOL mix,
442 if (mix)
558 EAS_BOOL mix; local
614 /* operator 4 is in mix mode in modes 0 and 1 */
615 mix = (mode < 2);
623 mix,
635 mix,
654 /* operator 1 is in mix mod
272 FM_Operator( S_FM_ENG_OPER *p, EAS_I32 numSamplesToAdd, EAS_PCM *pBuffer, EAS_PCM *pModBuffer, EAS_BOOL mix, EAS_U16 gainTarget, EAS_I16 pitch, EAS_U8 feedback, EAS_I16 *pLastOutput) argument
384 FM_NoiseOperator( S_FM_ENG_OPER *p, EAS_I32 numSamplesToAdd, EAS_PCM *pBuffer, EAS_BOOL mix, EAS_U16 gainTarget, EAS_U8 feedback, EAS_I16 *pLastOutput) argument
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmengine.c277 EAS_BOOL mix,
344 if (mix)
388 EAS_BOOL mix,
442 if (mix)
558 EAS_BOOL mix; local
614 /* operator 4 is in mix mode in modes 0 and 1 */
615 mix = (mode < 2);
623 mix,
635 mix,
654 /* operator 1 is in mix mod
272 FM_Operator( S_FM_ENG_OPER *p, EAS_I32 numSamplesToAdd, EAS_PCM *pBuffer, EAS_PCM *pModBuffer, EAS_BOOL mix, EAS_U16 gainTarget, EAS_I16 pitch, EAS_U8 feedback, EAS_I16 *pLastOutput) argument
384 FM_NoiseOperator( S_FM_ENG_OPER *p, EAS_I32 numSamplesToAdd, EAS_PCM *pBuffer, EAS_BOOL mix, EAS_U16 gainTarget, EAS_U8 feedback, EAS_I16 *pLastOutput) argument
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
H A DShaderUtils.java60 public static final float mix(final float a, final float b, final float f) { method in class:ShaderUtils
64 public static final Color mix(final Color a, final Color b, final float f) { method in class:ShaderUtils
65 return new Color((int) ShaderUtils.clamp(ShaderUtils.mix(a.getRed(), b.getRed(), f), 0, 255), (int) ShaderUtils.clamp(
66 ShaderUtils.mix(a.getGreen(), b.getGreen(), f), 0, 255), (int) ShaderUtils.clamp(
67 ShaderUtils.mix(a.getBlue(), b.getBlue(), f), 0, 255));
70 public static final int mix(final int a, final int b, final float f) { method in class:ShaderUtils
74 public static final float[] mix(final float[] c1, final float[] c2, final float f) { method in class:ShaderUtils
75 return new float[] { ShaderUtils.mix(c1[0], c2[0], f), ShaderUtils.mix(c1[1], c2[1], f), ShaderUtils.mix(c
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DPerturbFilter.java81 float c0 = ShaderUtils.mix(c00, c01, noisex);
82 float c1 = ShaderUtils.mix(c10, c11, noisex);
83 retval[y * workSize + x] = ShaderUtils.mix(c0, c1, noisey);
/external/regex-re2/util/
H A Dhash.cc10 hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
24 mix(a,b,c);
26 mix(a,b,c);
32 a mix of things, see the comments above hashlittle().
35 then mix those integers. This is fast (you can do a lot more thorough
47 mix -- mix 3 32-bit values reversibly.
49 This is reversible, so any information in (a,b,c) before mix() is
50 still in (a,b,c) after mix().
52 If four pairs of (a,b,c) inputs are run through mix(), o
89 #define mix macro
[all...]
/external/clang/test/CXX/except/except.spec/
H A Dp1.cpp44 namespace mix { namespace
/external/webp/src/enc/
H A Dhistogram.c109 double mix; local
127 // Let's mix in a bit of entropy to favor good clustering when
137 mix = 0.95;
139 mix = 0.7; // nonzeros == 4.
142 mix = 0.627;
147 min_limit = mix * min_limit + (1.0 - mix) * retval;
/external/opencv/cvaux/src/
H A Dcvhmm1d.cpp169 obs->mix = (int*)icvAlloc( total * sizeof(int) );
183 icvFree( &(obs_info->mix) );
384 samples_mix[state][counter[state]] = &(obs->mix[i]);
924 info->mix[i] = 0;
935 info->mix[i] = m;
1035 mixture = info->mix[i];
1064 int mixture = info->mix[j];
H A Dcvhmm.cpp82 obs->mix = (int*)cvAlloc( total * sizeof(int) );
96 cvFree( &(obs_info->mix) );
452 samples_mix[state][counter[state]] = &(obs->mix[i]);
1027 info->mix[counter] = 0;
1038 info->mix[counter] = m;
1071 info->mix[counter] = 0;
1083 info->mix[counter] = m;
1408 mixture = info->mix[i];
1437 int mixture = info->mix[j];
/external/llvm/include/llvm/ADT/
H A DHashing.h272 /// This effectively performs the initial mix.
278 state.mix(s);
295 /// We mix all 64 bytes even when the chunk length is smaller, but we
297 void mix(const char *s) { function in struct:llvm::hashing::detail::hash_state
433 // a mix of the last 64-bytes. That is how the algorithm works when we
438 state.mix(buffer);
467 state.mix(s_begin);
471 state.mix(s_end - 64);
533 // either initialize the hash state (on the first full buffer) or mix
541 state.mix(buffe
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dmysql.php334 1 => 'color: #990099; font-weight: bold;', // mix
335 2 => 'color: #990099; font-weight: bold;', // mix
/external/libyuv/files/source/
H A Dconvert.cc375 punpcklbw xmm6, xmm0 ;src_u, src_v mix local
489 punpcklbw xmm6, xmm0 ;src_u, src_v mix
/external/opencv/cvaux/include/
H A Dcvaux.h110 int* mix; /* number of mixture to which observation belong */ member in struct:CvImgObsInfo
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js213 function $mixin(mix){
218 var op = object[key], mp = mix[key];
219 mix[key] = (mp && $type(op) == 'object' && $type(mp) == 'object') ? $mixin(mp, op) : $unlink(op);
222 return mix;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.security_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.databinding_1.4.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 565 milliseconds