Searched refs:log2 (Results 1 - 23 of 23) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprlog2.c45 PRIntn log2 = 0; local
48 log2++;
50 log2 += 16, n >>= 16;
52 log2 += 8, n >>= 8;
54 log2 += 4, n >>= 4;
56 log2 += 2, n >>= 2;
58 log2++;
59 return log2;
68 PRIntn log2 = 0; local
71 log2
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A Dw_log2.c19 * wrapper log2(X)
27 log2(double x) /* wrapper log10 */ function
37 return __kernel_standard(x,x,48); /* log2(0) */
39 return __kernel_standard(x,x,49); /* log2(x<0) */
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dgencfg.c174 int log2 = 0; local
177 log2++;
179 log2 += 16, n >>= 16;
181 log2 += 8, n >>= 8;
183 log2 += 4, n >>= 4;
185 log2 += 2, n >>= 2;
187 log2++;
188 return log2;
/vbox/src/VBox/ValidationKit/testboxscript/
H A Dtestboxcommons.py65 def log2(sMessage, sCaller = None, sTsPrf = None): function
135 return _logXcptWorker(log2, '', sText, cFrames);
H A Dtestboxupgrade.py187 testboxcommons.log2('Info: Installing "%s"' % (sDst,));
205 testboxcommons.log2('Info: Installing "%s"' % (sDst,));
224 testboxcommons.log2('Info: Rolling back "%s" (%s)' % (sDst, os.path.basename(sDstRm)));
258 testboxcommons.log2('Info: Removing obsolete directory "%s"' % (sFull,));
267 testboxcommons.log2('Info: Removing obsolete file "%s"' % (sFull,));
H A Dtestboxtasks.py862 testboxcommons.log2('_threadProc: _downloadAndUnpackScriptZips -> %s' % (fRc,));
888 testboxcommons.log2('_threadProc: _spawnChild -> %s, %s' % (fRc, self._oChild));
891 testboxcommons.log2('_threadProc: _monitorChild -> %s' % (fRc,));
895 testboxcommons.log2('_threadProc: explicit cleanups...');
/vbox/src/recompiler/Sun/
H A De_powl-x86.S32 # define ALIGNARG(log2) 1<<log2
40 # define ALIGNARG(log2) log2
49 # define ALIGNARG(log2) 1<<log2
216 fyl2xp1 // log2(x) : y
219 .L7: fyl2x // log2(x) : y
220 .L8: fmul %st(1) // y*log2(x) : y
224 cmpb $0x05, %ah // is y*log2(
[all...]
H A De_powl-amd64.S24 #define ALIGNARG(log2) 1<<log2
180 fyl2xp1 // log2(x) : y
183 7: fyl2x // log2(x) : y
184 8: fmul %st(1) // y*log2(x) : y
188 cmpb $0x05, %ah // is y*log2(x) == �inf ?
190 fst %st(1) // y*log2(x) : y*log2(x)
191 frndint // int(y*log2(x)) : y*log2(
[all...]
/vbox/src/VBox/ValidationKit/tests/additions/
H A DtdAddGuestCtrl.py658 reporter.log2('Copying guest file "%s" to host "%s"' % (sSrc, sDst));
685 reporter.log2('Copying host file "%s" to guest "%s"' % (sSrc, sDst));
732 reporter.log2('Copying guest directory "%s" to host "%s"' % (sSrcAbs, sDstAbs));
735 #reporter.log2('Directory="%s", filter="%s", aFlags="%s"' % (sCurDir, sFilter, aFlags));
742 #reporter.log2('\tSkipping "%s"' % (oFsObjInfo.name,));
745 #reporter.log2('\tDirectory "%s"' % (oFsObjInfo.name,));
751 reporter.log2('\tCreating directory "%s"' % (sDirCreate,));
765 #reporter.log2('\tFile "%s"' % (oFsObjInfo.name,));
770 #reporter.log2('\tSymlink "%s" -- not tested yet' % oFsObjInfo.name);
779 #reporter.log2('\tN
[all...]
/vbox/src/VBox/ValidationKit/testdriver/
H A Dwinbase.py132 reporter.log2('uPid=%s sName=%s sCurName=%s' % (uPid, sName, sCurName));
204 reporter.log2('processCreate -> %#x, hProcess=%#x' % (uPid, hProcess,));
H A Dvbox.py589 reporter.log2('onMousePointerShapeChange/%s' % (self.sName));
591 reporter.log2('onMouseCapabilityChange/%s' % (self.sName));
593 reporter.log2('onKeyboardLedsChange/%s' % (self.sName));
595 reporter.log2('onStateChange/%s' % (self.sName));
597 reporter.log2('onAdditionsStateChange/%s' % (self.sName));
599 reporter.log2('onNetworkAdapterChange/%s' % (self.sName));
601 reporter.log2('onSerialPortChange/%s' % (self.sName));
603 reporter.log2('onParallelPortChange/%s' % (self.sName));
605 reporter.log2('onStorageControllerChange/%s' % (self.sName));
607 reporter.log2('onMediumChang
[all...]
H A Dtxsclient.py272 reporter.log2('sendMsgInt: op=%s len=%d to=%d' % (sOpcode, len(abMsg), cMsTimeout));
339 reporter.log2('recvMsg: op=%s len=%d' % (sOpcode, len(abPayload)));
627 reporter.log2('asyncToSync(%s): returns False (#1)' % (fnAsync));
634 #reporter.log2('asyncToSync(%s): returns False (#2)' % (fnAsync, rc));
638 #reporter.log2('asyncToSync(%s): returns %s' % (fnAsync, rc));
648 reporter.log2('taskConnect: connecting ...');
654 reporter.log2('taskConnect: unable to connect');
657 reporter.log2('taskConnect: timed out');
1714 reporter.log2('TransportTcp::cancelConnect: fIsConnecting=%s oSocket=%s' % (self.fIsConnecting, self.oSocket));
1720 reporter.log2('TransportTc
[all...]
H A Dvboxwrappers.py508 #reporter.log2('%s: op=%u/%u/%s: %u%%; total=%u%% cancel=%s/%s compl=%s rem=%us; desc=%s' \
798 reporter.log2('SessionWrapper::close: Removing myself from oTstDrv.aoRemoteSessions');
2096 reporter.log2('"%s"::teleport(%s,%s,%s,%s)...' % (self.sName, sHostname, uPort, sPassword, cMsMaxDowntime));
2348 reporter.log2('getPid: %u' % (self.uPid,));
2503 reporter.log2('TxsSession is ready, isSuccess() -> %s.' % (oTxsSession.isSuccess(),));
2507 reporter.log2('Disconnecting from TXS...');
2526 reporter.log2('onGuestPropertyChange(,%s,%s,%s,%s)' % (sMachineId, sName, sValue, sFlags));
2549 reporter.log2('TxsConnectTask: sIpAddr=%s fReversedSetup=%s' % (sIpAddr, fReversedSetup))
2622 reporter.log2('TxsConnectTask: Ignoring empty ip "%s"' % (sIpAddr));
2632 reporter.log2('_openTcpSessio
[all...]
H A Dbase.py441 reporter.log2('signalTaskLocked(%s)' % (self,));
1003 #reporter.log2('adding task %s' % (oTask,));
1006 #reporter.log2('tasks now in list: %d - %s' % (len(self.aoTasks), self.aoTasks));
1016 #reporter.log2('removing task %s' % (oTask,));
1022 #reporter.log2('tasks left: %d - %s' % (len(self.aoTasks), self.aoTasks));
1081 #reporter.log2('waitForTasks: cMsTimeout=%d' % (cMsTimeout,));
1101 #reporter.log2('waitForTasks: returning %s, msStart=%d' % \
1162 reporter.log2('pidFileAdd: added PID %d (new content: %s)' % (iPid, self.pidFileRead(),));
1188 reporter.log2('pidFileRemove: removed PID %d (new content: %s)' % (iPid, self.pidFileRead(),));
1418 reporter.log2('Checkin
[all...]
H A Dvboxinstaller.py842 reporter.log2('Failed to locate VirtualBox installation: %s' % (asLocs,));
H A Dvboxtestvms.py696 reporter.log2('Ignoring VM %s (fSkip = True).' % (oTestVm.sVmName,));
H A Dreporter.py999 def log2(sText): function
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dmath.h248 double log2(double Arg);
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A Dpldhash.c220 int log2; local
238 log2 = PR_CeilingLog2(capacity);
239 capacity = PR_BIT(log2);
242 table->hashShift = PL_DHASH_BITS - log2;
311 #define HASH2(hash0,log2,shift) ((((hash0) << (log2)) >> (shift)) | 1)
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Dimports.h201 * Based on code from http://www.stereopsis.com/log2.html
208 const GLint log2 = ((GLint) exp) - 127;
209 return (GLfloat) log2 * (1.0 / 4.0); /* 4, because of x^4 above */
/vbox/include/iprt/nocrt/
H A Dmath.h543 double RT_NOCRT(log2)(double);
798 # define log2 RT_NOCRT(log2) macro
/vbox/src/libs/zlib-1.2.6/as400/
H A Dzlib.inc312 D windowBits 10I 0 value log2(window size)
352 D windowBits 10I 0 value log2(window size)
/vbox/src/VBox/ValidationKit/tests/unittests/
H A DtdUnitTest1.py461 reporter.log2('iCmp=%s; %s %s %s -> %s' % (iCmp, self.aiVBoxVer, sOp, aiValue, fResult));

Completed in 152 milliseconds