Searched refs:FLAG (Results 1 - 25 of 26) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
H A Di915_debug.c260 FLAG( function in typeref:typename:void
322 FLAG(stream, ptr[j], 18, "alpha flatshade");
323 FLAG(stream, ptr[j], 17, "fog flatshade");
324 FLAG(stream, ptr[j], 16, "spec flatshade");
325 FLAG(stream, ptr[j], 15, "rgb flatshade");
327 FLAG(stream, ptr[j], 12, "vfmt: point width");
328 FLAG(stream, ptr[j], 11, "vfmt: specular/fog");
329 FLAG(stream, ptr[j], 10, "vfmt: rgba");
330 FLAG(stream, ptr[j], 9, "vfmt: depth offset");
332 FLAG(strea
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
H A Di915_debug.c257 FLAG(struct debug_stream *stream, unsigned dw, unsigned bit, const char *fmt, function in typeref:typename:void
314 FLAG(stream, ptr[j], 18, "alpha flatshade");
315 FLAG(stream, ptr[j], 17, "fog flatshade");
316 FLAG(stream, ptr[j], 16, "spec flatshade");
317 FLAG(stream, ptr[j], 15, "rgb flatshade");
319 FLAG(stream, ptr[j], 12, "vfmt: point width");
320 FLAG(stream, ptr[j], 11, "vfmt: specular/fog");
321 FLAG(stream, ptr[j], 10, "vfmt: rgba");
322 FLAG(stream, ptr[j], 9, "vfmt: depth offset");
324 FLAG(strea
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_atom.h84 #define ST_STATE(FLAG, st_update) FLAG##_INDEX,
92 #define ST_STATE(FLAG, st_update) static const uint64_t FLAG = 1ull << FLAG##_INDEX;
97 #define ST_STATE(FLAG, st_update) void st_update(struct st_context *st);
H A Dst_atom.c47 #define ST_STATE(FLAG, st_update) st_update,
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_atom.h86 #define ST_STATE(FLAG, st_update) FLAG##_INDEX,
94 #define ST_STATE(FLAG, st_update) static const uint64_t FLAG = 1ull << FLAG##_INDEX;
99 #define ST_STATE(FLAG, st_update) void st_update(struct st_context *st);
H A Dst_atom.c47 #define ST_STATE(FLAG, st_update) st_update,
/xsrc/external/mit/freetype/dist/src/gzip/
H A Dinflate.c14 FLAG, /* waiting for flag byte */ enumerator in enum:__anon816fb6c00103
176 z->state->mode = FLAG;
178 case FLAG:
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/x86emu/x86emu/
H A Dregs.h211 #define CONDITIONAL_SET_FLAG(COND,FLAG) \
212 if (COND) SET_FLAG(FLAG); else CLEAR_FLAG(FLAG)
/xsrc/external/mit/xorg-server/dist/hw/xfree86/x86emu/x86emu/
H A Dregs.h214 #define CONDITIONAL_SET_FLAG(COND,FLAG) \
215 if (COND) SET_FLAG(FLAG); else CLEAR_FLAG(FLAG)
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_state_init.c189 #define CHECK( NM, FLAG, ADD ) \
192 return FLAG ? atom->cmd_size + (ADD) : 0; \
195 #define TCL_CHECK( NM, FLAG, ADD ) \
199 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
520 #define ALLOC_STATE_IDX( ATOM, CHK, SZ, NM, FLAG, IDX ) \
526 rmesa->hw.ATOM.is_tcl = FLAG; \
533 #define ALLOC_STATE( ATOM, CHK, SZ, NM, FLAG ) \
534 ALLOC_STATE_IDX(ATOM, CHK, SZ, NM, FLAG, 0)
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_state_init.c188 #define CHECK( NM, FLAG, ADD ) \
191 return FLAG ? atom->cmd_size + (ADD) : 0; \
194 #define TCL_CHECK( NM, FLAG, ADD ) \
198 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
520 #define ALLOC_STATE_IDX( ATOM, CHK, SZ, NM, FLAG, IDX ) \
526 rmesa->hw.ATOM.is_tcl = FLAG; \
533 #define ALLOC_STATE( ATOM, CHK, SZ, NM, FLAG ) \
534 ALLOC_STATE_IDX(ATOM, CHK, SZ, NM, FLAG, 0)
/xsrc/external/mit/MesaLib/dist/src/freedreno/decode/scripts/
H A Dtexturator-to-unit-test-5xx.lua118 width0, height0, depth0, pkt[0].FMT, pkt[0].TILE_MODE, tostring(pkt[3].FLAG))
154 printf(" .ubwc = %s,\n", tostring(pkt[3].FLAG))
179 if pkt[3].FLAG then
H A Dtexturator-to-unit-test.lua107 width0, height0, depth0, pkt[0].FMT, pkt[0].TILE_MODE, pkt[3].MIN_LAYERSZ, tostring(pkt[3].TILE_ALL), tostring(pkt[3].FLAG), pkt[10].FLAG_BUFFER_LOGW, pkt[10].FLAG_BUFFER_LOGH, tostring(pkt[0].SAMPLES))
143 printf(" .ubwc = %s,\n", tostring(pkt[3].FLAG))
178 if pkt[3].FLAG then
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/
H A Dr200_state_init.c222 #define CHECK( NM, FLAG, ADD ) \
227 return (FLAG) ? atom->cmd_size + (ADD) : 0; \
230 #define TCL_CHECK( NM, FLAG, ADD ) \
234 return (!rmesa->radeon.TclFallback && !_mesa_arb_vertex_program_enabled(ctx) && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
237 #define TCL_OR_VP_CHECK( NM, FLAG, ADD ) \
241 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
244 #define VP_CHECK( NM, FLAG, ADD ) \
249 return (!rmesa->radeon.TclFallback && _mesa_arb_vertex_program_enabled(ctx) && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/
H A Dr200_state_init.c222 #define CHECK( NM, FLAG, ADD ) \
227 return (FLAG) ? atom->cmd_size + (ADD) : 0; \
230 #define TCL_CHECK( NM, FLAG, ADD ) \
234 return (!rmesa->radeon.TclFallback && !_mesa_arb_vertex_program_enabled(ctx) && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
237 #define TCL_OR_VP_CHECK( NM, FLAG, ADD ) \
241 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
244 #define VP_CHECK( NM, FLAG, ADD ) \
249 return (!rmesa->radeon.TclFallback && _mesa_arb_vertex_program_enabled(ctx) && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
/xsrc/external/mit/libXevie/dist/
H A Dltmain.sh1655 -Wc,FLAG pass FLAG directly to the compiler
1758 -Wc,FLAG
1759 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
1760 -Wl,FLAG
1761 -Xlinker FLAG pass linker-specific FLAG directly to the linker
1762 -XCClinker FLAG pass link-specific FLAG t
[all...]
/xsrc/external/mit/glw/dist/
H A Dltmain.sh1655 -Wc,FLAG pass FLAG directly to the compiler
1758 -Wc,FLAG
1759 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
1760 -Wl,FLAG
1761 -Xlinker FLAG pass linker-specific FLAG directly to the linker
1762 -XCClinker FLAG pass link-specific FLAG t
[all...]
/xsrc/external/mit/xorg-server.old/dist/
H A Dltmain.sh1655 -Wc,FLAG pass FLAG directly to the compiler
1758 -Wc,FLAG
1759 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
1760 -Wl,FLAG
1761 -Xlinker FLAG pass linker-specific FLAG directly to the linker
1762 -XCClinker FLAG pass link-specific FLAG t
[all...]
/xsrc/external/mit/xterm/dist/
H A Dutil.c5564 #define FLAG(n) *(Boolean *)(((char *)rp) + table[n].offset) macro
5596 init_keyboard_type(xw, table[n].type, FLAG(n));
5621 FLAG(n) = True;
5624 FLAG(n) = False;
5626 init_keyboard_type(xw, table[n].type, FLAG(n));
5634 #undef FLAG
/xsrc/external/mit/MesaLib/dist/src/amd/registers/
H A Dgfx7.json10191 {"bits": [0, 0], "name": "FLAG"},
H A Dgfx8.json10505 {"bits": [0, 0], "name": "FLAG"},
H A Dgfx81.json10612 {"bits": [0, 0], "name": "FLAG"},
H A Dgfx9.json11594 {"bits": [0, 0], "name": "FLAG"},
H A Dgfx10.json13086 {"bits": [0, 0], "name": "FLAG"},
H A Dgfx103.json12962 {"bits": [0, 0], "name": "FLAG"},

Completed in 534 milliseconds

12