Searched defs:range (Results 1 - 25 of 68) sorted by relevance

123

/vbox/src/VBox/HostServices/SharedOpenGL/dlm/
H A Ddlm_lists.c187 void DLM_APIENTRY crDLMDeleteLists(GLuint firstListIdentifier, GLsizei range) argument
196 (int) firstListIdentifier, (int) range, __FILE__, __LINE__);
199 if (range < 0)
202 sprintf(msg, "DeleteLists called with range (%d) less than zero", (int) range);
211 * display lists and looking for and deleting any in our range; or we
221 for (i = 0; i < range; i++)
247 GLuint DLM_APIENTRY crDLMGenLists(GLsizei range) argument
255 (int) range, __FILE__, __LINE__);
259 return crHashtableAllocKeys(listState->dlm->displayLists, range);
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/expando/
H A Dexpandospu.c110 expandoDeleteLists(GLuint first, GLsizei range) argument
112 crDLMDeleteLists(first, range);
116 expandoGenLists(GLsizei range) argument
118 return crDLMGenLists(range);
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dconcur.c97 PRUintn range = DEFAULT_RANGE; local
114 case 'r': /* range limit */
115 range = atoi(opt->value);
126 if (0 == range) range = DEFAULT_RANGE;
134 PR_STDERR, "Testing with %d CPUs and %d interations\n", range, loops);
136 threads = (PRThread**) PR_CALLOC(sizeof(PRThread*) * range);
139 for (cpus = 1; cpus <= range; ++cpus)
151 for (cpus = range; cpus > 0; cpus--)
160 for(cnt = 0; cnt < range; cn
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzmaDec.h52 UInt32 range, code; member in struct:__anon10462
H A DLzmaDec.c36 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
38 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
39 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits));
40 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits));
66 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<= 8; code = (code << 8) | (*buf++); }
68 #define IF_BIT_0_CHECK(p) ttt = *(p); NORMALIZE_CHECK; bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
69 #define UPDATE_0_CHECK range = bound;
70 #define UPDATE_1_CHECK range
175 UInt32 range = p->range; local
352 range >>= 1; local
516 UInt32 range = p->range; local
680 range >>= 1; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaDec.h52 UInt32 range, code; member in struct:__anon10238
H A DLzmaDec.c17 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
19 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
20 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits));
21 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits));
47 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<= 8; code = (code << 8) | (*buf++); }
49 #define IF_BIT_0_CHECK(p) ttt = *(p); NORMALIZE_CHECK; bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
50 #define UPDATE_0_CHECK range = bound;
51 #define UPDATE_1_CHECK range
156 UInt32 range = p->range; local
333 range >>= 1; local
497 UInt32 range = p->range; local
661 range >>= 1; local
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A DgenUnicode.py4 # the character-validation range routines, and updated to the
30 # before a range table is produced. If there are less than this
40 # block range
57 range = string.strip(fields[0]) variable
58 (start, end) = string.split(range, "..")
302 # a range table suitable for xmlCharInRange
311 for range in ranges:
312 (low, high) = range
348 * Returns pointer to range function if found, otherwise NULL
427 for range i
[all...]
/vbox/src/VBox/Devices/PC/BIOS/
H A Dsystem.c252 mem_range_t __far *range; local
254 range = ES :> (mem_range_t *)DI;
255 range->start = start;
256 range->xstart = extra_start;
259 range->len = end;
260 range->xlen = extra_end;
261 range->type = type;
687 * a single reserved range from 0xd0000 to 0xffffff.
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_lists.c1278 GLuint STATE_APIENTRY crStateGenLists(GLsizei range) argument
1289 if (range < 0)
1291 crStateError(__LINE__, __FILE__, GL_INVALID_VALUE, "Negative range passed to glGenLists: %d", range);
1295 start = crHashtableAllocKeys(g->shared->dlistTable, range);
1301 void STATE_APIENTRY crStateDeleteLists (GLuint list, GLsizei range) argument
1311 if (range < 0)
1313 crStateError(__LINE__, __FILE__, GL_INVALID_VALUE, "Negative range passed to glDeleteLists: %d", range);
1317 crHashtableDeleteBlock(g->shared->dlistTable, list, range, crFre
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dhash.c529 GLuint crHashtableAllocKeys( CRHashTable *h, GLsizei range) argument
537 res = crHashIdPoolAllocBlock (h->idPool, range);
540 for (i = 0; i < range; ++i)
586 void crHashtableDeleteBlock( CRHashTable *h, unsigned long key, GLsizei range, CRHashtableCallback deleteFunc ) argument
590 for (i = 0; i < (GLuint)range; i++) {
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/graphics/
H A DUIGraphicsTextPane.cpp379 /* Add format range to list: */
398 /* Add format range to list: */
446 foreach (const QTextLayout::FormatRange &range, pTextLayout->additionalFormats()) argument
449 if (!range.format.isAnchor())
453 const int iStart = range.start;
454 const int iLength = range.length;
469 return range.format.anchorHref();
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Drandrstr.h96 Bool range; member in struct:_rrProperty
323 * Set the range of sizes for the screen
758 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Drandrstr.h96 Bool range; member in struct:_rrProperty
323 * Set the range of sizes for the screen
756 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Drandrstr.h96 Bool range; member in struct:_rrProperty
323 * Set the range of sizes for the screen
756 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Drandrstr.h102 Bool range; member in struct:_rrProperty
358 * Set the range of sizes for the screen
870 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Drandrstr.h102 Bool range; member in struct:_rrProperty
382 * Set the range of sizes for the screen
891 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Drandrstr.h102 Bool range; member in struct:_rrProperty
382 * Set the range of sizes for the screen
891 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Drandrstr.h100 Bool range; member in struct:_rrProperty
382 * Set the range of sizes for the screen
891 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Drandrstr.h100 Bool range; member in struct:_rrProperty
382 * Set the range of sizes for the screen
872 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Drandrstr.h100 Bool range; member in struct:_rrProperty
383 * Set the range of sizes for the screen
876 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Drandrstr.h100 Bool range; member in struct:_rrProperty
383 * Set the range of sizes for the screen
871 Bool pending, Bool range, Bool immutable,
/vbox/src/VBox/Devices/PC/ipxe/src/net/tcp/
H A Dhttpcore.c652 char range[48]; /* Enough for two 64-bit integers in decimal */ member in struct:__anon15786
696 snprintf ( dynamic->range, sizeof ( dynamic->range ),
721 ( partial ? dynamic->range : "" ),
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_phy.c168 int range, max_spur_cnts, synth_freq; local
172 * Need to verify range +/- 10 MHz in control channel, otherwise spur
183 range = 19;
190 range = 10;
194 range = 10;
211 if (cur_bb_spur < range) {
402 int range = 10; local
422 range = 19;
429 range = 10;
437 if (abs(freq_offset) < range) {
[all...]
/vbox/src/VBox/Additions/x11/x11include/randrproto-1.3.0/X11/extensions/
H A Drandrproto.h326 BOOL range; member in struct:__anon3782
344 BOOL range; member in struct:__anon3783

Completed in 102 milliseconds

123