Searched defs:top (Results 1 - 25 of 90) sorted by relevance

1234

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2inrval.c74 PRInt32 top; local
83 top = timestamp.ulHi & _os2_highMask;
84 top = top << (32 - _os2_bitShift);
86 timestamp.ulLo = timestamp.ulLo + top;
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Dmemtop_umalloc.c50 static userptr_t top = UNULL; variable
95 top = bottom = phys_to_user ( r_end );
106 user_to_phys ( top, 0 ), heap_size );
119 while ( bottom != top ) {
149 if ( bottom == top ) {
211 hide_umalloc ( user_to_phys ( bottom, ( ( bottom == top ) ?
213 user_to_phys ( top, 0 ) );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A Dstrftime.c360 int top; local
375 top = bot -
377 if (top < -3)
378 top += DAYSPERWEEK;
379 top += len;
380 if (yday >= top) {
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQIWidgetValidator.h177 ulong top() const { return mTop; } function in class:QIULongValidator
/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_transform.h35 CRmatrix *top; /* points into stack */ member in struct:__anon16247
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_decl.c124 dt_decl_t *top = dsp->ds_decl; local
126 if (top != NULL &&
127 top->dd_kind == CTF_K_UNKNOWN && top->dd_name == NULL) {
128 top->dd_kind = CTF_K_INTEGER;
129 (void) dt_decl_check(top);
133 ddp->dd_next = top;
225 * make a new decl and push it on to the top of our stack. If the name or kind
423 * resulting type is "pointer to function". To make the pointer land on top,
426 * decl is inserted behind this node in the decl list instead of at the top
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dntthread.c444 _PR_MD_INIT_CONTEXT(PRThread *thread, char *top, void (*start) (void), PRBool *status) argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/combined/
H A Dpruthr.c1126 char *top; local
1267 /* Allocate thread object and per-thread data off the top of the stack*/
1268 top = stack->stackTop;
1270 thread = (PRThread*) top;
1271 top = top + sizeof(PRThread);
1275 if ((PRUptrdiff)top & 0x3f) {
1276 top = (char*)(((PRUptrdiff)top + 0x40) & ~0x3f);
1279 top
[all...]
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/
H A Dxpidl_idl.c662 IDL_tree top; local
698 msg_callback, &top,
711 top = NULL;
767 state.tree = top;
789 if (top)
790 IDL_tree_free(top);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dwindef16.h151 INT16 top; member in struct:__anon14243
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dmatrix.c451 float bottom, float top,
462 f.m11 = (2.0f * zNear) / (top - bottom);
467 f.m21 = (top + bottom) / (top - bottom);
483 float bottom, float top,
494 ortho.m11 = 2.0f / (top - bottom);
504 ortho.m31 = -(top + bottom) / (top - bottom);
449 crMatrixFrustum(CRmatrix *m, float left, float right, float bottom, float top, float zNear, float zFar) argument
481 crMatrixOrtho(CRmatrix *m, float left, float right, float bottom, float top, float znear, float zfar) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dwindef16.h151 INT16 top; member in struct:__anon1567
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprlayer.c66 PRFileDesc *top, *lower; local
90 top = PR_PopIOLayer(fd->higher, PR_TOP_IO_LAYER);
91 top->dtor(top);
98 top = PR_PopIOLayer(fd, PR_TOP_IO_LAYER);
99 top->dtor(top);
425 /* Methods for the top of the stack. Just call down to the next fd. */
494 * Create a new style stack, where the stack top is a dummy header.
500 PR_IMPLEMENT(PRFileDesc*) PR_CreateIOLayer(PRFileDesc *top) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprinit.c226 PRInt32 top; /* artificial top of stack, win16 */ local
227 _pr_top_of_task_stack = (char *) &top;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Daviriff.h125 short int top; member in struct:_avistreamheader::__anon13244
/vbox/src/VBox/Devices/Network/slirp/bsd/kern/
H A Duipc_mbuf.c100 * best) and return a pointer to the top of the allocated chain. If an
102 * to the existing one but still return the top of the newly allocated
599 struct mbuf *top; local
614 np = &top;
615 top = 0;
651 if (top == NULL)
654 return (top);
657 m_freem(top);
659 m_freem(pData, top);
850 struct mbuf *top, * local
940 struct mbuf **p, *top = NULL; local
1371 struct mbuf *top = NULL, **mp = &top; local
[all...]
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_transform.c88 stack->top = stack->stack;
175 const CRmatrix *m1 = t->projectionStack.top;
176 const CRmatrix *m2 = t->modelViewStack.top;
249 crMatrixInvertTranspose(&inv, t->modelViewStack.top);
342 CRASSERT(t->currentStack->top == t->currentStack->stack + t->currentStack->depth);
361 crMatrixInit(t->currentStack->top);
389 CRASSERT(t->currentStack->top == t->currentStack->stack + t->currentStack->depth);
392 t->currentStack->top = t->currentStack->stack + t->currentStack->depth;
421 CRASSERT(t->currentStack->top == t->currentStack->stack + t->currentStack->depth);
423 *(t->currentStack->top
822 crStateFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar) argument
846 crStateOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar) argument
[all...]
/vbox/src/VBox/RDP/client-1.8.3/
H A Dorders.h134 sint16 top; member in struct:_DESKSAVE_ORDER
226 sint16 top; member in struct:_ELLIPSE_ORDER
239 sint16 top; member in struct:_ELLIPSE2_ORDER
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Daviriff.h125 short int top; member in struct:_avistreamheader::__anon648
/vbox/src/VBox/Additions/x11/x11include/renderproto-0.11/X11/extensions/
H A Drenderproto.h141 Fixed top B32;
177 xSpanFix top, bot; member in struct:__anon3830
/vbox/include/VBox/RemoteDesktop/
H A DVRDEOrders.h105 int16_t top; member in struct:_VRDEORDERRECT
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dxkbgeom.h103 short top; member in struct:_XkbShapeDoodad
119 short top; member in struct:_XkbTextDoodad
136 short top; member in struct:_XkbIndicatorDoodad
158 short top; member in struct:_XkbLogoDoodad
175 short top; member in struct:_XkbAnyDoodad
208 short top; member in struct:_XkbRow
220 short top; member in struct:_XkbSection
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dxkbgeom.h103 short top; member in struct:_XkbShapeDoodad
119 short top; member in struct:_XkbTextDoodad
136 short top; member in struct:_XkbIndicatorDoodad
158 short top; member in struct:_XkbLogoDoodad
175 short top; member in struct:_XkbAnyDoodad
208 short top; member in struct:_XkbRow
220 short top; member in struct:_XkbSection
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dxkbgeom.h118 short top; member in struct:_XkbShapeDoodad
133 short top; member in struct:_XkbTextDoodad
149 short top; member in struct:_XkbIndicatorDoodad
170 short top; member in struct:_XkbLogoDoodad
186 short top; member in struct:_XkbAnyDoodad
218 short top; member in struct:_XkbRow
230 short top; member in struct:_XkbSection
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dxkbgeom.h118 short top; member in struct:_XkbShapeDoodad
133 short top; member in struct:_XkbTextDoodad
149 short top; member in struct:_XkbIndicatorDoodad
170 short top; member in struct:_XkbLogoDoodad
186 short top; member in struct:_XkbAnyDoodad
218 short top; member in struct:_XkbRow
230 short top; member in struct:_XkbSection

Completed in 188 milliseconds

1234