Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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 Dfloatunsisf.c22 const int aWidth = sizeof a * CHAR_BIT; in __floatunsisf() local
29 const int exponent = (aWidth - 1) - clzsi(a); in __floatunsisf()
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2348 sqlite3_free(qrf.aWidth); in dbQrf()
2349 qrf.aWidth = sqlite3_malloc64( (n+1)*sizeof(qrf.aWidth[0]) ); in dbQrf()
2350 if( qrf.aWidth==0 ){ in dbQrf()
2355 memset(qrf.aWidth, 0, (n+1)*sizeof(qrf.aWidth[0])); in dbQrf()
2368 qrf.aWidth[jj] = (short int)v; in dbQrf()
2414 sqlite3_free(qrf.aWidth); in dbQrf()
/freebsd/contrib/sqlite3/
H A Dshell.c724 short int *aWidth; /* Column widths */ member
2575 if( p->spec.aWidth[i]<0 ){ in qrfLoadAlignment()
2903 w = p->spec.aWidth[i]; in qrfColumnar()
3258 const int *aWidth = aExplainWidth; in qrfExplain() local
3264 aWidth = aScanExpWidth; in qrfExplain()
3276 qrfWidthPrint(p,p->pOut, aWidth[i], zCol); in qrfExplain()
3284 sqlite3_str_appendf(p->pOut, "%.*c", aWidth[i], '-'); in qrfExplain()
3295 int w = aWidth[i]; in qrfExplain()
24912 free(p->spec.aWidth); in modeFree()
24929 if( pDest->spec.aWidth ){ in modeDup()
[all …]