Searched refs:high (Results 1 - 25 of 116) sorted by relevance

12345

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A Ds_fabs.c28 u_int32_t high; local
29 GET_HIGH_WORD(high,x);
30 SET_HIGH_WORD(x,high&0x7fffffff);
H A Ds_modf.c40 if(j0<20) { /* integer part in high x */
47 u_int32_t high; local
49 GET_HIGH_WORD(high,x);
50 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
58 u_int32_t high; local
60 GET_HIGH_WORD(high,x);
61 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
66 u_int32_t high; local
68 GET_HIGH_WORD(high,x);
69 INSERT_WORDS(x,high
[all...]
H A Ds_expm1.c147 hx &= 0x7fffffff; /* high word of |x| */
205 u_int32_t high; local
207 GET_HIGH_WORD(high,y);
208 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */
213 u_int32_t high; local
216 GET_HIGH_WORD(high,y);
217 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */
219 u_int32_t high; local
223 GET_HIGH_WORD(high,y);
224 SET_HIGH_WORD(y,high
[all...]
H A De_rem_pio2.c84 GET_HIGH_WORD(hx,x); /* high word of x */
122 u_int32_t high; local
125 GET_HIGH_WORD(high,y[0]);
126 i = j-((high>>20)&0x7ff);
133 GET_HIGH_WORD(high,y[0]);
134 i = j-((high>>20)&0x7ff);
/vbox/src/recompiler/fpu/
H A Dsoftfloat-specialize.h56 bits64 high, low; member in struct:__anon17411
117 z.high = ( (bits64) float32_val(a) )<<41;
128 bits32 mantissa = a.high>>41;
131 ( ( (bits32) a.sign )<<31 ) | 0x7F800000 | ( a.high>>41 ) );
249 z.high = float64_val(a)<<12;
260 bits64 mantissa = a.high>>12;
266 | ( a.high>>12 ));
326 | `high' and `low' values hold the most- and least-significant bits,
349 ( ( a.high & 0x7FFF ) == 0x7FFF )
353 return ( ( a.high
[all...]
H A Dsoftfloat.h152 uint16_t high; member in struct:__anon17415
158 uint64_t high, low; member in struct:__anon17416
160 uint64_t low, high;
438 a.high &= 0x7fff;
444 a.high ^= 0x8000;
450 return (a.high & 0x7fff) == 0x7fff && a.low == 0;
455 return a.high >> 15;
460 return (a.high & 0x7fff) == 0 && a.low == 0;
504 a.high &= 0x7fffffffffffffffLL;
510 a.high
[all...]
H A Dsoftfloat.c523 return a.high & 0x7FFF;
535 return a.high>>15;
567 z.high = ( ( (bits16) zSign )<<15 ) + zExp;
809 return a.high & LIT64( 0x0000FFFFFFFFFFFF );
821 return ( a.high>>48 ) & 0x7FFF;
832 return a.high>>63;
896 z.high = ( ( (bits64) zSign )<<63 ) + ( ( (bits64) zExp )<<48 ) + zSig0;
3611 if ( ( a.high != 0xC03E ) || aSig ) {
3781 ++z.high;
3883 z.high
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2rng.c64 unsigned long high = 0; local
74 clockTickTime(&high, &low);
85 nBytes = sizeof(high) > size ? size : sizeof(high);
86 memcpy(((char *)buf) + n, &high, nBytes);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dfold.c95 int low = 0, high = sizeof(wine_ligatures)/sizeof(WCHAR) -1; local
96 while (low <= high)
98 int pos = (low + high) / 2;
102 high = pos - 1;
112 int low = 0, high = sizeof(wine_ligatures)/sizeof(WCHAR) -1; local
113 while (low <= high)
115 int pos = (low + high) / 2;
119 high = pos - 1;
/vbox/src/VBox/Installer/linux/install_service/
H A Dinit_template.sh240 for high in "" 1 2 3 4 5 6 7 8 9; do
241 for time in ${high}0 ${high}1 ${high}2 ${high}3 ${high}4 ${high}5 ${high}6 ${high}7 ${high}
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Djoinkk.c92 PRThread *low,*high; local
94 /* create the low and high priority threads */
108 high = PR_CreateThread(PR_USER_THREAD,
114 if (!high) {
115 if (debug_mode) printf("\tcannot create high priority thread\n");
128 if (PR_JoinThread(high) == PR_FAILURE) {
129 if (debug_mode) printf("\tcannot join high priority thread\n");
133 if (debug_mode) printf("\tjoined high priority thread\n");
H A Djoinku.c93 PRThread *low,*high; local
95 /* create the low and high priority threads */
109 high = PR_CreateThread(PR_USER_THREAD,
115 if (!high) {
116 if (debug_mode) printf("\tcannot create high priority thread\n");
129 if (PR_JoinThread(high) == PR_FAILURE) {
130 if (debug_mode) printf("\tcannot join high priority thread\n");
134 if (debug_mode) printf("\tjoined high priority thread\n");
H A Djoinuk.c91 PRThread *low,*high; local
93 /* create the low and high priority threads */
107 high = PR_CreateThread(PR_USER_THREAD,
113 if (!high) {
114 if (debug_mode) printf("\tcannot create high priority thread\n");
127 if (PR_JoinThread(high) == PR_FAILURE) {
128 if (debug_mode) printf("\tcannot join high priority thread\n");
132 if (debug_mode) printf("\tjoined high priority thread\n");
H A Djoinuu.c93 PRThread *low,*high; local
95 /* create the low and high priority threads */
109 high = PR_CreateThread(PR_USER_THREAD,
115 if (!high) {
116 if (debug_mode) printf("\tcannot create high priority thread\n");
129 if (PR_JoinThread(high) == PR_FAILURE) {
130 if (debug_mode) printf("\tcannot join high priority thread\n");
134 if (debug_mode) printf("\tjoined high priority thread\n");
H A Djoin.c121 PRThread *low,*high; local
123 /* create the low and high priority threads */
137 high = PR_CreateThread(PR_USER_THREAD,
143 if (!high) {
144 if (debug_mode) printf("\tcannot create high priority thread\n");
157 if (PR_JoinThread(high) == PR_FAILURE) {
158 if (debug_mode) printf("\tcannot join high priority thread\n");
162 if (debug_mode) printf("\tjoined high priority thread\n");
/vbox/src/VBox/Runtime/common/math/gcc/
H A Dmuldi3.c74 * uv = (2^2n + 2^n) (u1 v1) + [u1v1 = high]
94 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
98 * (2^n)(high + mid + low) + low
100 * Furthermore, `high' and `mid' can be computed mod 2^n, as any factor
111 u_int high, mid, udiff, vdiff; local
143 * any upper bits in high and mid, so we can use native
158 high = u1 * v1;
163 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
189 * splits into high and low ints as HHALF(l) and LHUP(l) respectively.
194 u_int u1, u0, v1, v0, udiff, vdiff, high, mi local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Detherfabric.h155 * Extract bit field portion [low,high) from the native-endian element
158 * For example, suppose "element" represents the high 32 bits of a
167 * [0,high-low), with garbage in bits [high-low+1,...).
169 #define EFAB_EXTRACT_NATIVE( native_element, min ,max ,low ,high ) \
170 ( ( ( low > max ) || ( high < min ) ) ? 0 : \
176 * Extract bit field portion [low,high) from the 64-bit little-endian
179 #define EFAB_EXTRACT64( element, min, max, low, high ) \
180 EFAB_EXTRACT_NATIVE ( le64_to_cpu(element), min, max, low, high )
183 * Extract bit field portion [low,high) fro
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ia32/
H A DDivU64x32.c47 pop edx ; restore high-order dword of the quotient
H A DDivU64x64Remainder.S40 and $0, 4(%ecx) # zero high dword of remainder
61 movl 28(%esp), %ecx # ecx <- high dword of divisor
67 cmpl %edx, %edi # compare high 32 bits
H A DDivU64x64Remainder.asm44 and dword ptr [ecx + 4], 0 ; zero high dword of remainder
64 mov ecx, [esp + 28] ; ecx <- high dword of divisor
70 cmp edi, edx ; compare high 32 bits
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/bits/
H A Dbyteswap.h57 uint32_t high; member in struct:__anon15028
66 : "+m" ( dwords->low ), "+m" ( dwords->high ),
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprfdcach.c196 PR_IMPLEMENT(PRStatus) PR_SetFDCacheSize(PRIntn low, PRIntn high)
205 if (low > high) low = high; /* sanity check the params */
208 if (0 == high) /* shutting down or staying down */
235 _pr_fd_cache.limit_high = high;
263 const char *high = PR_GetEnv("NSPR_FD_CACHE_SIZE_HIGH"); local
278 if (NULL != high) _pr_fd_cache.limit_high = atoi(high);
/vbox/src/recompiler/
H A Dqemu-timer.h19 when the virtual machine is stopped. Virtual timers use a high
127 uint32_t low,high; local
129 asm volatile("rdtsc" : "=a" (low), "=d" (high));
130 val = high;
175 uint32_t high;
180 : "=r"(rval.i32.high), "=r"(rval.i32.low));
/vbox/src/VBox/VMM/dtrace/
H A Dint-1.d31 vboxvmm*:::pdm-irq-high,vboxvmm*:::pdm-irq-hilo
34 /*printf("high: tag=%#x src=%d %llx -> %llx\n", args[1], args[2], g_aStarts[args[1]], timestamp);*/
38 vboxvmm*:::pdm-irq-high,vboxvmm*:::pdm-irq-hilo
99 printf("Interrupt sharing (devices detect pushing a line high at the same time):\n");
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dpci.c51 * high dword is non-zero on a 32-bit platform), then the value
57 uint32_t high; local
62 pci_read_config_dword ( pci, reg + 4, &high );
63 if ( high ) {
65 return ( ( ( uint64_t ) high << 32 ) | low );
69 PCI_ARGS ( pci ), high, low );
88 * 64-bit BAR has a non-zero high dword on a 32-bit machine), the
112 * 64-bit BAR has a non-zero high dword, it will be regarded as

Completed in 126 milliseconds

12345