Searched defs:diff (Results 1 - 25 of 34) sorted by relevance

12

/vbox/src/VBox/Runtime/common/math/gcc/
H A Dsubdi3.c55 union uu aa, bb, diff; local
59 diff.ul[L] = aa.ul[L] - bb.ul[L];
60 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
61 return (diff.q);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dfgetstr.c146 size_t diff; local
165 diff = p - fp->_p;
166 len += diff;
170 diff);
171 fp->_r -= (int)diff;
/vbox/src/VBox/ValidationKit/testanalysis/
H A Dtst-a1.py45 from testanalysis import diff namespace
91 oTestTree = diff.baselineDiff(oTestTree, oBaseline);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A Dstrftime.c471 int diff; local
477 diff = (int)t->TM_GMTOFF;
501 diff = -timezone;
507 diff = -altzone;
537 diff = (intmax_t)gct - (intmax_t)lct;
541 if (diff < 0) {
543 diff = -diff;
546 diff /= 60;
547 pt = _conv((diff/6
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtimers.c372 u32_t now, diff; local
384 diff = 0;
387 diff = now - timeouts_last_time;
395 timeout->time = msecs + diff;
481 u32_t diff; local
489 diff = now - timeouts_last_time;
497 if (tmptimeout && (tmptimeout->time <= diff)) {
501 diff -= tmptimeout->time;
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsCRT.h166 PRInt32 diff = ((const unsigned char*)s1)[0] - ((const unsigned char*)s2)[0]; local
167 if (diff != 0) return diff;
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dsortarray.cpp373 int diff = CrSaGetSize(pArray1) - CrSaGetSize(pArray2); local
374 if (diff)
375 return diff;
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_clip.c218 CRPoly *intr, *diff, *p; local
323 diff = NULL;
337 p->next = diff;
338 diff = p;
340 *head = diff;
344 intr = diff;
345 diff = NULL;
354 * plop it into diff */
370 p->next = diff;
371 diff
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Dmisc.c548 diff function
H A Dgdtoaimp.h536 #define diff __diff_D2A macro
588 extern Bigint *diff (Bigint*, Bigint*);
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dapi_msg.c1237 size_t diff; local
1266 diff = conn->current_msg->msg.w.len - conn->write_offset;
1267 if (diff > 0xffffUL) { /* max_u16_t */
1274 len = (u16_t)diff;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Glob/
H A Dglob.c588 ptrdiff_t diff; local
646 diff = pend - pathbuf;
649 diff = 0;
655 (diff >= 1 && pend[-1] == DOT) &&
656 (diff >= 2 && (pend[-2] == SLASH || pend[-2] == DOT)) &&
657 (diff < 3 || pend[-3] == SLASH))) {
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_eeprom_9287.c328 int16_t diff = 0; local
425 diff = (u16)(pEepData->baseEepHeader.pwrTableOffset -
427 diff *= 2;
429 for (j = 0; j < ((u16)AR5416_NUM_PDADC_VALUES-diff); j++)
430 pdadcValues[j] = pdadcValues[j+diff];
432 for (j = (u16)(AR5416_NUM_PDADC_VALUES-diff);
435 pdadcValues[AR5416_NUM_PDADC_VALUES-diff];
H A Dath9k_eeprom_def.c635 int16_t *diff)
650 *diff = (u16)(pwr_table_offset - AR5416_PWR_TABLE_OFFSET_DB);
652 *diff *= 2;
657 gb[k] = (u16)(gb[k] - *diff);
668 return *diff;
673 int16_t diff,
676 #define NUM_PDADC(diff) (AR5416_NUM_PDADC_VALUES - diff)
687 for (k = 0; k < (u16)NUM_PDADC(diff); k++ ) {
688 pdadcValues[k] = pdadcValues[k + diff];
630 ath9k_change_gain_boundary_setting(struct ath_hw *ah, u16 *gb, u16 numXpdGain, u16 pdGainOverlap_t2, int8_t pwr_table_offset, int16_t *diff) argument
671 ath9k_adjust_pdadc_values(struct ath_hw *ah, int8_t pwr_table_offset, int16_t diff, u8 *pdadcValues) argument
714 int16_t diff = 0; local
[all...]
/vbox/src/libs/libpng-1.2.8/
H A Dpnggccrd.c119 * - made "diff" variable (now "_dif") global to simplify conversion of
120 * filtering routines (running out of regs, sigh). "diff" is still used
617 int diff; local
627 diff = (int) (png_ptr->width & 7); // amount lost
660 // preload "movl diff, %%ecx \n\t" // (diff is in eax)
690 "0" (diff), // eax
711 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
723 if (diff) /* number of leftover pixels: 3 for pngtest */
725 final_val+=diff /* *BPP
755 int diff; local
865 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
908 int diff; local
1033 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
1076 int diff; local
1208 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
1251 int diff; local
1400 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
1441 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
[all...]
H A Dpngvcrd.c309 int diff, unmask; local
325 diff = png_ptr->width & 7; //amount lost
361 mov ecx,diff
414 int unmask, diff; local
430 diff = (png_ptr->width)&7;
478 mov ecx,diff
530 int unmask, diff; local
541 diff = (png_ptr->width)&7;
609 mov ecx,diff
665 int unmask, diff; local
809 int unmask, diff; local
1935 int diff; local
1960 mov diff, edi // take start of row local
1961 add diff, ebx // add bpp local
1962 add diff, 0xf // add 7 + 8 to incr past alignment boundary local
1963 and diff, 0xfffffff8 // mask to alignment boundary local
1964 sub diff, edi // subtract from start ==> value ebx at alignment local
2368 int diff; local
2393 mov diff, edi // take start of row local
2394 add diff, ebx // add bpp local
2396 add diff, 0xf // add 7 + 8 to incr past alignment boundary local
2397 and diff, 0xfffffff8 // mask to alignment boundary local
2398 sub diff, edi // subtract from start ==> value ebx at alignment local
3263 int diff; local
3273 mov diff, edi // take start of row local
3274 add diff, 0xf // add 7 + 8 to incr past local
3277 and diff, 0xfffffff8 // mask to alignment boundary local
3278 sub diff, edi // subtract from start ==> value local
[all...]
/vbox/src/VBox/Main/src-server/
H A DMachineImplCloneVM.cpp172 /* Implicit diff creation as part of attach is a pretty cheap
179 /* Currently the copying of diff images involves reading at least
181 * diff image is small in size, it could need some time to create
195 /* Save the max size for better weighting of diff image
252 * create a new diff file for the new "current state". */
357 * create a new diff file for the new "current state". */
492 * create a new diff file for the new "current state". */
674 ComObjPtr<Medium> diff; local
675 diff.createObject();
676 rc = diff
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Dvia-velocity.c1237 u8 diff; local
1247 diff = 64 - (TxPhyAddr - ((TxPhyAddr >> 6) << 6));
1248 TxPhyAddr += diff;
1249 vptr->td_rings = (struct tx_desc *) (vptr->TxDescArrays + diff);
1255 diff = 64 - (TxBufPhyAddr - ((TxBufPhyAddr >> 6) << 6));
1256 TxBufPhyAddr += diff;
1257 vptr->txb = (unsigned char *) (vptr->tx_buffs + diff);
1262 diff = 64 - (RxPhyAddr - ((RxPhyAddr >> 6) << 6));
1263 RxPhyAddr += diff;
1264 vptr->rd_ring = (struct rx_desc *) (vptr->RxDescArrays + diff);
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_consume.c313 uint64_t diff[2] = { 0, 0 }; local
333 dt_shift_128(diff, 2);
334 dt_add_128(diff, next_pair, diff);
344 if (dt_le_128(next_try, diff)) {
345 dt_subtract_128(diff, next_try, diff);
366 uint64_t diff[2]; local
383 dt_subtract_128(avg_of_squares, square_of_avg, diff);
385 return (dt_sqrt_128(diff));
[all...]
/vbox/src/VBox/Additions/solaris/SharedFolders/
H A Dvboxfs_vnode.c130 int diff; local
134 diff = strcmp(x->sf_path, y->sf_path);
135 if (diff == 0)
136 diff = (uintptr_t)y - (uintptr_t)x;
139 diff = (uintptr_t)y->sf_sffs - (uintptr_t)x->sf_sffs;
140 if (diff == 0)
141 diff = strcmp(x->sf_path, y->sf_path);
143 if (diff < 0)
145 if (diff > 0)
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprdtoa.c1094 diff function
2104 delta = diff(bb, bd);
3249 delta = diff(S, mhi);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Enquire/
H A DEnquire.c2665 Number val, new, diff; local
2691 diff= val/new - 1.0;
2692 if (diff < 0.1) diff= 1.0;
2727 diff= val-new;
2729 co, f_rep(precision, (Long_double) diff), oc);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c3093 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; local
3222 diff = a_size - b_size;
3223 if (diff > PY_SSIZE_T_MAX/PyLong_SHIFT - 1)
3226 else if (diff < 1 - PY_SSIZE_T_MAX/PyLong_SHIFT)
3230 diff = diff * PyLong_SHIFT + bits_in_digit(a->ob_digit[a_size - 1]) -
3232 /* Now diff = a_bits - b_bits. */
3233 if (diff > DBL_MAX_EXP)
3235 else if (diff < DBL_MIN_EXP - DBL_MANT_DIG - 1)
3239 shift = MAX(diff, DBL_MIN_EX
[all...]
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp989 int diff = strcmp(pszExpName, pszSymbol); local
990 if (diff > 0) /* pszExpName > pszSymbol: search chunck before i */
992 else if (diff) /* pszExpName < pszSymbol: search chunk after i */
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/
H A Dlbxstr.h637 CARD8 diff; member in struct:__anon2744

Completed in 225 milliseconds

12