HomeSort by relevance Sort by last modified time
    Searched refs:mix (Results 76 - 100 of 198) sorted by null

1 2 34 5 6 7 8

  /hardware/intel/common/libmix/mix_video/src/
mixvideoconfigparamsdec_mp42.h 110 * @mix: object to add reference
116 * mix_videoconfigparamsdec_mp42_ref(MixVideoConfigParamsDecMP42 * mix);
mixvideoconfigparamsenc_h264.h 116 * @mix: object to add reference
122 * mix_videoconfigparamsenc_h264_ref (MixVideoConfigParamsEncH264 * mix);
mixvideoconfigparamsenc_mpeg4.h 114 * @mix: object to add reference
120 * mix_videoconfigparamsenc_mpeg4_ref (MixVideoConfigParamsEncMPEG4 * mix);
mixvideodecodeparams.h 111 * @mix: object to add reference
116 MixVideoDecodeParams *mix_videodecodeparams_ref(MixVideoDecodeParams * mix);
mixvideoencodeparams.h 111 * @mix: object to add reference
116 MixVideoEncodeParams *mix_videoencodeparams_ref(MixVideoEncodeParams * mix);
mixbuffer.c 82 mix_buffer_ref(MixBuffer * mix) {
83 return (MixBuffer *) mix_params_ref(MIX_PARAMS(mix));
mixdisplayx11.c 73 mix_displayx11_ref(MixDisplayX11 * mix) {
74 return (MixDisplayX11 *) mix_display_ref(MIX_DISPLAY(mix));
mixvideoconfigparamsdec_mp42.c 98 mix_videoconfigparamsdec_mp42_ref(MixVideoConfigParamsDecMP42 * mix) {
99 return (MixVideoConfigParamsDecMP42 *) mix_params_ref(MIX_PARAMS(mix));
mixvideodecodeparams.c 77 mix_videodecodeparams_ref(MixVideoDecodeParams * mix) {
78 return (MixVideoDecodeParams *) mix_params_ref(MIX_PARAMS(mix));
mixvideoencodeparams.c 77 mix_videoencodeparams_ref(MixVideoEncodeParams * mix) {
78 return (MixVideoEncodeParams *) mix_params_ref(MIX_PARAMS(mix));
mixvideoinitparams.c 81 mix_videoinitparams_ref(MixVideoInitParams * mix) {
82 return (MixVideoInitParams *) mix_params_ref(MIX_PARAMS(mix));
mixframemanager.h 95 * @mix: object to add reference
100 MixFrameManager *mix_framemanager_ref(MixFrameManager * mix);
mixvideorenderparams.h 119 * @mix: object to add reference
124 MixVideoRenderParams *mix_videorenderparams_ref(MixVideoRenderParams * mix);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
vr.rs 68 float v_0_0 = mix(v_0_0_0, v_0_0_1, delta.x);
69 float v_0_1 = mix(v_0_1_0, v_0_1_1, delta.x);
70 float v_1_0 = mix(v_1_0_0, v_1_0_1, delta.x);
71 float v_1_1 = mix(v_1_1_0, v_1_1_1, delta.x);
72 float v_0 = mix(v_0_0, v_0_1, delta.y);
73 float v_1 = mix(v_1_0, v_1_1, delta.y);
74 float v = mix(v_0, v_1, delta.z);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
artistic1.rs 55 v1 = mix(v1, v2, dist * 2.f);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
artistic1.rs 55 v1 = mix(v1, v2, dist * 2.f);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
artistic1.rs 55 v1 = mix(v1, v2, dist * 2.f);
  /system/core/libmemunreachable/
Android.mk 30 # doesn't mix with the other default unwind code.
  /external/toybox/toys/posix/
ps.c 1171 } plist[2], *plold, *plnew, old, new, mix; local
    [all...]
  /hardware/intel/common/libmix/mix_audio/src/
mixacp.h 192 * @mix: object to add reference
197 MixAudioConfigParams *mix_acp_ref(MixAudioConfigParams *mix);
  /external/vulkan-validation-layers/libs/glm/detail/
func_common.hpp 233 /// genType mix(genType x, genType y, genType(a))
236 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/mix.xml">GLSL mix man page</a>
256 /// glm::vec4 r = glm::mix(g, h, a); // Interpolate with a floating-point scalar two vectors.
257 /// glm::vec4 s = glm::mix(g, h, b); // Teturns g or h;
258 /// glm::dvec3 t = glm::mix(e, f, a); // Types of the third parameter is not required to match with the first and the second.
259 /// glm::vec4 u = glm::mix(g, h, r); // Interpolations can be perform per component with a vector for the last parameter.
262 GLM_FUNC_DECL vecType<T, P> mix(
268 GLM_FUNC_DECL vecType<T, P> mix(
274 GLM_FUNC_DECL genTypeT mix(
    [all...]
  /external/elfutils/libdwfl/
dwfl_segment_report_module.c 173 for (size_t mix = 0; mix < count; mix++)
181 firstix = lastix = mix;
183 lastix = mix;
191 for (ssize_t mix = 0; mix <= lastix; mix++)
196 if (mix == firstix)
198 if (firstix < mix && mix <= lastix && strcmp (fptr, retval) != 0
    [all...]
  /system/extras/ksmutils/
lookup3.c 6 hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
20 mix(a,b,c);
22 mix(a,b,c);
28 a mix of things, see the comments above hashlittle().
31 then mix those integers. This is fast (you can do a lot more thorough
73 mix -- mix 3 32-bit values reversibly.
75 This is reversible, so any information in (a,b,c) before mix() is
76 still in (a,b,c) after mix().
78 If four pairs of (a,b,c) inputs are run through mix(), or throug
115 #define mix macro
    [all...]
  /external/llvm/include/llvm/ADT/
Hashing.h 266 /// This effectively performs the initial mix.
272 state.mix(s);
276 /// \brief Mix 32-bytes from the input sequence into the 16-bytes of 'a'
288 /// \brief Mix in a 64-byte buffer of data.
289 /// We mix all 64 bytes even when the chunk length is smaller, but we
291 void mix(const char *s) { function in struct:llvm::hashing::detail::hash_state
427 // a mix of the last 64-bytes. That is how the algorithm works when we
431 // Mix this chunk into the current state.
432 state.mix(buffer);
461 state.mix(s_begin)
    [all...]
  /external/deqp/framework/referencerenderer/
rrRenderer.cpp 249 const ClipVec4 clippedV0 = tcu::mix(v0, v1, ComponentPlane<+1, CompNdx>().clipLineSegmentEnd(v0, v1));
250 const ClipVec4 clippedV1 = tcu::mix(v0, v1, ComponentPlane<-1, CompNdx>().clipLineSegmentEnd(v0, v1));
255 return tcu::mix(clippedV0, clippedV1, clipRatio);
259 return tcu::mix(clippedV1, clippedV0, complementClipRatio);
297 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside.position, hitDist);
301 middle.weight[0] = tcu::mix(inside.weight[0], outside.weight[0], hitDist);
302 middle.weight[1] = tcu::mix(inside.weight[1], outside.weight[1], hitDist);
303 middle.weight[2] = tcu::mix(inside.weight[2], outside.weight[2], hitDist);
321 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside.position, hitDist);
325 middle.weight[0] = tcu::mix(inside.weight[0], outside.weight[0], hitDist)
    [all...]

Completed in 2509 milliseconds

1 2 34 5 6 7 8