Home
last modified time | relevance | path

Searched refs:subtotal (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/
H A Dp.525 printf "\t%-10s\t %6d\n", "total", subtotal
6 subtotal = 0
13 subtotal += $3
15 END { printf "\t%-10s\t %6d\n", "total", subtotal
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.c2196 int subtotal; /* Subtotal of bytes in cells on one page */ in balance() local
2426 for(subtotal=k=i=0; i<nCell; i++){ in balance()
2427 subtotal += szCell[i]; in balance()
2428 if( subtotal > USABLE_SPACE ){ in balance()
2429 szNew[k] = subtotal - szCell[i]; in balance()
2431 subtotal = 0; in balance()
2435 szNew[k] = subtotal; in balance()