brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.5 KiB · c7cc7e8 Raw
130 lines · yaml
1header: fenv.h2standards:3  - stdc4macros:5  - macro_name: FE_ALL_EXCEPT6    macro_header: fenv-macros.h7  - macro_name: FE_DIVBYZERO8    macro_header: fenv-macros.h9  - macro_name: FE_INEXACT10    macro_header: fenv-macros.h11  - macro_name: FE_INVALID12    macro_header: fenv-macros.h13  - macro_name: FE_OVERFLOW14    macro_header: fenv-macros.h15  - macro_name: FE_UNDERFLOW16    macro_header: fenv-macros.h17  - macro_name: FE_DOWNWARD18    macro_header: fenv-macros.h19  - macro_name: FE_TONEAREST20    macro_header: fenv-macros.h21  - macro_name: FE_TOWARDZERO22    macro_header: fenv-macros.h23  - macro_name: FE_UPWARD24    macro_header: fenv-macros.h25  - macro_name: FE_DFL_ENV26    macro_header: fenv-macros.h27types:28  - type_name: fenv_t29  - type_name: fexcept_t30functions:31  - name: feclearexcept32    standards:33      - stdc34    return_type: int35    arguments:36      - type: int37  - name: fedisableexcept38    standards:39      - gnu40    return_type: int41    arguments:42      - type: int43    guard: null44  - name: feenableexcept45    standards:46      - gnu47    return_type: int48    arguments:49      - type: int50    attributes: []51  - name: fegetenv52    standards:53      - stdc54    return_type: int55    arguments:56      - type: fenv_t *57  - name: fegetexcept58    standards:59      - gnu60    return_type: int61    arguments: []62  - name: fegetexceptflag63    standards:64      - stdc65    return_type: int66    arguments:67      - type: fexcept_t *68      - type: int69  - name: fegetround70    standards:71      - stdc72    return_type: int73    arguments: []74  - name: feholdexcept75    standards:76      - stdc77    return_type: int78    arguments:79      - type: fenv_t *80  - name: feraiseexcept81    standards:82      - stdc83    return_type: int84    arguments:85      - type: int86  - name: fesetenv87    standards:88      - stdc89    return_type: int90    arguments:91      - type: const fenv_t *92  - name: fesetexcept93    standards:94      - stdc95    return_type: int96    arguments:97      - type: int98  - name: fesetexceptflag99    standards:100      - stdc101    return_type: int102    arguments:103      - type: const fexcept_t *104      - type: int105  - name: fesetround106    standards:107      - stdc108    return_type: int109    arguments:110      - type: int111  - name: fetestexcept112    standards:113      - stdc114    return_type: int115    arguments:116      - type: int117  - name: fetestexceptflag118    standards:119      - stdc120    return_type: int121    arguments:122      - type: const fexcept_t *123      - type: int124  - name: feupdateenv125    standards:126      - stdc127    return_type: int128    arguments:129      - type: const fenv_t *130