Home | History | Annotate | Line # | Download | only in i915
      1 AlignAfterOpenBracket: true
      2 AlignConsecutiveMacros: true
      3 AllowAllArgumentsOnNextLine: false
      4 AllowShortCaseLabelsOnASingleLine: false
      5 AllowShortFunctionsOnASingleLine: false
      6 AlwaysBreakAfterReturnType: TopLevelDefinitions
      7 BasedOnStyle: LLVM
      8 BraceWrapping:
      9   AfterControlStatement: false
     10   AfterEnum: false
     11   AfterFunction: true
     12   AfterStruct: false
     13   BeforeElse: false
     14   SplitEmptyFunction: true
     15 BinPackArguments: true
     16 BinPackParameters: true
     17 BreakBeforeBraces: Custom
     18 ColumnLimit: 80
     19 ContinuationIndentWidth: 3
     20 Cpp11BracedListStyle: false
     21 Cpp11BracedListStyle: true
     22 ForEachMacros:
     23   - LIST_FOR_EACH_ENTRY
     24   - LIST_FOR_EACH_ENTRY_SAFE
     25   - LIST_FOR_EACH_ENTRY_SAFE_REV
     26   - list_for_each_entry
     27   - list_for_each_entry_safe
     28   - foreach_list_typed
     29   - u_foreach_bit
     30   - util_dynarray_foreach
     31   - nir_foreach_variable
     32   - nir_foreach_variable_safe
     33   - nir_foreach_register
     34   - nir_foreach_register_safe
     35   - nir_foreach_use
     36   - nir_foreach_use_safe
     37   - nir_foreach_if_use
     38   - nir_foreach_if_use_safe
     39   - nir_foreach_def
     40   - nir_foreach_def_safe
     41   - nir_foreach_phi_src
     42   - nir_foreach_phi_src_safe
     43   - nir_foreach_parallel_copy_entry
     44   - nir_foreach_instr
     45   - nir_foreach_instr_reverse
     46   - nir_foreach_instr_safe
     47   - nir_foreach_instr_reverse_safe
     48   - nir_foreach_function
     49   - nir_foreach_block
     50   - nir_foreach_block_safe
     51   - nir_foreach_block_reverse
     52   - nir_foreach_block_reverse_safe
     53   - nir_foreach_block_in_cf_node
     54   - nir_foreach_shader_in_variable
     55   - nir_foreach_shader_out_variable_safe
     56   - nir_foreach_variable_in_list
     57   - nir_foreach_src
     58   - nir_foreach_variable_with_modes_safe
     59   - nir_foreach_variable_with_modes
     60   - nir_foreach_shader_out_variable
     61   - ir2_foreach_instr
     62   - ir2_foreach_live_reg
     63   - ir2_foreach_avail
     64   - ir2_foreach_src
     65   - foreach_two_lists
     66   - foreach_bit
     67   - foreach_sched_node
     68   - foreach_src
     69   - foreach_src_n
     70   - foreach_ssa_use
     71   - foreach_ssa_srcp_n
     72   - foreach_ssa_srcp
     73   - foreach_ssa_src_n
     74   - foreach_ssa_src
     75   - foreach_input_n
     76   - foreach_input
     77   - foreach_output_n
     78   - foreach_output
     79   - foreach_instr
     80   - foreach_instr_rev
     81   - foreach_instr_safe
     82   - foreach_block
     83   - foreach_block_safe
     84   - foreach_block_rev
     85   - foreach_array
     86   - foreach_array_safe
     87   - foreach_name_n
     88   - foreach_name
     89   - foreach_def
     90   - foreach_use
     91   - foreach_batch
     92   - hash_table_foreach
     93   - set_foreach
     94   - foreach_line_in_section
     95   - perf_time
     96   - perf_time_ctx
     97   - foreach_submit
     98   - foreach_submit_safe
     99 
    100 IncludeBlocks: Preserve
    101 IncludeCategories:
    102   - Regex:           '<[[:alnum:].]+>'
    103     Priority:        1
    104   - Regex:           '.*\/.*'
    105     Priority:        2
    106   - Regex:           '.*'
    107     Priority:        3
    108 IndentWidth: 3
    109 PenaltyBreakBeforeFirstCallParameter: 1
    110 PenaltyExcessCharacter: 100
    111 SpaceAfterCStyleCast: false
    112 SpaceBeforeCpp11BracedList: false
    113 SpaceBeforeCtorInitializerColon: false
    114 SpacesInContainerLiterals: false
    115 
    116