Home
last modified time | relevance | path

Searched refs:min3 (Results 1 - 8 of 8) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmTrinaryMinMaxTests.cpp127 T min3(T op1, T op2, T op3) in min3() function
202 static void minInt8 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deInt8> (min3<deInt8>, out, in1, in2, in3); } in minInt8()
205 static void minUint8 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deUint8> (min3<deUint8>, out, in1, in2, in3); } in minUint8()
208 static void minInt16 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deInt16> (min3<deInt16>, out, in1, in2, in3); } in minInt16()
211 static void minUint16 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deUint16> (min3<deUint16>, out, in1, in2, in3); } in minUint16()
214 static void minInt32 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deInt32> (min3<deInt32>, out, in1, in2, in3); } in minInt32()
217 static void minUint32 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deUint32> (min3<deUint32>, out, in1, in2, in3); } in minUint32()
220 static void minInt64 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deInt64> (min3<deInt64>, out, in1, in2, in3); } in minInt64()
223 static void minUint64 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deUint64> (min3<deUint64>, out, in1, in2, in3); } in minUint64()
226 static void minFloat16 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<tcu::Float16>(min3<tc in midUint64()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H A DvktSpvAsmTrinaryMinMaxTests.cpp127 T min3(T op1, T op2, T op3) in min3() function
202 static void minInt8 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deInt8> (min3<deInt8>, out, in1, in2, in3); } in minInt8()
205 static void minUint8 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deUint8> (min3<deUint8>, out, in1, in2, in3); } in minUint8()
208 static void minInt16 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deInt16> (min3<deInt16>, out, in1, in2, in3); } in minInt16()
211 static void minUint16 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deUint16> (min3<deUint16>, out, in1, in2, in3); } in minUint16()
214 static void minInt32 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deInt32> (min3<deInt32>, out, in1, in2, in3); } in minInt32()
217 static void minUint32 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deUint32> (min3<deUint32>, out, in1, in2, in3); } in minUint32()
220 static void minInt64 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deInt64> (min3<deInt64>, out, in1, in2, in3); } in minInt64()
223 static void minUint64 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<deUint64> (min3<deUint64>, out, in1, in2, in3); } in minUint64()
226 static void minFloat16 (void* out, const void* in1, const void* in2, const void* in3) { runOpFunc<tcu::Float16>(min3<tc in midUint64()
[all...]
/third_party/backends/backend/
H A Dhpljm1005.c1000 min3 (int r, int g, int b) in min3() function
1023 while (min3 (dev->write_offset_r, dev->write_offset_g, in sane_read()
1029 if (min3 (dev->write_offset_r, in sane_read()
1035 available = min3 (dev->write_offset_r, dev->write_offset_g, in sane_read()
H A Ddc25.c1017 min3 (int x, int y, int z) in min3() function
1057 i = min3 (BIDIM_ARRAY (red, column, line, columns), in determine_limits()
/third_party/skia/third_party/externals/expat/expat/lib/
H A Dxmltok.c1269 min3 = 0x800, in XmlUtf8Encode() enumerator
1279 if (c < min3) { in XmlUtf8Encode()
/third_party/python/Modules/expat/
H A Dxmltok.c1266 min3 = 0x800, in XmlUtf8Encode() enumerator
1276 if (c < min3) { in XmlUtf8Encode()
/third_party/mesa3d/src/amd/compiler/
H A Daco_optimizer.cpp2665 /* min(-max(a, b), c) -> min3(c, -a, -b) * in combine_minmax()
2885 get_minmax_info(aco_opcode op, aco_opcode* min, aco_opcode* max, aco_opcode* min3, aco_opcode* max3, in get_minmax_info() argument
2895 *min3 = aco_opcode::v_min3_##type; \ in get_minmax_info()
2905 *min3 = aco_opcode::v_min3_##type; \ in get_minmax_info()
4226 aco_opcode min, max, min3, max3, med3; in combine_instruction() local
4228 if (get_minmax_info(instr->opcode, &min, &max, &min3, &max3, &med3, &some_gfx9_only) && in combine_instruction()
4231 instr->opcode == min ? min3 : max3)) { in combine_instruction()
/third_party/mesa3d/src/compiler/glsl/
H A Dbuiltin_functions.cpp1298 B1(min3)
4998 add_function("min3", in create_builtins()
8076 ir_expression *min3 = min2(x, min2(y,z)); in _min3() local
8077 body.emit(ret(min3)); in _min3()

Completed in 31 milliseconds