/external/adhd/cras/src/server/ |
D | buffer_share.c | 12 static inline struct id_offset *find_unused(const struct buffer_share *mix) in find_unused() argument 16 for (i = 0; i < mix->id_sz; i++) { in find_unused() 17 if (!mix->wr_idx[i].used) in find_unused() 18 return &mix->wr_idx[i]; in find_unused() 25 static inline struct id_offset *find_id(const struct buffer_share *mix, in find_id() argument 30 for (i = 0; i < mix->id_sz; i++) { in find_id() 31 if (mix->wr_idx[i].used && id == mix->wr_idx[i].id) in find_id() 32 return &mix->wr_idx[i]; in find_id() 38 static void alloc_more_ids(struct buffer_share *mix) in alloc_more_ids() argument 40 unsigned int new_size = mix->id_sz * 2; in alloc_more_ids() [all …]
|
D | buffer_share.h | 31 void buffer_share_destroy(struct buffer_share *mix); 34 int buffer_share_add_id(struct buffer_share *mix, unsigned int id, void *data); 37 int buffer_share_rm_id(struct buffer_share *mix, unsigned int id); 40 int buffer_share_offset_update(struct buffer_share *mix, unsigned int id, 47 unsigned int buffer_share_get_new_write_point(struct buffer_share *mix); 53 unsigned int buffer_share_id_offset(const struct buffer_share *mix, 59 void *buffer_share_get_data(const struct buffer_share *mix,
|
/external/mesa3d/docs/specs/ |
D | EXT_shader_integer_mix.spec | 41 GLSL 1.30 (and GLSL ES 3.00) expanded the mix() built-in function to function 43 selects. This extension extends mix() to select between int, uint, function 62 genIType mix(genIType x, Selects which vector each returned component comes 65 genUType mix(genUType x, component of a that is true, the corresponding 68 genBType mix(genBType x, 118 2) Should we allow mix() to select between boolean components? function 136 2 08/26/2013 mattst88 Change vendor prefix to MESA. Add mix() that function
|
/external/deqp-deps/glslang/Test/ |
D | spv.400.frag | 125 doublev += mix(doublev, doublev, doublev); 126 dvec2v += mix(dvec2v, dvec2v, doublev); 127 dvec3v += mix(dvec3v, dvec3v, doublev); 128 dvec4v += mix(dvec4v, dvec4v, doublev); 129 dvec2v += mix(dvec2v, dvec2v, dvec2v); 130 dvec3v += mix(dvec3v, dvec3v, dvec3v); 131 dvec4v += mix(dvec4v, dvec4v, dvec4v); 132 doublev += mix(doublev, doublev, boolv); 133 dvec2v += mix(dvec2v, dvec2v, bvec2v); 134 dvec3v += mix(dvec3v, dvec3v, bvec3v); [all …]
|
D | 400.geom | 218 doublev += mix(doublev, doublev, doublev); 219 dvec2v += mix(dvec2v, dvec2v, doublev); 220 dvec3v += mix(dvec3v, dvec3v, doublev); 221 dvec4v += mix(dvec4v, dvec4v, doublev); 222 dvec2v += mix(dvec2v, dvec2v, dvec2v); 223 dvec3v += mix(dvec3v, dvec3v, dvec3v); 224 dvec4v += mix(dvec4v, dvec4v, dvec4v); 225 doublev += mix(doublev, doublev, boolv); 226 dvec2v += mix(dvec2v, dvec2v, bvec2v); 227 dvec3v += mix(dvec3v, dvec3v, bvec3v); [all …]
|
D | 450.frag | 32 bvec2 b2 = mix(bvec2(b1), bvec2(b3), bvec2(b)); 33 uint um = mix(uin, uin, b); 34 ivec3 im3 = mix(ivec3(uin), ivec3(uin), bvec3(b));
|
D | spv.int32.frag | 208 // mix() 209 i32 = mix(i32v.x, i32v.y, true); 210 i32v = mix(i32vec2(i32), i32vec2(-i32), bvec2(false)); 211 u32 = mix(u32v.x, u32v.y, true); 212 u32v = mix(u32vec3(u32), u32vec3(-u32), bvec3(false));
|
D | spv.vulkan110.int16.frag | 207 // mix() 208 i16 = mix(i16v.x, i16v.y, true); 209 i16v = mix(i16vec2(i16), i16vec2(-i16), bvec2(false)); 210 u16 = mix(u16v.x, u16v.y, true); 211 u16v = mix(u16vec3(u16), u16vec3(-u16), bvec3(false));
|
D | spv.int8.frag | 209 // mix() 210 i8 = mix(i8v.x, i8v.y, true); 211 i8v = mix(i8vec2(i8), i8vec2(-i8), bvec2(false)); 212 u8 = mix(u8v.x, u8v.y, true); 213 u8v = mix(u8vec3(u8), u8vec3(-u8), bvec3(false));
|
D | spv.int16.frag | 207 // mix() 208 i16 = mix(i16v.x, i16v.y, true); 209 i16v = mix(i16vec2(i16), i16vec2(-i16), bvec2(false)); 210 u16 = mix(u16v.x, u16v.y, true); 211 u16v = mix(u16vec3(u16), u16vec3(-u16), bvec3(false));
|
D | spv.int64.frag | 178 // mix() 179 i64 = mix(i64v.x, i64v.y, true); 180 i64v = mix(i64vec2(i64), i64vec2(-i64), bvec2(false)); 181 u64 = mix(u64v.x, u64v.y, true); 182 u64v = mix(u64vec3(u64), u64vec3(-u64), bvec3(false));
|
D | spv.int16.amd.frag | 191 // mix() 192 i16 = mix(i16v.x, i16v.y, true); 193 i16v = mix(i16vec2(i16), i16vec2(-i16), bvec2(false)); 194 u16 = mix(u16v.x, u16v.y, true); 195 u16v = mix(u16vec3(u16), u16vec3(-u16), bvec3(false));
|
D | spv.Operations.frag | 65 v += mix(v,v,v); 67 v += mix(v,v,ub41); 68 v += mix(v,v,f);
|
/external/python/cpython2/Lib/email/test/data/ |
D | msg_36.txt | 5 Subject: I-D ACTION:draft-ietf-mboned-mix-00.txt 24 FILE /internet-drafts/draft-ietf-mboned-mix-00.txt 28 name="draft-ietf-mboned-mix-00.txt";
|
/external/python/cpython3/Lib/test/test_email/data/ |
D | msg_36.txt | 5 Subject: I-D ACTION:draft-ietf-mboned-mix-00.txt 24 FILE /internet-drafts/draft-ietf-mboned-mix-00.txt 28 name="draft-ietf-mboned-mix-00.txt";
|
/external/tensorflow/tensorflow/core/kernels/ |
D | stateless_random_ops.cc | 56 const auto mix = random::PhiloxRandom(*out_counter, *out_key)(); in GenerateKey() local 57 (*out_key)[0] = mix[0]; in GenerateKey() 58 (*out_key)[1] = mix[1]; in GenerateKey() 60 (*out_counter)[2] = mix[2]; in GenerateKey() 61 (*out_counter)[3] = mix[3]; in GenerateKey()
|
/external/clang/test/CodeGen/ |
D | pragma-weak.c | 96 void mix(void); 97 #pragma weak mix macro 98 __attribute((weak)) void mix(void) { } in mix() function
|
/external/adhd/cras/src/tests/ |
D | rstream_unittest.cc | 365 void buffer_share_destroy(struct buffer_share *mix) { in buffer_share_destroy() argument 368 int buffer_share_offset_update(struct buffer_share *mix, unsigned int id, in buffer_share_offset_update() argument 373 unsigned int buffer_share_get_new_write_point(struct buffer_share *mix) { in buffer_share_get_new_write_point() argument 377 int buffer_share_add_id(struct buffer_share *mix, unsigned int id) { in buffer_share_add_id() argument 381 int buffer_share_rm_id(struct buffer_share *mix, unsigned int id) { in buffer_share_rm_id() argument 385 unsigned int buffer_share_id_offset(const struct buffer_share *mix, in buffer_share_id_offset() argument
|
/external/elfutils/libdwfl/ |
D | dwfl_segment_report_module.c | 170 for (size_t mix = 0; mix < count; mix++) in handle_file_note() local 178 firstix = lastix = mix; in handle_file_note() 180 lastix = mix; in handle_file_note() 188 for (ssize_t mix = 0; mix <= lastix; mix++) in handle_file_note() local 193 if (mix == firstix) in handle_file_note() 195 if (firstix < mix && mix <= lastix && strcmp (fptr, retval) != 0) in handle_file_note()
|
/external/libnl/lib/ |
D | hash.c | 101 #define mix(a,b,c) \ macro 194 mix(a,b,c); in hashlittle() 261 mix(a,b,c); in hashlittle() 316 mix(a,b,c); in hashlittle() 371 mix(a,b,c); in hashbig() 446 mix(a,b,c); in hashbig()
|
/external/toybox/toys/posix/ |
D | ps.c | 1458 } plist[2], *plold, *plnew, old, new, mix; in top_common() local 1509 mix.tb = xmalloc((old.count+new.count)*sizeof(struct procpid)); in top_common() 1510 mix.count = 0; in top_common() 1525 if (!old.count || *otb->slot > *ntb->slot) mix.tb[mix.count] = ntb; in top_common() 1529 mix.tb[mix.count] = otb; in top_common() 1530 mix.count++; in top_common() 1544 qsort(mix.tb, mix.count, sizeof(struct procpid *), (void *)ksort); in top_common() 1572 for (i = 0; i<mix.count; i++) in top_common() 1573 run[1+stridx("RTtZ", *string_field(mix.tb[i], &field))]++; in top_common() 1576 "%3ld zombie", FLAG(H)?"Thread":"Task", mix.count, run[1], run[0], in top_common() [all …]
|
/external/deqp/framework/referencerenderer/ |
D | rrRenderer.cpp | 249 …const ClipVec4 clippedV0 = tcu::mix(v0, v1, ComponentPlane<+1, CompNdx>().clipLineSegmentEnd(v0, v… in getLineIntersectionPoint() 250 …const ClipVec4 clippedV1 = tcu::mix(v0, v1, ComponentPlane<-1, CompNdx>().clipLineSegmentEnd(v0, v… 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | Hashing.h | 271 state.mix(s); in create() 290 void mix(const char *s) { in mix() function 431 state.mix(buffer); 460 state.mix(s_begin); 464 state.mix(s_end - 64); 534 state.mix(buffer); 581 state.mix(buffer);
|
/external/llvm/include/llvm/ADT/ |
D | Hashing.h | 271 state.mix(s); in create() 290 void mix(const char *s) { in mix() function 431 state.mix(buffer); 460 state.mix(s_begin); 464 state.mix(s_end - 64); 534 state.mix(buffer); 581 state.mix(buffer);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | Hashing.h | 271 state.mix(s); in create() 290 void mix(const char *s) { in mix() function 431 state.mix(buffer); 460 state.mix(s_begin); 464 state.mix(s_end - 64); 534 state.mix(buffer); 581 state.mix(buffer);
|