Searched refs:Decimal (Results 1 - 3 of 3) sorted by last modified time

/freebsd-11-stable/contrib/sqlite3/
H A Dshell.c4432 ** signs are ignored. Decimal points and exponential notation
4536 typedef struct Decimal Decimal; typedef in typeref:struct:Decimal
4537 struct Decimal { struct
4548 ** Release memory held by a Decimal, but do not free the object itself.
4550 static void decimal_clear(Decimal *p){
4555 ** Destroy a Decimal object
4557 static void decimal_free(Decimal *p){
4565 ** Allocate a new Decimal object. Initialize it to the number given
4568 static Decimal *decimal_ne
[all...]
/freebsd-11-stable/sbin/fdisk/
H A Dfdisk.c68 #define Decimal(str, ans, tmp, maxval) if (decimal(str, &tmp, ans, maxval)) ans = tmp macro
571 Decimal("sysid (165=FreeBSD)", partp->dp_typ, tmp, 255);
572 Decimal("start", partp->dp_start, tmp, NO_DISK_SECTORS);
573 Decimal("size", partp->dp_size, tmp, NO_DISK_SECTORS);
585 Decimal("beginning cylinder", tcyl, tmp, NO_TRACK_CYLINDERS);
586 Decimal("beginning head", thd, tmp, NO_TRACK_HEADS);
587 Decimal("beginning sector", tsec, tmp, NO_TRACK_SECTORS);
595 Decimal("ending cylinder", tcyl, tmp, NO_TRACK_CYLINDERS);
596 Decimal("ending head", thd, tmp, NO_TRACK_HEADS);
597 Decimal("endin
[all...]
/freebsd-11-stable/sbin/fdisk_pc98/
H A Dfdisk.c63 #define Decimal(str, ans, tmp) if (decimal(str, &tmp, ans)) ans = tmp macro
459 Decimal("sysmid", partp->dp_mid, tmp);
460 Decimal("syssid", partp->dp_sid, tmp);
462 Decimal("start", x_start, tmp);
463 Decimal("size", x_size, tmp);
471 Decimal("beginning cylinder", tcyl, tmp);
472 Decimal("beginning head", thd, tmp);
473 Decimal("beginning sector", tsec, tmp);
484 Decimal("ending cylinder", tcyl, tmp);
485 Decimal("endin
[all...]

Completed in 164 milliseconds