Searched defs:start (Results 101 - 125 of 352) sorted by relevance

1234567891011>>

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Duxpoll.c68 PRIntervalTime start, elapsed, remaining; local
192 start = PR_IntervalNow();
207 elapsed = (PRIntervalTime)(PR_IntervalNow() - start);
293 PRIntervalTime remaining, elapsed, start; local
401 start = PR_IntervalNow();
419 elapsed = (PRIntervalTime) (PR_IntervalNow() - start);
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dselect2.c293 PRIntervalTime start, stop; local
297 start = PR_IntervalNow();
301 d = (double)PR_IntervalToMicroseconds(stop - start);
302 tot = PR_IntervalToMilliseconds(stop-start);
H A Dthreads.c158 PRIntervalTime start, stop; local
161 start = PR_IntervalNow();
167 d = (double)PR_IntervalToMicroseconds(stop - start);
H A Dtime.c141 PRIntervalTime start, stop; local
145 start = PR_IntervalNow();
149 d = (double)PR_IntervalToMicroseconds(stop - start);
150 tot = PR_IntervalToMilliseconds(stop-start);
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsTAString.cpp494 nsTAString_CharT::IsDependentOn(const char_type* start, const char_type *end) const argument
498 return AsSubstring()->IsDependentOn(start, end);
500 return ToSubstring().IsDependentOn(start, end);
/vbox/src/libs/xpcom18a4/xpcom/tests/windows/
H A DnsStringTest.h118 start=clock();
126 return (double)(stop - start) / CLOCKS_PER_SEC;
133 clock_t start,stop; member in class:Stopwatch
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgzjoin.c285 unsigned char *start; /* start of compressed data in buffer */ local
311 start = strm.next_in;
312 last = start[0] & 1;
314 start[0] &= ~1;
319 fwrite(start, 1, strm.next_in - start, out);
320 start = in->buf;
360 fwrite(start, 1, strm.next_in - start, ou
[all...]
/vbox/src/VBox/Devices/Graphics/BIOS/tests/
H A Dtestbios.c22 Bit16u start; member in struct:__anon13144
265 biosarea->start=peek(0x40,0x4e);
296 printf("start : %04x\n",biosarea->start);
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Dshaderapi.c457 SHADERDECL(int) ShaderSetVertexShaderConstantB(void *pShaderContext, uint32_t start, const uint8_t *srcData, uint32_t count) argument
460 unsigned int i, cnt = min(count, MAX_CONST_B - start);
465 Log(("(ShaderSetVertexShaderConstantB %p, srcData %p, start %d, count %d)\n",
466 srcData, start, count));
468 if (!srcData || start >= MAX_CONST_B)
470 Log(("incorrect vertex shader const data: start(%u), srcData(0x%p), count(%u)", start, srcData, count));
474 memcpy(&This->updateStateBlock->vertexShaderConstantB[start], srcData, cnt * sizeof(BOOL));
476 Log(("Set BOOL constant %u to %s\n", start + i, srcData[i]? "true":"false"));
478 for (i = start;
487 ShaderSetVertexShaderConstantI(void *pShaderContext, uint32_t start, const int32_t *srcData, uint32_t count) argument
515 ShaderSetVertexShaderConstantF(void *pShaderContext, uint32_t start, const float *srcData, uint32_t count) argument
542 ShaderSetPixelShaderConstantB(void *pShaderContext, uint32_t start, const uint8_t *srcData, uint32_t count) argument
572 ShaderSetPixelShaderConstantI(void *pShaderContext, uint32_t start, const int32_t *srcData, uint32_t count) argument
600 ShaderSetPixelShaderConstantF(void *pShaderContext, uint32_t start, const float *srcData, uint32_t count) argument
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dip6_frag.c82 u16_t start; member in struct:ip6_reass_helper
144 if (iprh->start == 0) {
227 u16_t offset, len, start, end, validlen; local
245 start = (offset & IP6_FRAG_OFFSET_MASK);
246 end = start + len;
291 if (start == 0) {
316 if (start < iprh_tmp->start) {
319 if (end > iprh_tmp->start) {
328 else if (start
[all...]
/vbox/src/VBox/Devices/PC/BIOS/
H A Dsystem.c242 uint32_t start; member in struct:__anon15002
249 void set_e820_range(uint16_t ES, uint16_t DI, uint32_t start, uint32_t end, argument
255 range->start = start;
257 end -= start;
555 /* Make the BIOS warning for pretty much every Linux kernel start
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/image/
H A Dmultiboot.c127 mbmemmap[i].base_addr = memmap.regions[i].start;
129 memmap.regions[i].start );
132 if ( memmap.regions[i].start == 0 )
134 if ( memmap.regions[i].start == 0x100000 )
152 /* Copy image URI to base memory buffer as start of command line */
180 * @v start Start address for modules
185 static int multiboot_add_modules ( struct image *image, physaddr_t start, argument
207 start = ( ( start + 0xfff ) & ~0xfff );
210 if ( ( rc = prep_segment ( phys_to_user ( start ),
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dexec.c117 /* We have found the start of the next argument */
121 /* Skip to start of next whitespace, if any */
555 unsigned long start; local
568 start = currticks();
570 while ( ( currticks() - start ) <= delay ) {
H A Dmalloc.c282 * the very start of the heap.
500 * @v start Start address
503 * Adds a block of memory [start,end) to the allocation pool. This is
506 * @c start must be aligned to at least a multiple of sizeof(void*).
508 void mpopulate ( void *start, size_t len ) { argument
512 free_memblock ( start, ( len & ~( MIN_MEMBLOCK_SIZE - 1 ) ) );
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Drsa.c426 uint8_t *start; local
453 start = ( zero + 1 );
454 plaintext_len = ( end - start );
457 memcpy ( plaintext, start, plaintext_len );
/vbox/src/VBox/Main/testcase/
H A DtstCollector.cpp60 start = RTTimeMilliTS(); \
66 } while (RTTimeMilliTS() - start < RUN_TIME_MS); \
105 uint64_t start; local
120 start = RTTimeNanoTS();
138 printf("\n%u VMs -- %.2f%% of CPU time\n", cVMs, (RTTimeNanoTS() - start) / 10000000. / times);
398 uint64_t start; local
487 start = RTTimeMilliTS();
488 while (RTTimeMilliTS() - start < 5000)
H A DtstUSBProxyLinux.cpp36 int USBProxyService::start() { return VINF_SUCCESS; } function in class:USBProxyService
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dfilenet.c140 crFileSend( CRConnection *conn, void **bufp, const void *start, unsigned int len ) argument
155 crFileWriteExact( conn, start, len );
166 * the length field, even when start == *bufp. */
167 lenp = (unsigned int *) start - 1;
H A Dudptcpip.c241 const void *start, unsigned int len )
269 crTCPIPWriteExact( conn, start, len );
280 * the length field, even when start == *bufp. */
281 lenp = (unsigned int *) start - 1;
314 const void *start, unsigned int len)
330 crUDPTCPIPSend( conn, bufp, start, len);
335 crUDPTCPIPSend( conn, bufp, start, len);
363 seqp = (unsigned int *) start - 1;
240 crUDPTCPIPSend( CRConnection *conn, void **bufp, const void *start, unsigned int len ) argument
313 crUDPTCPIPBarf( CRConnection *conn, void **bufp, const void *start, unsigned int len) argument
/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/
H A Dunpack_arrays.c137 GLuint start = READ_DATA( 12, GLuint ); local
149 cr_unpackDispatch.DrawRangeElements(mode, start, end, count, type, indexptr);
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dio.h508 /** Physical start address */
509 uint64_t start; member in struct:memory_region
/vbox/src/VBox/Devices/PC/ipxe/src/net/80211/
H A Dsec80211.c330 * @v start Pointer to first byte of @a version field
339 int sec80211_detect_ie ( int is_rsn, u8 *start, u8 *end, argument
346 u8 *rsn = start;
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Dpxemenu.c281 unsigned long start = currticks(); local
319 elapsed = ( now - start );
325 start = now;
/vbox/src/VBox/Frontends/VirtualBox/src/net/
H A DUIUpdateManager.cpp76 void start() { emit sigStartQueue(); } function in class:UIUpdateQueue
392 pDl->start();
488 m_pQueue->start();
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_client.c709 crPackDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, argument
713 int packet_length = sizeof(int) + sizeof(mode) + sizeof(start)
741 WRITE_DATA_AI(GLuint, start);
883 crPackExpandDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, CRClientState *c, const GLfloat *pZva) argument
885 if (start>end)
887 crWarning("crPackExpandDrawRangeElements start>end (%d>%d)", start, end);

Completed in 286 milliseconds

1234567891011>>