Home
last modified time | relevance | path

Searched refs:COMP (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_info.c33 #define COMP TGSI_OUTPUT_COMPONENTWISE macro
40 { 1, 1, 0, 0, 0, 0, COMP, "ARL", TGSI_OPCODE_ARL },
41 { 1, 1, 0, 0, 0, 0, COMP, "MOV", TGSI_OPCODE_MOV },
47 { 1, 2, 0, 0, 0, 0, COMP, "MUL", TGSI_OPCODE_MUL },
48 { 1, 2, 0, 0, 0, 0, COMP, "ADD", TGSI_OPCODE_ADD },
52 { 1, 2, 0, 0, 0, 0, COMP, "MIN", TGSI_OPCODE_MIN },
53 { 1, 2, 0, 0, 0, 0, COMP, "MAX", TGSI_OPCODE_MAX },
54 { 1, 2, 0, 0, 0, 0, COMP, "SLT", TGSI_OPCODE_SLT },
55 { 1, 2, 0, 0, 0, 0, COMP, "SGE", TGSI_OPCODE_SGE },
56 { 1, 3, 0, 0, 0, 0, COMP, "MAD", TGSI_OPCODE_MAD },
[all …]
/external/linux-tools-perf/src/tools/perf/tests/
Dsample-parsing.c10 #define COMP(m) do { \ macro
31 COMP(id); in samples_same()
34 COMP(ip); in samples_same()
37 COMP(pid); in samples_same()
38 COMP(tid); in samples_same()
42 COMP(time); in samples_same()
45 COMP(addr); in samples_same()
48 COMP(id); in samples_same()
51 COMP(stream_id); in samples_same()
54 COMP(cpu); in samples_same()
[all …]
/external/sepolicy/tools/sepolicy-analyze/
Dsepolicy-analyze.c15 #define COMP(x) { #x, sizeof(#x) - 1, x ##_usage, x ##_func } macro
22 COMP(dups),
23 COMP(neverallow),
24 COMP(permissive),
25 COMP(typecmp),
26 COMP(booleans),
27 COMP(attribute)
/external/libnfc-nci/halimpl/pn54x/log/
DphNxpLog.h93 #define NXPLOG_FUNC_ENTRY(COMP) \ argument
94 LOG_PRI(ANDROID_LOG_VERBOSE,(COMP),"+:%s",(__FUNCTION__))
95 #define NXPLOG_FUNC_EXIT(COMP) \ argument
96 LOG_PRI(ANDROID_LOG_VERBOSE,(COMP),"-:%s",(__FUNCTION__))
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_quad_depth_test.c673 #define ALPHATEST( FUNC, COMP ) \ argument
688 if (aaaa[0] COMP ref) passMask |= (1 << 0); \
689 if (aaaa[1] COMP ref) passMask |= (1 << 1); \
690 if (aaaa[2] COMP ref) passMask |= (1 << 2); \
691 if (aaaa[3] COMP ref) passMask |= (1 << 3); \
/external/mesa3d/src/mesa/swrast/
Ds_triangle.c617 #define SPAN_NEAREST(DO_TEX,COMP) \ in fast_persp_span() argument
626 const GLchan *tex00 = info->texture + COMP * pos; \ in fast_persp_span()
638 #define SPAN_LINEAR(DO_TEX,COMP) \ in fast_persp_span() argument
651 const GLchan *tex00 = info->texture + COMP * pos; \ in fast_persp_span()
653 const GLchan *tex01 = tex00 + COMP; \ in fast_persp_span()
654 const GLchan *tex11 = tex10 + COMP; \ in fast_persp_span()