Home
last modified time | relevance | path

Searched refs:mix (Results 1 – 25 of 172) sorted by relevance

1234567

/external/vulkan-validation-layers/libs/glm/gtx/
Dcompatibility.hpp64 …template <typename T> GLM_FUNC_QUALIFIER T lerp(T x, T y, T a){return mix(x, y, a);} … in lerp()
65 …rp(const detail::tvec2<T, P>& x, const detail::tvec2<T, P>& y, T a){return mix(x, y, a);} //… in lerp()
67 …rp(const detail::tvec3<T, P>& x, const detail::tvec3<T, P>& y, T a){return mix(x, y, a);} //… in lerp()
68 …rp(const detail::tvec4<T, P>& x, const detail::tvec4<T, P>& y, T a){return mix(x, y, a);} //… in lerp()
69 … P>& x, const detail::tvec2<T, P>& y, const detail::tvec2<T, P>& a){return mix(x, y, a);} //!< \br… in lerp()
70 … P>& x, const detail::tvec3<T, P>& y, const detail::tvec3<T, P>& a){return mix(x, y, a);} //!< \br… in lerp()
71 … P>& x, const detail::tvec4<T, P>& y, const detail::tvec4<T, P>& a){return mix(x, y, a);} //!< \br… in lerp()
73 …:tquat<T, P> const & x, detail::tquat<T, P> const & y, T const & a){return mix(x, y, a);} //!< \br… in slerp()
/external/clang/test/CodeGen/
Dpragma-weak.c96 void mix(void);
97 #pragma weak mix macro
98 __attribute((weak)) void mix(void) { } in mix() function
/external/ceres-solver/internal/ceres/
Dcollections_port.cc35 mix(num, b, c); in Hash32NumWithSeed()
41 mix(num, b, c); in Hash64NumWithSeed()
/external/toybox/toys/posix/
Dps.c1171 } plist[2], *plold, *plnew, old, new, mix; in top_common() local
1211 mix.tb = xmalloc((old.count+new.count)*sizeof(struct carveup)); in top_common()
1212 mix.count = 0; in top_common()
1226 if (!old.count || *otb->slot > *ntb->slot) mix.tb[mix.count] = ntb; in top_common()
1230 mix.tb[mix.count] = otb; in top_common()
1231 mix.count++; in top_common()
1245 qsort(mix.tb, mix.count, sizeof(struct carveup *), (void *)ksort); in top_common()
1264 for (i = 0; i<mix.count; i++) in top_common()
1265 run[1+stridx("RSTZ", *string_field(mix.tb[i], &alluc))]++; in top_common()
1269 "%4ld zombie", mix.count, run[1], run[2], run[3], run[4]); in top_common()
[all …]
/external/regex-re2/util/
Dhash.cc89 #define mix(a,b,c) \ macro
166 mix(a,b,c); in hashword()
212 mix(a,b,c); in hashword2()
/external/elfutils/libdwfl/
Ddwfl_segment_report_module.c173 for (size_t mix = 0; mix < count; mix++) in handle_file_note() local
181 firstix = lastix = mix; in handle_file_note()
183 lastix = mix; in handle_file_note()
191 for (ssize_t mix = 0; mix <= lastix; mix++) in handle_file_note() local
196 if (mix == firstix) in handle_file_note()
198 if (firstix < mix && mix <= lastix && strcmp (fptr, retval) != 0) in handle_file_note()
/external/deqp/framework/referencerenderer/
DrrRenderer.cpp249 …const ClipVec4 clippedV0 = tcu::mix(v0, v1, ComponentPlane<+1, CompNdx>().clipLineSegmentEnd(v0, … in getLineIntersectionPoint()
250 …const ClipVec4 clippedV1 = tcu::mix(v0, v1, ComponentPlane<-1, CompNdx>().clipLineSegmentEnd(v0, … in getLineIntersectionPoint()
255 return tcu::mix(clippedV0, clippedV1, clipRatio); in getLineIntersectionPoint()
259 return tcu::mix(clippedV1, clippedV0, complementClipRatio); in getLineIntersectionPoint()
297 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside.position, hitDist); in clipTriangleOneVertex()
301 middle.weight[0] = tcu::mix(inside.weight[0], outside.weight[0], hitDist); in clipTriangleOneVertex()
302 middle.weight[1] = tcu::mix(inside.weight[1], outside.weight[1], hitDist); in clipTriangleOneVertex()
303 middle.weight[2] = tcu::mix(inside.weight[2], outside.weight[2], hitDist); in clipTriangleOneVertex()
321 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside.position, hitDist); in clipTriangleOneVertex()
325 middle.weight[0] = tcu::mix(inside.weight[0], outside.weight[0], hitDist); in clipTriangleOneVertex()
[all …]
/external/llvm/include/llvm/ADT/
DHashing.h272 state.mix(s); in create()
291 void mix(const char *s) { in mix() function
432 state.mix(buffer);
461 state.mix(s_begin);
465 state.mix(s_end - 64);
535 state.mix(buffer);
582 state.mix(buffer);
/external/vulkan-validation-layers/libs/glm/detail/
Dfunc_common.hpp262 GLM_FUNC_DECL vecType<T, P> mix(
268 GLM_FUNC_DECL vecType<T, P> mix(
274 GLM_FUNC_DECL genTypeT mix(
/external/mesa3d/src/glsl/builtins/profiles/
D100.glsl152 float mix(float x, float y, float a);
153 vec2 mix(vec2 x, vec2 y, vec2 a);
154 vec3 mix(vec3 x, vec3 y, vec3 a);
155 vec4 mix(vec4 x, vec4 y, vec4 a);
157 vec2 mix(vec2 x, vec2 y, float a);
158 vec3 mix(vec3 x, vec3 y, float a);
159 vec4 mix(vec4 x, vec4 y, float a);
D110.glsl152 float mix(float x, float y, float a);
153 vec2 mix(vec2 x, vec2 y, vec2 a);
154 vec3 mix(vec3 x, vec3 y, vec3 a);
155 vec4 mix(vec4 x, vec4 y, vec4 a);
157 vec2 mix(vec2 x, vec2 y, float a);
158 vec3 mix(vec3 x, vec3 y, float a);
159 vec4 mix(vec4 x, vec4 y, float a);
D120.glsl152 float mix(float x, float y, float a);
153 vec2 mix(vec2 x, vec2 y, vec2 a);
154 vec3 mix(vec3 x, vec3 y, vec3 a);
155 vec4 mix(vec4 x, vec4 y, vec4 a);
157 vec2 mix(vec2 x, vec2 y, float a);
158 vec3 mix(vec3 x, vec3 y, float a);
159 vec4 mix(vec4 x, vec4 y, float a);
/external/opencv3/apps/traincascade/
Dold_ml_data.cpp51 mix = false; in CvTrainTestSplit()
58 mix = _mix; in CvTrainTestSplit()
65 mix = _mix; in CvTrainTestSplit()
670 mix = spl->mix; in set_train_test_split()
671 if ( mix ) in set_train_test_split()
/external/opencv3/3rdparty/libwebp/enc/
Dhistogram.c109 double mix; in BitsEntropy() local
137 mix = 0.95; in BitsEntropy()
139 mix = 0.7; // nonzeros == 4. in BitsEntropy()
142 mix = 0.627; in BitsEntropy()
147 min_limit = mix * min_limit + (1.0 - mix) * retval; in BitsEntropy()
/external/selinux/libsepol/src/
Davtab.c66 #define mix(input) { \ in avtab_hash() macro
76 mix(keyp->target_class); in avtab_hash()
77 mix(keyp->target_type); in avtab_hash()
78 mix(keyp->source_type); in avtab_hash()
80 #undef mix in avtab_hash()
/external/llvm/test/Object/
Dmri5.test2 ; CHECK: Cannot mix -M and other options.
/external/opencv/cvaux/src/
Dcvhmm1d.cpp384 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];
/external/vulkan-validation-layers/libs/glm/gtc/
Dnoise.inl89 …detail::tvec2<T, P> n_x = mix(detail::tvec2<T, P>(n00, n01), detail::tvec2<T, P>(n10, n11), fade_x…
90 T n_xy = mix(n_x.x, n_x.y, fade_xy.y);
159 …detail::tvec4<T, P> n_z = mix(detail::tvec4<T, P>(n000, n100, n010, n110), detail::tvec4<T, P>(n00…
160 …detail::tvec2<T, P> n_yz = mix(detail::tvec2<T, P>(n_z.x, n_z.y), detail::tvec2<T, P>(n_z.z, n_z.w…
161 T n_xyz = mix(n_yz.x, n_yz.y, fade_xyz.x);
230 …detail::tvec4<T, P> n_z = mix(detail::tvec4<T, P>(n000, n100, n010, n110), detail::tvec4<T, P>(n00…
231 detail::tvec2<T, P> n_yz = mix(
234 T n_xyz = mix(n_yz.x, n_yz.y, fade_xyz.x);
366 …detail::tvec4<T, P> n_0w = mix(detail::tvec4<T, P>(n0000, n1000, n0100, n1100), detail::tvec4<T, P…
367 …detail::tvec4<T, P> n_1w = mix(detail::tvec4<T, P>(n0010, n1010, n0110, n1110), detail::tvec4<T, P…
[all …]
/external/llvm/test/MC/AsmParser/
Dmacros-argument-parsing-diagnostics.s16 # CHECK: error: cannot mix positional and keyword arguments
/external/deqp/framework/common/
DtcuVectorUtil.hpp69 inline float mix (float x, float y, float a) { return x * (1.0f - a) + y * a; } in mix() function
79 inline double mix (double x, double y, double a) { return x * (1.0 - a) + y * a; } in mix() function
205 Vector<float, Size> mix (const Vector<float, Size>& x, const Vector<float, Size>& y, float a) in mix() function
214 Vector<double, Size> mix (const Vector<double, Size>& x, const Vector<double, Size>& y, double a) in mix() function
459 TCU_DECLARE_VECTOR_TERNARY_FUNC(mix, deFloatMix)
/external/autotest/client/site_tests/hardware_StorageFio/
D64k_stress5 ; 64k random with verify and mix read write.
D1m_stress5 ; 1MB random with verify and mix read and mostly write.
Dwrite_stress5 ; mixed size random with verify and mix read and mostly write.
/external/icu/icu4c/source/samples/uciter8/
Dreadme.txt5 8-bit Unicode text leniently, accepting a mix of UTF-8 and CESU-8
16 This UCharIterator reads an arbitrary mix of UTF-8 and CESU-8 text.
/external/webp/src/enc/
Dhistogram.c163 double mix; in BitsEntropyRefine() local
179 mix = 0.95; in BitsEntropyRefine()
181 mix = 0.7; // nonzeros == 4. in BitsEntropyRefine()
184 mix = 0.627; in BitsEntropyRefine()
189 min_limit = mix * min_limit + (1.0 - mix) * entropy->entropy; in BitsEntropyRefine()

1234567