Searched defs:hi (Results 1 - 25 of 77) sorted by relevance

1234

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DRand.c50 INT32 hi, lo, x; local
55 hi = next / 127773;
57 x = 16807 * lo - 2836 * hi;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dfcache.c48 int hi=0; local
72 if ( *p != NULL ) hi = p-table;
H A Dhash.c155 int i,n=0,low=0, hi=0; local
177 if ( *p != NULL ) hi = p-table;
194 fprintf(stderr, "Range of hash function: %d..%d\n", low, hi);
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_endian.h24 unsigned int hi; member in struct:_CR64BitType
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/
H A Dxptcinvoke_ppc_aix.cpp60 uint32 hi; member in struct:__anon17328
79 *((uint32*) l_d++) = ((DU *)l_s)->hi;
83 *((uint32*) l_d++) = ((DU *)l_s)->hi;
H A Dxptcinvoke_sparc_netbsd.cpp117 uint32 hi; member in struct:__anon17329
137 case nsXPTType::T_DOUBLE : *((uint32*) l_d++) = ((DU *)l_s)->hi;
H A Dxptcinvoke_sparc_solaris.cpp117 uint32 hi; member in struct:__anon17330
137 case nsXPTType::T_DOUBLE : *((uint32*) l_d++) = ((DU *)l_s)->hi;
H A Dxptcinvoke_pa32.cpp95 PRUint32 hi; member in struct:__anon17327
131 *((uint32*) --dest) = ((DU *) source)->hi;
132 /* big endian - hi word in low addr */
148 *((uint32*) --dest) = ((DU *) source)->hi;
149 /* big endian - hi word in low addr */
H A Dxptcstubs_pa32.cpp54 uint32 hi; member in struct:__anon17331
128 ((DU *)dp)->hi = *((PRUint32*) --args);
H A Dxptcstubs_ppc_aix.cpp54 uint32 hi; member in struct:__anon17332
122 ((DU *)dp)->hi = (PRInt32) gprData[iCount++];
124 ((DU *)dp)->hi = (PRInt32) *ap++;
146 ((DU *)dp)->hi = (PRUint32) gprData[iCount++];
148 ((DU *)dp)->hi = (PRUint32) *ap++;
H A Dxptcstubs_sparc_netbsd.cpp49 uint32 hi; member in struct:__anon17333
101 case nsXPTType::T_I64 : ((DU *)dp)->hi = ((DU *)ap)->hi;
H A Dxptcstubs_sparc_solaris.cpp49 uint32 hi; member in struct:__anon17334
101 case nsXPTType::T_I64 : ((DU *)dp)->hi = ((DU *)ap)->hi;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A De_exp.c33 * Here r will be represented as r = hi-lo for better
111 double y,hi,lo,c,t; local
115 hi = lo = 0;
137 hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
141 hi = x - t*ln2HI[0]; /* t*ln2HI is exact here */
144 x = hi - lo;
155 else y = one-((lo-(x*c)/(2.0-c))-hi);
H A Ds_expm1.c139 double y,hi,lo,c,t,e,hxs,hfx,r1; local
171 {hi = x - ln2_hi; lo = ln2_lo; k = 1;}
173 {hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
177 hi = x - t*ln2_hi; /* t*ln2_hi is exact here */
180 x = hi - lo;
181 c = (hi-x)-lo;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/sym/
H A Dsym.c295 unsigned int i,n=0,low=0, hi=0; local
318 if ( *p != NULL ) hi = p-table;
335 printf("Range of hash function: %d..%d\n", low, hi);
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dgencfg.c148 long hi, lo; member in struct:align_fakelonglong::__anon17176
H A Dprtypes.h405 PRUint32 lo, hi; member in struct:__anon17202
407 PRUint32 hi, lo;
/vbox/src/VBox/Devices/Bus/
H A DMsiCommon.cpp67 uint32_t hi = PCIDevGetDWord(pDev, pDev->Int.s.u8MsiCapOffset + VBOX_MSI_CAP_MESSAGE_ADDRESS_HI); local
68 return RT_MAKE_U64(lo, hi);
/vbox/include/iprt/
H A Dstdint.h128 typedef struct { uint32_t lo; int32_t hi; } int64_t; member in struct:__anon573
131 typedef struct { uint32_t lo; uint32_t hi; } uint64_t; member in struct:__anon574
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/
H A Dxf86vmode.h134 float hi; member in struct:__anon2947
/vbox/src/VBox/Additions/x11/x11include/xextproto-7.1.1/X11/extensions/
H A Dsyncconst.h85 #define _XSyncIntToValue(pv, i) ((pv)->hi=((i<0)?~0:0),(pv)->lo=(i))
86 #define _XSyncIntsToValue(pv, l, h) ((pv)->lo = (l), (pv)->hi = (h))
88 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo))
90 ((a).hi<(b).hi || ((a).hi==(b).hi
176 int hi; member in struct:_XSyncValue
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2io.c290 PRInt32 rv, low = offset.lo, hi = offset.hi; local
294 rv = DosSetFilePtr((HFILE)fd->secret->md.osfd, hi, FILE_CURRENT, &newLocation);
298 hi = newLocation = -1;
302 result.hi = hi;
306 PRInt32 where, rc, lo = (PRInt32)offset, hi = (PRInt32)(offset >> 32);
333 uhi = (PRUint32)hi;
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUIApplianceEditorWidget.cpp754 HardwareItem *hi = new HardwareItem(i, types[i], refs[i], origValues[i], configValues[i], extraConfigValues[i], vi); local
755 vi->appendChild(hi);
761 controllerMap[i] = hi;
777 HardwareItem *hi = new HardwareItem(i, types[i], refs[i], origValues[i], configValues[i], extraConfigValues[i], ci); local
778 ci->appendChild(hi);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_module.c350 uint_t i, mid, lo = 0, hi = dmp->dm_aslen - 1; local
356 while (hi - lo > 1) {
357 mid = (lo + hi) / 2;
361 hi = mid;
364 i = addr < asmap[hi]->st_value ? lo : hi;
392 uint_t i, mid, lo = 0, hi = dmp->dm_aslen - 1; local
398 while (hi - lo > 1) {
399 mid = (lo + hi) / 2;
403 hi
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Duri.c285 int hi = val / 0x10, lo = val % 0x10; local
287 ret[len++] = hi + (hi > 9? 'A'-10 : '0');
325 int hi = val / 0x10, lo = val % 0x10; local
327 ret[len++] = hi + (hi > 9? 'A'-10 : '0');
402 int hi = val / 0x10, lo = val % 0x10; local
404 ret[len++] = hi + (hi > 9? 'A'-10 : '0');
442 int hi local
503 int hi = val / 0x10, lo = val % 0x10; local
539 int hi = val / 0x10, lo = val % 0x10; local
[all...]

Completed in 105 milliseconds

1234