| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_assert.h | 38 LLVMValueRef condition,
|
| H A D | lp_bld_assert.c | 40 lp_assert(int condition, const char *msg) argument 42 if (!condition) { 44 assert(condition); 56 * \param condition should be an 'i1' or 'i32' value 61 LLVMValueRef condition, 84 args[0] = LLVMBuildZExt(builder, condition, arg_types[0], ""); 60 lp_build_assert(struct gallivm_state * gallivm,LLVMValueRef condition,const char * msg) argument
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_assert.h | 38 LLVMValueRef condition,
|
| H A D | lp_bld_assert.c | 40 lp_assert(int condition, const char *msg) argument 42 if (!condition) { 44 assert(condition); 56 * \param condition should be an 'i1' or 'i32' value 61 LLVMValueRef condition, 84 args[0] = LLVMBuildZExt(builder, condition, arg_types[0], ""); 60 lp_build_assert(struct gallivm_state * gallivm,LLVMValueRef condition,const char * msg) argument
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | opt_conditional_discard.cpp | 33 * (discard <condition>) 73 /* Move the condition and replace the ir_if with the ir_discard. */ 75 if (!discard->condition) 76 discard->condition = ir->condition; 79 discard->condition = new(ctx) ir_expression(ir_binop_logic_and, 80 ir->condition, 81 discard->condition);
|
| H A D | opt_constant_folding.cpp | 122 if (ir->condition) { 123 ir->condition->accept(this); 124 handle_rvalue(&ir->condition); 126 ir_constant *const_val = ir->condition->as_constant(); 127 /* If the condition is constant, either remove the condition or 132 ir->condition = NULL; 148 if (ir->condition) { 149 ir->condition->accept(this); 150 handle_rvalue(&ir->condition); [all...] |
| H A D | opt_flatten_nested_if_blocks.cpp | 35 * into a single if block with a combined condition: 98 ir->condition = logic_and(ir->condition, inner->condition);
|
| H A D | lower_discard.cpp | 105 * Unconditional discards are treated as having a condition of "true". 153 ir_rvalue *condition = ir->condition; local in function:replace_discard 155 /* For unconditional discards, use "true" as the condition. */ 156 if (condition == NULL) 157 condition = new(mem_ctx) ir_constant(true); 161 condition); 195 discard->condition = new(mem_ctx) ir_dereference_variable(temp);
|
| H A D | opt_if_simplification.cpp | 82 /* FINISHME: Ideally there would be a way to note that the condition results 88 ir->condition->constant_expression_value(ralloc_parent(ir)); 120 ir->condition = new(ralloc_parent(ir->condition)) 121 ir_expression(ir_unop_logic_not, ir->condition);
|
| H A D | lower_discard_flow.cpp | 93 if (ir->condition) { 94 /* discarded <- condition, use (var_ref discarded) as the condition */ 95 rhs = ir->condition; 96 ir->condition = new(mem_ctx) ir_dereference_variable(discarded);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | opt_conditional_discard.cpp | 33 * (discard <condition>) 73 /* Move the condition and replace the ir_if with the ir_discard. */ 75 if (!discard->condition) 76 discard->condition = ir->condition; 79 discard->condition = new(ctx) ir_expression(ir_binop_logic_and, 80 ir->condition, 81 discard->condition);
|
| H A D | opt_constant_folding.cpp | 122 if (ir->condition) { 123 ir->condition->accept(this); 124 handle_rvalue(&ir->condition); 126 ir_constant *const_val = ir->condition->as_constant(); 127 /* If the condition is constant, either remove the condition or 132 ir->condition = NULL; 148 if (ir->condition) { 149 ir->condition->accept(this); 150 handle_rvalue(&ir->condition); [all...] |
| H A D | opt_flatten_nested_if_blocks.cpp | 35 * into a single if block with a combined condition: 98 ir->condition = logic_and(ir->condition, inner->condition);
|
| H A D | lower_discard.cpp | 105 * Unconditional discards are treated as having a condition of "true". 153 ir_rvalue *condition = ir->condition; local in function:replace_discard 155 /* For unconditional discards, use "true" as the condition. */ 156 if (condition == NULL) 157 condition = new(mem_ctx) ir_constant(true); 161 condition); 195 discard->condition = new(mem_ctx) ir_dereference_variable(temp);
|
| H A D | opt_if_simplification.cpp | 82 /* FINISHME: Ideally there would be a way to note that the condition results 88 ir->condition->constant_expression_value(ralloc_parent(ir)); 120 ir->condition = new(ralloc_parent(ir->condition)) 121 ir_expression(ir_unop_logic_not, ir->condition);
|
| H A D | lower_discard_flow.cpp | 93 if (ir->condition) { 94 /* discarded <- condition, use (var_ref discarded) as the condition */ 95 rhs = ir->condition; 96 ir->condition = new(mem_ctx) ir_dereference_variable(discarded);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/gen/ |
| H A D | gl_genexec.py | 181 # Collect SET_* calls by the condition under which they should 214 # tautology condition with "true" and let GCC do the right 235 condition = ' || '.join(condition_parts) 242 no_error_condition = '_mesa_is_no_error_enabled(ctx) && ({0})'.format(condition) 243 error_condition = '!_mesa_is_no_error_enabled(ctx) && ({0})'.format(condition) 249 settings_by_condition[condition].append( 251 # Print out an if statement for each unique condition, with 253 for condition in sorted(settings_by_condition.keys()): 254 print(' if ({0}) {{'.format(condition)) 255 for setting in sorted(settings_by_condition[condition]) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/gen/ |
| H A D | gl_genexec.py | 175 # Collect SET_* calls by the condition under which they should 208 # tautology condition with "true" and let GCC do the right 229 condition = ' || '.join(condition_parts) 236 no_error_condition = '_mesa_is_no_error_enabled(ctx) && ({0})'.format(condition) 237 error_condition = '!_mesa_is_no_error_enabled(ctx) && ({0})'.format(condition) 243 settings_by_condition[condition].append( 245 # Print out an if statement for each unique condition, with 247 for condition in sorted(settings_by_condition.keys()): 248 print(' if ({0}) {{'.format(condition)) 249 for setting in sorted(settings_by_condition[condition]) [all...] |
| /xsrc/external/mit/xf86-video-ati/dist/src/AtomBios/includes/ |
| H A D | CD_hw_services.h | 149 #define CD_ASSERT(condition) if(!(condition)) CD_assert(__FILE__, __LINE__) 160 #define CD_ASSERT_DL4(condition) if(!(condition)) CD_assert(__FILE__, __LINE__) 170 #define CD_ASSERT_DL4(condition) 182 #define CD_ASSERT_DL3(condition) if(!(condition)) CD_assert(__FILE__, __LINE__) 192 #define CD_ASSERT_DL3(condition) 205 #define CD_ASSERT_DL2(condition) if(!(condition)) CD_asser [all...] |
| /xsrc/external/mit/freetype/dist/include/freetype/internal/ |
| H A D | ftdebug.h | 225 #define FT_ASSERT( condition ) \ 228 if ( !( condition ) ) \ 241 #define FT_ASSERT( condition ) do { } while ( 0 )
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | syncobj.c | 91 GLenum condition, GLbitfield flags) 94 (void) condition; 274 fence_sync(struct gl_context *ctx, GLenum condition, GLbitfield flags) argument 288 syncObj->SyncCondition = condition; 292 ctx->Driver.FenceSync(ctx, syncObj, condition, flags); 306 _mesa_FenceSync_no_error(GLenum condition, GLbitfield flags) argument 309 return fence_sync(ctx, condition, flags); 314 _mesa_FenceSync(GLenum condition, GLbitfield flags) argument 319 if (condition != GL_SYNC_GPU_COMMANDS_COMPLETE) { 320 _mesa_error(ctx, GL_INVALID_ENUM, "glFenceSync(condition 90 _mesa_fence_sync(struct gl_context * ctx,struct gl_sync_object * syncObj,GLenum condition,GLbitfield flags) argument [all...] |
| H A D | syncobj.h | 67 _mesa_FenceSync_no_error(GLenum condition, GLbitfield flags); 70 _mesa_FenceSync(GLenum condition, GLbitfield flags);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | syncobj.c | 92 GLenum condition, GLbitfield flags) 95 (void) condition; 275 fence_sync(struct gl_context *ctx, GLenum condition, GLbitfield flags) argument 289 syncObj->SyncCondition = condition; 293 ctx->Driver.FenceSync(ctx, syncObj, condition, flags); 307 _mesa_FenceSync_no_error(GLenum condition, GLbitfield flags) argument 310 return fence_sync(ctx, condition, flags); 315 _mesa_FenceSync(GLenum condition, GLbitfield flags) argument 320 if (condition != GL_SYNC_GPU_COMMANDS_COMPLETE) { 321 _mesa_error(ctx, GL_INVALID_ENUM, "glFenceSync(condition 91 _mesa_fence_sync(struct gl_context * ctx,struct gl_sync_object * syncObj,GLenum condition,GLbitfield flags) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/ |
| H A D | bi_test.h | 117 #define BIT_ASSERT(condition) do { \ 118 if (condition) { \ 121 fprintf(stderr, "Assertion failed: %s\n", #condition); \
|
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/ |
| H A D | ir3_sun.c | 106 if (block->condition) 107 max = MAX2(max, number_instr(block->condition));
|