Searched defs:index (Results 101 - 125 of 394) sorted by relevance

1234567891011>>

/vbox/src/VBox/Frontends/VirtualBox/src/settings/
H A DUISettingsDialog.cpp194 int index = m_pages[cId]; local
197 if (index < m_sizeList.count())
199 QSize ss = m_sizeList.at(index);
202 m_pStack->setCurrentIndex(index);
207 m_pStack->setCurrentIndex(index);
212 m_pStack->setCurrentIndex(index);
/vbox/src/VBox/Frontends/VirtualBox/src/settings/global/
H A DUIGlobalSettingsInput.cpp271 /* Search for corresponding cache item index: */
273 /* Make sure index is valid: */
297 emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
322 Qt::ItemFlags UIHotKeyTableModel::flags(const QModelIndex &index) const
324 /* No flags for invalid index: */
325 if (!index.isValid()) return Qt::NoItemFlags;
327 switch (index.column())
362 QVariant UIHotKeyTableModel::data(const QModelIndex &index, int iRole /* = Qt::DisplayRole*/) const argument
364 /* No data for invalid index
457 setData(const QModelIndex &index, const QVariant &value, int iRole ) argument
[all...]
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_client.c26 static void crPackVertexAttrib(const CRVertexArrays *array, unsigned int attr, GLint index) argument
28 unsigned char *p = array->a[attr].p + index * array->a[attr].stride;
31 Assert(index >= 0);
305 crPackExpandArrayElement(GLint index, CRClientState *c, const GLfloat *pZva) argument
312 /*crDebug("crPackExpandArrayElement(%i)", index);*/
316 p = array->n.p + index * array->n.stride;
339 p = array->c.p + index * array->c.stride;
414 p = array->s.p + index * array->s.stride;
451 p = array->f.p + index * array->f.stride;
467 p = array->t[unit].p + index * arra
1030 crPackLockClientPointer(GLint first, GLint count, unsigned char **ppData, int index, CRClientState *c) argument
[all...]
H A Dpack_program.c17 void PACK_APIENTRY crPackProgramParameters4dvNV (GLenum target, GLuint index, GLuint num, const GLdouble * params) argument
21 int packet_length = sizeof(int) + sizeof(target) + sizeof(index) + sizeof(num) + num * 4 * sizeof(GLdouble);
26 WRITE_DATA(sizeof(int) + 4, GLuint, index);
35 void PACK_APIENTRY crPackProgramParameters4fvNV (GLenum target, GLuint index, GLuint num, const GLfloat * params) argument
39 int packet_length = sizeof(int) + sizeof(target) + sizeof(index) + sizeof(num) + num * 4 * sizeof(GLfloat);
44 WRITE_DATA(sizeof(int) + 4, GLuint, index);
53 void PACK_APIENTRY crPackVertexAttribs1dvNV( GLuint index, GLsizei n, const GLdouble *v ) argument
56 /* reverse order so we hit index 0 last (provoking glVertex) */
58 crPackVertexAttrib1dvARB(index + i, v + i);
62 void PACK_APIENTRY crPackVertexAttribs1fvNV( GLuint index, GLsize argument
71 crPackVertexAttribs1svNV( GLuint index, GLsizei n, const GLshort *v ) argument
80 crPackVertexAttribs2dvNV( GLuint index, GLsizei n, const GLdouble *v ) argument
88 crPackVertexAttribs2fvNV( GLuint index, GLsizei n, const GLfloat *v ) argument
96 crPackVertexAttribs2svNV( GLuint index, GLsizei n, const GLshort *v ) argument
104 crPackVertexAttribs3dvNV( GLuint index, GLsizei n, const GLdouble *v ) argument
112 crPackVertexAttribs3fvNV( GLuint index, GLsizei n, const GLfloat *v ) argument
120 crPackVertexAttribs3svNV( GLuint index, GLsizei n, const GLshort *v ) argument
128 crPackVertexAttribs4dvNV( GLuint index, GLsizei n, const GLdouble *v ) argument
136 crPackVertexAttribs4fvNV( GLuint index, GLsizei n, const GLfloat *v ) argument
144 crPackVertexAttribs4svNV( GLuint index, GLsizei n, const GLshort *v ) argument
152 crPackVertexAttribs4ubvNV( GLuint index, GLsizei n, const GLubyte *v ) argument
366 crPackVertexAttrib4NbvARB( GLuint index, const GLbyte *v ) argument
382 crPackVertexAttrib4NivARB( GLuint index, const GLint *v ) argument
398 crPackVertexAttrib4NsvARB( GLuint index, const GLshort *v ) argument
414 crPackVertexAttrib4NubvARB(GLuint index, const GLubyte * v) argument
430 crPackVertexAttrib4NuivARB(GLuint index, const GLuint * v) argument
446 crPackVertexAttrib4NusvARB(GLuint index, const GLushort * v) argument
462 crPackVertexAttrib4bvARB(GLuint index, const GLbyte * v) argument
478 crPackVertexAttrib4ivARB(GLuint index, const GLint * v) argument
494 crPackVertexAttrib4uivARB(GLuint index, const GLuint * v) argument
510 crPackVertexAttrib4usvARB(GLuint index, const GLushort * v) argument
527 crPackVertexAttrib4ubvARB(GLuint index, const GLubyte * v) argument
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageDHCPServer.cpp120 int index = iStart; local
150 index,
H A DVBoxManageNATNetwork.cpp105 int index = iStart; local
131 index,
/vbox/src/VBox/Additions/haiku/SharedFolders/
H A DOpenHashTable.h162 size_t index = fDefinition.HashKey(key) & (fTableSize - 1);
163 ValueType* slot = fTable[index];
220 size_t index = fDefinition.Hash(value) & (fTableSize - 1); local
222 ValueType* slot = fTable[index];
233 fTable[index] = next;
358 Iterator(const HashTable* table, size_t index, ValueType* value) argument
359 : fTable(table), fIndex(index), fNext(value) {}
405 size_t index = fDefinition.HashKey(key) & (fTableSize - 1);
406 ValueType* slot = fTable[index];
418 return Iterator(this, index
427 size_t index = fDefinition.Hash(value) & (tableSize - 1); local
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DPclSFonts.h80 unsigned char *index; member in struct:_PclFontHead8Rec
89 PclFontMapRec **index; member in struct:_PclFontHead16Rec
H A Dconfig.h45 #undef index macro
/vbox/src/VBox/Additions/WINNT/SharedFolders/driver/
H A Dinfo.c51 uint32_t index, fSFFlags, cFiles, u32BufSize; local
98 index = 0;
102 index));
103 index = RxContext->QueryDirectory.FileIndex;
170 pVBoxFobx->hFile, fSFFlags, index, u32BufSize));
172 ParsedPath, fSFFlags, index, &u32BufSize, (PSHFLDIRINFO)pHGCMBuffer, &cFiles);
275 pInfo->FileIndex = index;
313 pInfo->FileIndex = index;
352 pInfo->FileIndex = index;
441 pInfo->FileIndex = index;
[all...]
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dxgi_drm.h93 __u32 index; member in struct:xgi_mem_alloc
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/swrast/
H A Ds_span.h83 GLuint index[MAX_WIDTH]; /**< Color indexes */ member in struct:sw_span_arrays
139 GLfixed index, indexStep; member in struct:sw_span
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/tnl/
H A Dt_vb_lighttmp.h787 /* Now compute final color index */
790 GLfloat index; local
793 index = ind[MAT_INDEX_SPECULAR];
798 index = (ind[MAT_INDEX_AMBIENT]
801 if (index > ind[MAT_INDEX_SPECULAR]) {
802 index = ind[MAT_INDEX_SPECULAR];
805 indexResult[side][j] = index;
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DPclSFonts.h80 unsigned char *index; member in struct:_PclFontHead8Rec
89 PclFontMapRec **index; member in struct:_PclFontHead16Rec
H A Dconfig.h45 #undef index macro
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/src/
H A DtmTransactionService.cpp85 PRUint32 index = 0; local
88 for ( ; index < size; index ++) {
89 msg = (tm_waiting_msg*) mWaitingMessages[index];
95 for (index = 0; index < size; index++) {
96 qmap = (tm_queue_mapping*) mQueueMaps[index];
339 for (PRUint32 index = 0; index < siz
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/private/
H A Dpprmwait.h130 PRUintn index; /* position in hash table */ member in struct:PRMWaitEnumerator
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/bthreads/
H A Dbtthread.c67 /* these will be used to map an index returned by PR_NewThreadPrivateIndex()
482 int32 index; local
487 index = atomic_add( &tpd_slotsUsed, 1 );
488 if (index >= BT_TPD_LIMIT)
496 /* allocate a beos-native TLS slot for this index (the new slot
498 tpd_beosTLSSlots[index] = tls_allocate();
501 tpd_dtors[index] = destructor;
503 *newIndex = (PRUintn)index;
509 PR_SetThreadPrivate (PRUintn index, void* priv)
517 if(index <
536 PR_GetThreadPrivate(PRUintn index) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcthread.cpp154 PRStatus RCThread::NewPrivateIndex(PRUintn* index) argument
155 { return PR_NewThreadPrivateIndex(index, _tpd_dtor); }
157 PRStatus RCThread::SetPrivateData(PRUintn index) argument
158 { return PR_SetThreadPrivate(index, NULL); }
160 PRStatus RCThread::SetPrivateData(PRUintn index, RCThreadPrivateData* data) argument
162 return PR_SetThreadPrivate(index, data);
165 RCThreadPrivateData* RCThread::GetPrivateData(PRUintn index) argument
166 { return (RCThreadPrivateData*)PR_GetThreadPrivate(index); }
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2cv.c130 PRIntn index; local
154 for (index = 0; index < notified->length; ++index) {
155 _MDCVar *cv = notified->cv[index].cv;
161 notified->cv[index].notifyHead = NULL;
166 if (-1 == notified->cv[index].times) {
173 notified->cv[index].notifyHead = cv->waitHead;
178 i = notified->cv[index].times;
184 notified->cv[index]
242 PRIntn index = 0; local
[all...]
H A Dos2sock.c575 PRInt32 index, amount = 0; local
586 for (index=0; index<iov_size; index++) {
587 amount += iov[index].iov_len;
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw95sock.c354 int index; local
358 for (index=0; index < iov_size; index++)
360 rv = _PR_MD_SEND(fd, iov[index].iov_base, iov[index].iov_len, 0, timeout);
363 if ( rv != iov[index].iov_len )
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/
H A Dprrwlock.c396 * allocated thread-private-data index for rwlock list
481 int new_index = 0, index, done = 0; local
487 index = lock_stack->trs_index - 1;
488 while (index-- >= 0) {
489 if ((lock_stack->trs_stack[index] == rwlock) && !done) {
493 lock_stack->trs_stack[index] = NULL;
500 if ((lock_stack->trs_stack[index] != NULL) && !new_index)
501 new_index = index + 1;
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dbug1test.c71 PRInt32 index; local
80 for (index = 0; index < delay * 10; index++)
H A Dcvar2.c104 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...]

Completed in 175 milliseconds

1234567891011>>