Home
last modified time | relevance | path

Searched refs:aWidth (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/builtins/
H A Dfloatunsitf.c21 const int aWidth = sizeof a * CHAR_BIT; in __floatunsitf() local
28 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsitf()
H A Dfloatunditf.c21 const int aWidth = sizeof a * CHAR_BIT; in __floatunditf() local
28 const int exponent = (aWidth - 1) - __builtin_clzll(a); in __floatunditf()
H A Dfloatunsidf.c22 const int aWidth = sizeof a * CHAR_BIT; in __floatunsidf() local
29 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsidf()
H A Dfloatditf.c21 const int aWidth = sizeof a * CHAR_BIT; in __floatditf() local
36 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs); in __floatditf()
H A Dfloatsitf.c21 const int aWidth = sizeof a * CHAR_BIT; in __floatsitf() local
36 const int exponent = (aWidth - 1) - clzsi(aAbs); in __floatsitf()
H A Dfloatsidf.c22 const int aWidth = sizeof a * CHAR_BIT; in __floatsidf() local
36 const int exponent = (aWidth - 1) - clzsi(a); in __floatsidf()
H A Dfloatunsisf.c22 const int aWidth = sizeof a * CHAR_BIT; in __floatunsisf() local
29 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsisf()
H A Dfloatsisf.c22 const int aWidth = sizeof a * CHAR_BIT; in __floatsisf() local
36 const int exponent = (aWidth - 1) - clzsi(a); in __floatsisf()
/llvm-project-15.0.7/mlir/lib/Conversion/TosaToLinalg/
H A DTosaToLinalg.cpp123 int aWidth = a.getType().getIntOrFloatBitWidth(); in createLinalgBodyCalculationForElementwiseOp() local
127 if (aWidth < cWidth) in createLinalgBodyCalculationForElementwiseOp()