Searched refs:ERROR_IF (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/intel/compiler/ |
D | brw_eu_validate.c | 72 #define ERROR(msg) ERROR_IF(true, msg) 73 #define ERROR_IF(cond, msg) \ macro 301 ERROR_IF(brw_inst_dst_reg_file(devinfo, inst) == MRF || in invalid_values() 316 ERROR_IF(brw_inst_3src_a1_dst_type (devinfo, inst) == INVALID_REG_TYPE || in invalid_values() 325 ERROR_IF(brw_inst_3src_a16_dst_type(devinfo, inst) == INVALID_REG_TYPE || in invalid_values() 330 ERROR_IF(brw_inst_dst_type (devinfo, inst) == INVALID_REG_TYPE || in invalid_values() 361 ERROR_IF(src0_is_null(devinfo, inst), "src0 is null"); in sources_not_null() 364 ERROR_IF(src1_is_null(devinfo, inst), "src1 is null"); in sources_not_null() 375 ERROR_IF(devinfo->gen >= 11 && brw_inst_access_mode(devinfo, inst) == BRW_ALIGN_16, in alignment_supported() 408 ERROR_IF(brw_inst_send_src1_reg_file(devinfo, inst) == BRW_ARCHITECTURE_REGISTER_FILE && in send_restrictions() [all …]
|
/external/zstd/programs/ |
D | fileio.c | 2805 #define ERROR_IF(c,n,...) { \ macro 2827 ERROR_IF(file_position != file_size, info_truncated_input, in FIO_analyzeFrames() 2833 … ERROR_IF(feof(srcFile), info_not_zstd, "Error: reached end of file with incomplete frame"); in FIO_analyzeFrames() 2834 ERROR_IF(1, info_frame_error, "Error: did not reach end of file but ran out of frames"); in FIO_analyzeFrames() 2847 ERROR_IF(ZSTD_getFrameHeader(&header, headerBuffer, numBytesRead) != 0, in FIO_analyzeFrames() 2852 …ERROR_IF(ZSTD_isError(headerSize), info_frame_error, "Error: could not determine frame header size… in FIO_analyzeFrames() 2853 ERROR_IF(fseek(srcFile, ((long)headerSize)-((long)numBytesRead), SEEK_CUR) != 0, in FIO_analyzeFrames() 2861 ERROR_IF(fread(blockHeaderBuffer, 1, 3, srcFile) != 3, in FIO_analyzeFrames() 2868 … ERROR_IF(isWrongBlock, info_frame_error, "Error: unsupported block type"); in FIO_analyzeFrames() 2870 ERROR_IF(fseek(srcFile, blockSize, SEEK_CUR) != 0, in FIO_analyzeFrames() [all …]
|