Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Dvfwprintf.c650 double _double; /* double precision arguments %[eEfgG] */ in WDECL() local
1186 _double = (double) GETARG(long double); in WDECL()
1188 _double = GETARG(double); in WDECL()
1192 if (isinf(_double)) { in WDECL()
1193 if (_double < 0) in WDECL()
1202 if (isnan(_double)) { in WDECL()
1212 dtoaresult = cvt(_double, prec, flags, &softsign, &expt, ch, &ndig); in WDECL()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_multiprocessing.py1651 def _double(cls, x, y, foo, arr, string): member in _TestSharedCTypes
1668 p = self.Process(target=self._double, args=(x, y, foo, arr, string))