HomeSort by: relevance | last modified time | path
    Searched refs:aWidth (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
floatunditf.c 22 const int aWidth = sizeof a * CHAR_BIT;
28 const int exponent = (aWidth - 1) - __builtin_clzll(a);
floatunsitf.c 22 const int aWidth = sizeof a * CHAR_BIT;
28 const int exponent = (aWidth - 1) - __builtin_clz(a);
floatditf.c 22 const int aWidth = sizeof a * CHAR_BIT;
37 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs);
floatsidf.c 24 const int aWidth = sizeof a * CHAR_BIT;
38 const int exponent = (aWidth - 1) - __builtin_clz(a);
floatsitf.c 22 const int aWidth = sizeof a * CHAR_BIT;
37 const int exponent = (aWidth - 1) - __builtin_clz(aAbs);
floatunsidf.c 24 const int aWidth = sizeof a * CHAR_BIT;
30 const int exponent = (aWidth - 1) - __builtin_clz(a);
floatsisf.c 24 const int aWidth = sizeof a * CHAR_BIT;
38 const int exponent = (aWidth - 1) - __builtin_clz(a);
floatunsisf.c 24 const int aWidth = sizeof a * CHAR_BIT;
30 const int exponent = (aWidth - 1) - __builtin_clz(a);
  /src/external/public-domain/sqlite/dist/tea/generic/
tclsqlite3.c 2110 ** -widths nWidth, aWidth
2348 sqlite3_free(qrf.aWidth);
2349 qrf.aWidth = sqlite3_malloc64( (n+1)*sizeof(qrf.aWidth[0]) );
2350 if( qrf.aWidth==0 ){
2355 memset(qrf.aWidth, 0, (n+1)*sizeof(qrf.aWidth[0]));
2368 qrf.aWidth[jj] = (short int)v;
2414 sqlite3_free(qrf.aWidth);
  /src/external/public-domain/sqlite/dist/
shell.c 722 int nWidth; /* Number of entries in aWidth[] */
724 short int *aWidth; /* Column widths */
748 ** Range of values for sqlite3_qrf_spec.aWidth[] entries and for
2575 if( p->spec.aWidth[i]<0 ){
2903 w = p->spec.aWidth[i];
3258 const int *aWidth = aExplainWidth;
3264 aWidth = aScanExpWidth;
3276 qrfWidthPrint(p,p->pOut, aWidth[i], zCol);
3284 sqlite3_str_appendf(p->pOut, "%.*c", aWidth[i], '-');
3295 int w = aWidth[i]
    [all...]

Completed in 84 milliseconds