Searched defs:high (Results 1 - 25 of 53) sorted by relevance

123

/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/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/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/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/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcthread.h81 high = PR_PRIORITY_HIGH, enumerator in enum:__anon17215
/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/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;
H A Dwctomb.c38 static inline int binary_search( WCHAR ch, int low, int high )
41 while (low <= high)
43 int pos = (low + high) / 2;
51 high = pos - 1;
65 int idx = 1, low = 0, high = unicode_compose_table_size - 1; local
68 int pos = binary_search( str[idx], low, high );
72 high = unicode_compose_table[2*pos+3] - 1;
/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));
H A Dcpu-defs.h143 uint16_t high; member in struct:icount_decr_u16
149 uint16_t high; member in struct:icount_decr_u16
190 /* Number of cycles left, with interrupt flag in high bit. \
/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
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath5k/
H A Dath5k_pcu.c87 * @high: Flag to determine if we want to use high transmition rate
90 * If high flag is set, we tell hw to use a set of control rates based on
95 void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, int high) argument
101 if (high)
/vbox/src/libs/libxml2-2.6.31/
H A Dchvalid.c169 int low, high, mid; local
178 high = rptr->nbShortRange - 1;
180 while (low <= high) {
181 mid = (low + high) / 2;
183 high = mid - 1;
185 if ((unsigned short) val > sptr[mid].high) {
197 high = rptr->nbLongRange - 1;
199 while (low <= high) {
200 mid = (low + high) / 2;
202 high
[all...]
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dchvalid.h32 unsigned short high; member in struct:_xmlChSRange
39 unsigned int high; member in struct:_xmlChLRange
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Dvmxnet3.c401 uint32_t high; member in struct:__anon15468
407 writel ( cpu_to_le32 ( mac.high ), ( vmxnet->vd + VMXNET3_VD_MACH ) );
564 uint32_t high; member in struct:__anon15469
569 mac.high = le32_to_cpu ( vmxnet3_command ( vmxnet,
H A Dmyson.h66 uint32_t high; member in struct:myson_physical_address::__anon15190
/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...]

Completed in 72 milliseconds

123