/vbox/src/VBox/Additions/common/crOpenGL/ |
H A D | Linux_i386_glxapi_exports.py | 91 for index in range(len(glx_functions)): 92 func_name = glx_functions[index] 96 print "\tmov \trax, qword glxim+%d" % (8*index) 99 print "\tmov \teax, dword glxim+%d" % (4*index)
|
H A D | SunOS_i386_glxapi_exports.py | 91 for index in range(len(glx_functions)): 92 func_name = glx_functions[index] 96 print "\tjmp \t[glxim+%d wrt rip wrt ..gotpcrel]" % (8*index) 98 print "\tjmp \t[glxim+%d wrt ..gotpc]" % (4*index)
|
H A D | Linux_i386_exports.py | 30 for index in range(len(keys)): 31 func_name = keys[index] 39 print "\tmov \trax, qword glim+%d" % (8*index) 42 print "\tmov \teax, dword glim+%d" % (4*index) 67 index = keys.index(alias) 70 print "\tmov \trax, qword glim+%d" % (8*index) 73 print "\tmov \teax, dword glim+%d" % (4*index)
|
H A D | Linux_i386_exports_dri.py | 30 for index in range(len(keys)): 31 func_name = keys[index] 39 print "\tmov \trax, qword glim+%d" % (8*index) 42 print "\tmov \teax, dword glim+%d" % (4*index) 67 index = keys.index(alias) 70 print "\tmov \trax, qword glim+%d" % (8*index) 73 print "\tmov \teax, dword glim+%d" % (4*index)
|
H A D | SunOS_i386_exports.py | 36 for index in range(len(keys)): 37 func_name = keys[index] 45 print "\tjmp \t[glim+%d wrt rip wrt ..gotpcrel]" % (8*index) 47 print "\tjmp \t[glim+%d wrt ..gotpc]" % (4*index) 71 index = keys.index(alias) 74 print "\tjmp \t[glim+%d wrt rip wrt ..gotpcrel]" % (8*index) 76 print "\tjmp \t[glim+%d wrt ..gotpc]" % (4*index)
|
H A D | SunOS_i386_exports_dri.py | 36 for index in range(len(keys)): 37 func_name = keys[index] 45 print "\tjmp \t[glim+%d wrt rip wrt ..gotpcrel]" % (8*index) 47 print "\tjmp \t[glim+%d wrt ..gotpc]" % (4*index) 71 index = keys.index(alias) 74 print "\tjmp \t[glim+%d wrt rip wrt ..gotpcrel]" % (8*index) 76 print "\tjmp \t[glim+%d wrt ..gotpc]" % (4*index)
|
H A D | windows_i386_exports.py | 29 for index in range(len(keys)): 30 func_name = keys[index] 38 print "\tmov \trax, qword glim+%d" % (8*index) 41 print "\tmov \teax, dword _glim+%d" % (4*index) 66 index = keys.index(alias) 69 print "\tmov \trax, qword glim+%d" % (8*index) 72 print "\tmov \teax, dword _glim+%d" % (4*index)
|
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/ |
H A D | server_simpleget.py | 28 for index in range(len(funcs)): 29 func_name = funcs[index] 33 print '\t%s *get_values;' % types[index] 48 """ % (types[index], types[index]) 50 print '\tget_values = (%s *) crAlloc( tablesize );' % types[index] 148 """ % (types[index], types[index], types[index], types[index], type [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | yield.c | 56 int index; local 59 for (index=0; index<10; index++) { 70 int index; local 76 for (index=0; index<THREADS; index++) { 77 a[index] = PR_CreateThread(PR_USER_THREAD, 79 (void *)index, [all...] |
H A D | ioconthr.c | 84 int index; local 91 for (index = 0; index < num_threads; index++) { 92 if (PR_NewTCPSocketPair(&fds[2 * index]) == PR_FAILURE) { 96 threads[index] = PR_CreateThread( 97 PR_USER_THREAD, ThreadFunc, fds[2 * index], 99 if (NULL == threads[index]) { 111 for (index = 0; index < num_thread [all...] |
H A D | cvar2.c | 104 PRInt32 index; local 106 for (index=0; index<info->loops; index++) { 111 printf("shared thread %ld notified in loop %ld\n", info->id, index); 131 PRInt32 index; local 133 for (index=0; index<info->loops; index++) { 141 printf("solo thread %ld notified in loop %ld\n", info->id, index); 199 PRInt32 index, loops; local 269 PRInt32 index, loops; local 343 PRInt32 index, loops; local 429 PRInt32 index, loops; local 510 PRInt32 index, loops; local 643 PRInt32 index, loops; local 754 PRInt32 index, loops; local [all...] |
H A D | many_cv.c | 70 PRIntn index, nl; local 110 for (index = 0; index < cvs; ++index) 112 cv[index] = PR_NewCondVar(ml); 113 PR_ASSERT(NULL != cv[index]); 116 for (index = 0; index < loops; ++index) 129 for (index [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/funcs/ |
H A D | tst.index.d.out | 4 if (index("foobarbaz", "barbaz") != 3) { 5 printf("perl => index(\"foobarbaz\", \"barbaz\") = %d\n", 6 index("foobarbaz", "barbaz")); 7 printf(" D => index(\"foobarbaz\", \"barbaz\") = 3\n"); 18 if (index("foofoofoo", "foo") != 0) { 19 printf("perl => index(\"foofoofoo\", \"foo\") = %d\n", 20 index("foofoofoo", "foo")); 21 printf(" D => index(\"foofoofoo\", \"foo\") = 0\n"); 32 if (index("boofoofoo", "foo") != 3) { 33 printf("perl => index(\"boofoofo [all...] |
H A D | tst.substr.d | 33 int index; 48 command[i].index = 3; 52 command[i].index = 300; 56 command[i].index = -10; 60 command[i].index = 0; 64 command[i].index = 1; 68 command[i].index = strlen(str) - 1; 72 command[i].index = strlen(str); 76 command[i].index = strlen(str) + 1; 80 command[i].index [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/ |
H A D | prtpd.c | 110 ** This routine returns a new index for per-thread-private data table. 111 ** The index is visible to all threads within a process. This index can 113 ** to save and retrieve data associated with the index for a thread. 115 ** The index independently maintains specific values for each binding thread. 118 ** Upon a new index return the value associated with the index for all threads 133 PRInt32 index; local 140 index = PR_AtomicIncrement(&_pr_tpd_highwater) - 1; /* allocate index */ 230 PR_GetThreadPrivate(PRUintn index) argument 251 PRUint32 index; local [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/ |
H A D | UIBootTable.cpp | 81 QModelIndex index = currentIndex(); local 82 moveItemTo(index, index.row() - 1); 87 QModelIndex index = currentIndex(); local 88 moveItemTo(index, index.row() + 2); 113 QModelIndex index = currentIndex(); local 114 return moveItemTo(index, index.row() - 1); 118 QModelIndex index local 123 QModelIndex index = currentIndex(); local 128 QModelIndex index = currentIndex(); local 142 moveItemTo(const QModelIndex &index, int row) argument [all...] |
/vbox/src/VBox/Additions/common/crOpenGL/passthrough/ |
H A D | passthrough.py | 35 for index in range(len(keys)): 36 func_name = keys[index] 37 print '\t__fillin( %3d, "%s", (SPUGenericFunction) child->dispatch_table.%s );' % (index, func_name, func_name )
|
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/module/ |
H A D | tmTransactionManager.cpp | 52 for (PRUint32 index = 0; index < size; index++) { 53 queue = (tmQueue *)mQueues[index]; 80 PRInt32 index = AddQueue(name); local 81 if (index >= 0) 82 queue = GetQueue(index); // GetQueue may return nsnull 130 for (PRUint32 index = 0; index < size; index [all...] |
H A D | tmQueue.cpp | 50 PRUint32 index = 0; local 52 for ( ; index < size ; index++) { 53 if (mTransactions[index]) 54 delete (tmTransaction *)mTransactions[index]; 108 if (status >= 0) { // append returns the index of the added element 111 for (PRUint32 index = 0; index < size; index++) { 112 if (mTransactions[index]) [all...] |
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/ |
H A D | xf86platformBus.h | 42 xf86_get_platform_attrib(int index, int attrib_id); 48 xf86_add_platform_device_attrib(int index, int attrib_id, char *attrib_str); 50 xf86_get_platform_device_unowned(int index); 53 xf86platformAddDevice(int index); 55 xf86platformRemoveDevice(int index);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | xf86platformBus.h | 49 xf86_get_platform_attrib(int index, int attrib_id); 51 xf86_get_platform_int_attrib(int index, int attrib_id, int def); 57 xf86_get_platform_device_unowned(int index); 60 xf86_add_platform_device_attrib(int index, int attrib_id, char *attrib_str); 62 xf86_add_platform_device_int_attrib(int index, int attrib_id, int attrib_value); 65 xf86platformAddDevice(int index); 67 xf86platformRemoveDevice(int index);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsIMultiplexInputStream.idl | 63 * Insert a stream at specified index. If the cursor of this stream is at 64 * the beginning of the stream at index, the cursor will be placed at the 70 * @param index index to insert stream at, must be <= count 72 void insertStream(in nsIInputStream stream, in unsigned long index); 75 * Remove stream at specified index. If this stream is the one currently 78 * @param index remove stream at this index, must be < count 80 void removeStream(in unsigned long index); 83 * Get stream at specified index [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | lineconsole.c | 54 line->buffer[line->index++] = character; 58 ( line->index < ( line->len - 1 /* NUL */ ) ) ) { 63 line->index = 0;
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/ |
H A D | xf86platformBus.h | 42 xf86_get_platform_attrib(int index, int attrib_id); 48 xf86_add_platform_device_attrib(int index, int attrib_id, char *attrib_str); 51 xf86platformAddDevice(int index); 53 xf86platformRemoveDevice(int index);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/ |
H A D | xf86platformBus.h | 42 xf86_get_platform_attrib(int index, int attrib_id); 48 xf86_add_platform_device_attrib(int index, int attrib_id, char *attrib_str); 51 xf86platformAddDevice(int index); 53 xf86platformRemoveDevice(int index);
|