Searched defs:index (Results 201 - 225 of 394) sorted by relevance

1234567891011>>

/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_client.c233 /* color index array */
605 /* Calculate the bytes per index for address calculation */
914 void STATE_APIENTRY crStateVertexAttribPointerNV(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *p) argument
924 crStateVertexAttribPointerARB(index, size, type, normalized, stride, p);
928 void STATE_APIENTRY crStateVertexAttribPointerARB(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *p) argument
937 if (index >= CR_MAX_VERTEX_ATTRIBS)
939 crStateError(__LINE__, __FILE__, GL_INVALID_VALUE, "glVertexAttribPointerARB: invalid index: %d", (int) index);
961 crStateClientSetPointer(&(c->array.a[index]), size, type, normalized, stride, p);
964 DIRTY(cb->a[index],
968 crStateGetVertexAttribPointervNV(GLuint index, GLenum pname, GLvoid **pointer) argument
994 crStateGetVertexAttribPointervARB(GLuint index, GLenum pname, GLvoid **pointer) argument
2396 crStateGetClientPointerByIndex(int index, CRVertexArrays *array) argument
[all...]
H A Dstate_glsl.c632 DECLEXPORT(void) STATE_APIENTRY crStateBindAttribLocation(GLuint program, GLuint index, const char * name) argument
644 if (index>=CR_MAX_VERTEX_ATTRIBS)
646 crWarning("crStateBindAttribLocation: Index too big %d", index);
654 pProgram->currentState.pAttribs[i].index = index;
670 pAttribs[pProgram->currentState.cAttribs].index = index;
958 pProgram->pAttribs[i].index = ((GLint*)pCurrent)[0];
973 crDebug("crStateGLSLProgramCacheAttribs: attribs[%i]=%d, %s", i, pProgram->pAttribs[i].index, pProgram->pAttribs[i].name);
1303 result = pProgram->pAttribs[i].index;
[all...]
H A Dstate_init.c815 crStateGetChromiumParametervCR( GLenum target, GLuint index, GLenum type, GLsizei count, GLvoid *values ) argument
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Damd8111e.c136 static int amd8111e_wait_tx_ring(struct amd8111e_priv *lp, unsigned int index);
440 static int amd8111e_wait_tx_ring(struct amd8111e_priv *lp, unsigned int index) argument
445 status = le16_to_cpu(lp->tx_ring[index].tx_flags);
448 status = le16_to_cpu(lp->tx_ring[index].tx_flags);
451 printf("Error: tx slot %d timeout, stat = 0x%x\n", index, status);
536 unsigned int index; local
545 index = lp->tx_idx;
546 if (amd8111e_wait_tx_ring(lp, index))
550 frame = (struct eth_frame *)lp->tx_buf[index];
558 lp->tx_ring[index]
578 unsigned int index, pkt_ok; local
[all...]
H A Db44.c49 static inline int ring_next(int index) argument
52 return (index + 1) & (B44_RING_SIZE - 1);
548 int index)
564 val = CAM_CTRL_WRITE | (index << CAM_CTRL_INDEX_SHIFT);
809 /* Update next available descriptor index */
547 b44_cam_write(struct b44_private *bp, unsigned char *data, int index) argument
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/
H A Dath.h68 static inline int32_t sign_extend32(uint32_t value, int index) argument
70 uint8_t shift = 31 - index;
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djsr173_api.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/stream/ javax/xml/stream/events/ ...
/vbox/src/VBox/RDP/client-1.8.3/
H A Dorders.c529 int index, data, next; local
562 for (index = 0; index < os->datasize; index++)
563 DEBUG(("%02x ", os->data[index]));
579 index = 0;
584 flags = os->data[index++];
608 int index, data, next; local
648 for (index = 0; index < o
696 int index, next, data; local
1199 int index; local
[all...]
H A Drdpsnd.c94 static void rdpsnd_queue_write(STREAM s, uint16 tick, uint8 index);
129 DEBUG_SOUND(("RDPSND: -> RDPSND_COMPLETION(tick: %u, index: %u)\n",
494 DEBUG_SOUND(("RDPSND: RDPSND_WRITE(tick: %u, format: %u, index: %u, data: %u bytes)\n", (unsigned) tick, (unsigned) format, (unsigned) packet_index, (unsigned) s->size - 8));
498 error("RDPSND: Invalid format index\n");
563 error("RDPSND: Invalid format index\n");
853 rdpsnd_queue_write(STREAM s, uint16 tick, uint8 index) argument
868 packet->index = index;
966 rdpsnd_send_completion((packet->tick + elapsed) % 65536, packet->index);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Ddixstruct.h94 int index; member in struct:_Client
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddrawprim.c139 * data from the index buffer. If the index buffer has no vbo (not
241 FIXME("tex: %d - Coord index %d is less than zero, expect a crash.\n", textureNo, coordIdx);
358 enum wined3d_format_id format, const UINT index, const void *ptr)
363 GL_EXTCALL(glVertexAttrib1fvARB(index, ptr));
366 GL_EXTCALL(glVertexAttrib2fvARB(index, ptr));
369 GL_EXTCALL(glVertexAttrib3fvARB(index, ptr));
372 GL_EXTCALL(glVertexAttrib4fvARB(index, ptr));
376 GL_EXTCALL(glVertexAttrib4ubvARB(index, ptr));
385 GL_EXTCALL(glVertexAttrib4NubvARB(index, (GLubyt
357 send_attribute(const struct wined3d_gl_info *gl_info, enum wined3d_format_id format, const UINT index, const void *ptr) argument
[all...]
/vbox/src/VBox/Additions/WINNT/SharedFolders/np/
H A Dvboxmrxnp.cpp600 ULONG index; /* Index of last entry returned. */ member in struct:_NPENUMCTX
668 pCtx->index = 0;
701 pCtx->index = 0;
714 pCtx->index = 0;
783 Log(("VBOXNP: NPEnumResource: *lpcCount 0x%x, *lpBufferSize 0x%x, pCtx->index %d\n",
784 *lpcCount, *lpBufferSize, pCtx->index));
806 while (cEntriesCopied < *lpcCount && pCtx->index < RTL_NUMBER_OF(ConnectionList))
808 if (ConnectionList[pCtx->index])
810 LocalName[0] = L'A' + (WCHAR)pCtx->index;
854 *pDst++ = L'A' + (WCHAR)pCtx->index;
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/array/
H A Darrayspu.c19 static void ARRAYSPU_APIENTRY arrayspu_ArrayElement( GLint index )
29 p = array->e.p + index * array->e.stride;
52 p = array->a[attr].p + index * array->a[attr].stride;
113 p = array->t[unit].p + index * array->t[unit].stride;
165 p = array->i.p + index * array->i.stride;
184 p = array->c.p + index * array->c.stride;
255 p = array->n.p + index * array->n.stride;
276 p = array->s.p + index * array->s.stride;
309 p = array->f.p + index * array->f.stride;
325 p = array->a[VERT_ATTRIB_POS].p + index * arra
565 arrayspu_VertexAttribPointerNV( GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer ) argument
674 arrayspu_VertexAttribPointerARB(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer) argument
684 arrayspu_EnableVertexAttribArrayARB(GLuint index) argument
691 arrayspu_DisableVertexAttribArrayARB(GLuint index) argument
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dutils.c583 int index; local
594 index = 0;
597 index = 1;
600 index = 2;
603 index = 3;
606 index = 4;
609 index = 5;
626 masks = masks_table_rgb[ index ];
630 masks = masks_table_rgba[ index ];
634 masks = masks_table_bgr[ index ];
740 int i, j, index; local
818 driGetConfigAttribIndex(const __DRIconfig *config, unsigned int index, unsigned int *value) argument
867 driIndexConfigAttrib(const __DRIconfig *config, int index, unsigned int *attrib, unsigned int *value) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Ddri_util.h288 unsigned int index; member in struct:__DRIdrawableRec
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Dvtxfmt_tmp.h359 static void GLAPIENTRY TAG(VertexAttrib1fNV)( GLuint index, GLfloat x ) argument
362 CALL_VertexAttrib1fNV(GET_DISPATCH(), ( index, x ));
365 static void GLAPIENTRY TAG(VertexAttrib1fvNV)( GLuint index, const GLfloat *v ) argument
368 CALL_VertexAttrib1fvNV(GET_DISPATCH(), ( index, v ));
371 static void GLAPIENTRY TAG(VertexAttrib2fNV)( GLuint index, GLfloat x, GLfloat y ) argument
374 CALL_VertexAttrib2fNV(GET_DISPATCH(), ( index, x, y ));
377 static void GLAPIENTRY TAG(VertexAttrib2fvNV)( GLuint index, const GLfloat *v ) argument
380 CALL_VertexAttrib2fvNV(GET_DISPATCH(), ( index, v ));
383 static void GLAPIENTRY TAG(VertexAttrib3fNV)( GLuint index, GLfloat x, GLfloat y, GLfloat z ) argument
386 CALL_VertexAttrib3fNV(GET_DISPATCH(), ( index,
389 VertexAttrib3fvNV( GLuint index, const GLfloat *v ) argument
395 VertexAttrib4fNV( GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w ) argument
401 VertexAttrib4fvNV( GLuint index, const GLfloat *v ) argument
408 VertexAttrib1fARB( GLuint index, GLfloat x ) argument
414 VertexAttrib1fvARB( GLuint index, const GLfloat *v ) argument
420 VertexAttrib2fARB( GLuint index, GLfloat x, GLfloat y ) argument
426 VertexAttrib2fvARB( GLuint index, const GLfloat *v ) argument
432 VertexAttrib3fARB( GLuint index, GLfloat x, GLfloat y, GLfloat z ) argument
438 VertexAttrib3fvARB( GLuint index, const GLfloat *v ) argument
444 VertexAttrib4fARB( GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w ) argument
450 VertexAttrib4fvARB( GLuint index, const GLfloat *v ) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Ddixstruct.h94 int index; member in struct:_Client
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprsocket.c112 int index, iov_cnt; local
130 for (index = 0; index < iov_size; index++)
131 sz += iov[index].iov_len;
150 for ( index = 0, tmp_out = count;
151 tmp_out >= iov[index].iov_len;
152 tmp_out -= iov[index].iov_len, index++){;} /* nothing to execute */
161 if (iov_size - index <
1621 PRUint32 index, index2; local
1635 PRUint32 index; local
1652 PRUint32 index, index2; local
1666 PRUint32 index; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/malloc/
H A Dprmalloc.c196 * The offset from pagenumber to index into the page directory
201 * The last index in the page directory we care about
254 static int extend_page_directory(u_long index);
385 extend_page_directory(u_long index) argument
390 TRACE(("%6d E %lu\n",malloc_event++,index));
393 i = index * sizeof *page_dir;
415 index = ((u_long)young >> malloc_pageshift) - malloc_origo;
416 page_dir[index] = MALLOC_FIRST;
418 page_dir[++index] = MALLOC_FOLLOW;
433 u_long index local
544 u_long index; local
825 u_long osize,page,index,tmp_index; local
928 free_pages(char *ptr, u_long page, int index, struct pginfo *info) argument
1041 free_bytes(void *ptr, u_long page, int index, struct pginfo *info) argument
1114 int index, tmp_index; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dsolaris.c654 int result, index, lwp_fd; local
692 for (index=0; index< num_lwps; index++) {
693 if (all_lwps[index] != me) {
694 if (_lwp_suspend(all_lwps[index]) < 0) {
696 all_lwps[index] = me; /* dummy it up */
704 for (index=0; index< num_lwps; index
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16sock.c472 int index; local
476 for (index=0; index < iov_size; index++)
484 rv = _PR_MD_SEND(fd, iov[index].iov_base, iov[index].iov_len, 0, timeout);
487 if ( rv != iov[index].iov_len )
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprtpool.c417 PRInt32 index; local
428 for(index = 1; index < (pollfds_used); index++) {
429 PRInt16 events = pollfds[index].in_flags;
430 PRInt16 revents = pollfds[index].out_flags;
431 jobp = polljobs[index];
476 if (PR_GetConnectStatus(&pollfds[index]) == PR_SUCCESS)
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsSupportsArray.cpp308 PRUint32 index = mCount; local
310 while (index--) {
311 if (NS_FAILED(other->GetElementAt(index, getter_AddRefs(otherElem))))
313 if (mArray[index] != otherElem)
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/
H A Dxptiprivate.h414 PRBool FindDirectory(nsILocalFile* dir, PRUint32* index);
415 PRBool FindDirectoryOfFile(nsILocalFile* file, PRUint32* index);
612 nsresult GetMethodInfo(PRUint16 index, const nsXPTMethodInfo * *info);
613 nsresult GetMethodInfoForName(const char *methodName, PRUint16 *index, const nsXPTMethodInfo * *info);
614 nsresult GetConstant(PRUint16 index, const nsXPTConstant * *constant);
705 NS_IMETHOD GetMethodInfo(PRUint16 index, const nsXPTMethodInfo * *info) { return !mEntry ? NS_ERROR_UNEXPECTED : mEntry->GetMethodInfo(index, info); } argument
706 NS_IMETHOD GetMethodInfoForName(const char *methodName, PRUint16 *index, const nsXPTMethodInfo * *info) { return !mEntry ? NS_ERROR_UNEXPECTED : mEntry->GetMethodInfoForName(methodName, index, info); } argument
707 NS_IMETHOD GetConstant(PRUint16 index, cons argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dloader.c74 unsigned int index; /* current index in the dll path list */ member in struct:dll_path_context
219 unsigned int index = context->index++; local
223 switch(index)
240 context->index++;
243 index -= 2;
244 if (index < nb_dll_paths)
245 return prepend( context->name, dll_paths[index], strlen( dll_paths[index] ));
[all...]

Completed in 166 milliseconds

1234567891011>>