HomeSort by relevance Sort by last modified time
    Searched refs:mix (Results 1 - 23 of 23) sorted by null

  /external/clang/test/CodeGen/
pragma-weak.c 96 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/
eas_fmengine.c 277 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 mode in modes 0 and 5 *
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_fmengine.c 277 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 mode in modes 0 and 5 *
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
ShaderUtils.java 60 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(c1[2], c2[2], f) };
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
PerturbFilter.java 81 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/
hash.cc 10 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(), or throug
89 #define mix macro
    [all...]
  /external/clang/test/CXX/except/except.spec/
p1.cpp 44 namespace mix { namespace
  /dalvik/tests/044-proxy/src/
WrappedThrow.java 29 WTMix mix = new WTMix(); local
30 InvocationHandler handler = new WTInvocationHandler(mix);
  /frameworks/rs/scriptc/
rs_cl.rsh 750 _RS_RUNTIME float __attribute__((overloadable)) mix(float start, float stop, float amount);
751 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount);
752 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount);
753 _RS_RUNTIME float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float4 amount);
754 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float amount);
755 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float amount);
756 _RS_RUNTIME float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float amount);
  /prebuilts/sdk/renderscript/include/
rs_cl.rsh 750 _RS_RUNTIME float __attribute__((overloadable)) mix(float start, float stop, float amount);
751 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount);
752 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount);
753 _RS_RUNTIME float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float4 amount);
754 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float amount);
755 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float amount);
756 _RS_RUNTIME float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float amount);
  /external/opencv/cvaux/src/
cvhmm1d.cpp 169 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;
    [all...]
cvhmm.cpp 82 obs->mix = (int*)cvAlloc( total * sizeof(int) );
96 cvFree( &(obs_info->mix) );
452 samples_mix[state][counter[state]] = &(obs->mix[i]);
    [all...]
  /external/llvm/include/llvm/ADT/
Hashing.h 276 /// This effectively performs the initial mix.
282 state.mix(s);
286 /// \brief Mix 32-bytes from the input sequence into the 16-bytes of 'a'
298 /// \brief Mix in a 64-byte buffer of data.
299 /// We mix all 64 bytes even when the chunk length is smaller, but we
301 void mix(const char *s) { function in struct:llvm::hashing::detail::hash_state
438 // a mix of the last 64-bytes. That is how the algorithm works when we
442 // Mix this chunk into the current state.
443 state.mix(buffer);
472 state.mix(s_begin)
    [all...]
  /external/v8/test/mjsunit/
keyed-call-generic.js 28 // A test for keyed call ICs with a mix of smi and string keys.
  /frameworks/compile/libbcc/lib/ScriptCRT/
rs_cl.c 756 extern float __attribute__((overloadable)) mix(float start, float stop, float amount) { function
759 extern float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount) { function
762 extern float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount) { function
765 extern float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float4 amount) { function
768 extern float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float amount) { function
771 extern float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float amount) { function
774 extern float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float amount) { function
    [all...]
  /frameworks/base/voip/jni/rtp/
AudioGroup.cpp 72 // nothing to mix. However, this causes some problems with certain firewalls and
104 bool mix(int32_t *output, int head, int tail, int sampleRate);
234 bool AudioStream::mix(int32_t *output, int head, int tail, int sampleRate) function in class:__anon17041::AudioStream
306 // Mix all other streams.
310 data |= chain->mix(buffer, tick - mInterval, tick, mSampleRate);
  /external/chromium/net/data/proxy_resolver_v8_unittest/
pac_library_unittest.js 135 // IPv4 and IPv6 mix.
  /external/libyuv/files/source/
convert.cc 375 punpcklbw xmm6, xmm0 ;src_u, src_v mix local
489 punpcklbw xmm6, xmm0 ;src_u, src_v mix
  /external/opencv/cvaux/include/
cvaux.h 110 int* mix; /* number of mixture to which observation belong */ member in struct:CvImgObsInfo
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 213 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;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.security_1.0.200.v20100503.jar 
org.eclipse.jface.databinding_1.4.0.I20100601-0800.jar 

Completed in 1188 milliseconds