Searched defs:low (Results 1 - 25 of 60) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dfcache.c47 int low=0; local
58 if ( q != NULL && low==0 ) low = p-table;
H A Dhash.c155 int i,n=0,low=0, hi=0; local
165 if ( q != NULL && low==0 ) low = p-table;
194 fprintf(stderr, "Range of hash function: %d..%d\n", low, hi);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A Ds_atan.c82 u_int32_t low; local
83 GET_LOW_WORD(low,x);
85 (ix==0x7ff00000&&(low!=0)))
H A Dk_tan.c88 u_int32_t low; local
89 GET_LOW_WORD(low, x);
90 if(((ix | low) | (iy + 1)) == 0)
H A Ds_expm1.c153 u_int32_t low; local
154 GET_LOW_WORD(low,x);
155 if(((hx&0xfffff)|low)!=0)
H A De_rem_pio2.c81 u_int32_t low; local
155 GET_LOW_WORD(low,x);
156 SET_LOW_WORD(z,low);
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/bits/
H A Dbyteswap.h56 uint32_t low; member in struct:__anon15028
66 : "+m" ( dwords->low ), "+m" ( dwords->high ),
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2rng.c65 unsigned long low = 0; local
74 clockTickTime(&high, &low);
77 nBytes = sizeof(low) > size ? size : sizeof(low);
78 memcpy(buf, &low, nBytes);
/vbox/src/VBox/Runtime/common/math/gcc/
H A Dmuldi3.c76 * (2^n + 1) (u0 v0) [u0v0 = low]
94 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
98 * (2^n)(high + mid + low) + low
101 * of 2^n in either one will also vanish. Only `low' need be computed
110 union uu u, v, low, prod; local
146 low.q = __lmulq(u0, v0);
163 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
164 low.ul[H];
165 prod.ul[L] = low
194 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcthread.h79 low = PR_PRIORITY_LOW, 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 */
96 low = PR_CreateThread(PR_USER_THREAD,
102 if (!low) {
103 if (debug_mode) printf("\tcannot create low priority thread\n");
121 if (PR_JoinThread(low) == PR_FAILURE) {
122 if (debug_mode) printf("\tcannot join low priority thread\n");
126 if (debug_mode) printf("\tjoined low priority thread\n");
H A Djoinku.c93 PRThread *low,*high; local
95 /* create the low and high priority threads */
97 low = PR_CreateThread(PR_USER_THREAD,
103 if (!low) {
104 if (debug_mode) printf("\tcannot create low priority thread\n");
122 if (PR_JoinThread(low) == PR_FAILURE) {
123 if (debug_mode) printf("\tcannot join low priority thread\n");
127 if (debug_mode) printf("\tjoined low priority thread\n");
H A Djoinuk.c91 PRThread *low,*high; local
93 /* create the low and high priority threads */
95 low = PR_CreateThread(PR_USER_THREAD,
101 if (!low) {
102 if (debug_mode) printf("\tcannot create low priority thread\n");
120 if (PR_JoinThread(low) == PR_FAILURE) {
121 if (debug_mode) printf("\tcannot join low priority thread\n");
125 if (debug_mode) printf("\tjoined low priority thread\n");
H A Djoinuu.c93 PRThread *low,*high; local
95 /* create the low and high priority threads */
97 low = PR_CreateThread(PR_USER_THREAD,
103 if (!low) {
104 if (debug_mode) printf("\tcannot create low priority thread\n");
122 if (PR_JoinThread(low) == PR_FAILURE) {
123 if (debug_mode) printf("\tcannot join low priority thread\n");
127 if (debug_mode) printf("\tjoined low priority thread\n");
H A Djoin.c121 PRThread *low,*high; local
123 /* create the low and high priority threads */
125 low = PR_CreateThread(PR_USER_THREAD,
131 if (!low) {
132 if (debug_mode) printf("\tcannot create low priority thread\n");
150 if (PR_JoinThread(low) == PR_FAILURE) {
151 if (debug_mode) printf("\tcannot join low priority thread\n");
155 if (debug_mode) printf("\tjoined low 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;
100 low = pos + 1;
112 int low = 0, high = sizeof(wine_ligatures)/sizeof(WCHAR) -1; local
113 while (low <= high)
115 int pos = (low + high) / 2;
117 low = pos + 1;
H A Dwctomb.c38 static inline int binary_search( WCHAR ch, int low, int high ) argument
41 while (low <= high)
43 int pos = (low + high) / 2;
46 low = pos + 1;
65 int idx = 1, low = 0, high = unicode_compose_table_size - 1; local
68 int pos = binary_search( str[idx], low, high );
71 low = unicode_compose_table[2*pos+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 */
234 _pr_fd_cache.limit_low = low;
262 const char *low = PR_GetEnv("NSPR_FD_CACHE_SIZE_LOW"); local
277 if (NULL != low) _pr_fd_cache.limit_low = atoi(low);
/vbox/src/libs/zlib-1.2.6/contrib/infback9/
H A Dinftree9.c51 unsigned low; /* low bits for current root entry */ local
52 unsigned mask; /* mask for low root bits */
153 of the low root bits of huff. This is saved in low to check for when a
200 low = (unsigned)(-1); /* trigger new sub-table when len > root */
202 mask = used - 1; /* mask for comparing low */
226 /* replicate for those indices with low len bits equal to huff */
253 if (len > root && (huff & mask) != low) {
278 low
[all...]
/vbox/src/libs/zlib-1.2.6/
H A Dinftrees.c51 unsigned low; /* low bits for current root entry */ local
52 unsigned mask; /* mask for low root bits */
159 of the low root bits of huff. This is saved in low to check for when a
206 low = (unsigned)(-1); /* trigger new sub-table when len > root */
208 mask = used - 1; /* mask for comparing low */
232 /* replicate for those indices with low len bits equal to huff */
260 if (len > root && (huff & mask) != low) {
285 low
[all...]
/vbox/src/recompiler/
H A Dqemu-timer.h127 uint32_t low,high; local
129 asm volatile("rdtsc" : "=a" (low), "=d" (high));
132 val |= low;
176 uint32_t low;
180 : "=r"(rval.i32.high), "=r"(rval.i32.low));
/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
305 if ( q != NULL && low==0 ) low = p-table;
335 printf("Range of hash function: %d..%d\n", low, hi);
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dpci.c56 uint32_t low; local
59 pci_read_config_dword ( pci, reg, &low );
60 if ( ( low & (PCI_BASE_ADDRESS_SPACE|PCI_BASE_ADDRESS_MEM_TYPE_MASK) )
65 return ( ( ( uint64_t ) high << 32 ) | low );
69 PCI_ARGS ( pci ), high, low );
74 return low;
160 DBGC ( pci, PCI_FMT " latency timer is unreasonably low at "
/vbox/src/libs/libxml2-2.6.31/
H A Dchvalid.c169 int low, high, mid; local
177 low = 0;
180 while (low <= high) {
181 mid = (low + high) / 2;
182 if ((unsigned short) val < sptr[mid].low) {
186 low = mid + 1;
196 low = 0;
199 while (low <= high) {
200 mid = (low + high) / 2;
201 if (val < lptr[mid].low) {
[all...]
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dchvalid.h31 unsigned short low; member in struct:_xmlChSRange
38 unsigned int low; member in struct:_xmlChLRange

Completed in 143 milliseconds

123