Searched refs:to (Results 1 - 25 of 606) sorted by relevance

1234567891011>>

/vbox/src/VBox/VMM/dtrace/
H A Dreturn-to-ring-3-aggregation-1.d3 * DTracing VBox - return to ring-3 aggregation test \#1.
21 vboxvmm:::r0-vmm-return-to-ring3-hm
26 vboxvmm:::r0-vmm-return-to-ring3-rc
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_diff.c14 void crStateDiffContext( CRContext *from, CRContext *to )
23 crStateTransformDiff( &(sb->transform), bitID, from, to );
27 crStatePixelDiff( &(sb->pixel), bitID, from, to );
31 crStateViewportDiff( &(sb->viewport), bitID, from, to );
35 crStateFogDiff( &(sb->fog), bitID, from, to );
39 crStateTextureDiff( &(sb->texture), bitID, from, to );
43 crStateListsDiff( &(sb->lists), bitID, from, to );
47 crStateBufferDiff( &(sb->buffer), bitID, from, to );
52 crStateBufferObjectDiff( &(sb->bufferobject), bitID, from, to );
57 crStateClientDiff(&(sb->client), bitID, from, to );
126 crStateFreeFBImageLegacy(CRContext *to) argument
143 crStateAcquireFBImage(CRContext *to, CRFBData *data) argument
279 crStateApplyFBImage(CRContext *to, CRFBData *data) argument
[all...]
H A Dstate_texdiff.c101 const CRTextureState *to = &(toCtx->texture); local
120 if (from->unit[i].enabled1D != to->unit[i].enabled1D)
122 able[to->unit[i].enabled1D](GL_TEXTURE_1D);
126 if (from->unit[i].enabled2D != to->unit[i].enabled2D)
128 able[to->unit[i].enabled2D](GL_TEXTURE_2D);
133 if (from->unit[i].enabled3D != to->unit[i].enabled3D)
135 able[to->unit[i].enabled3D](GL_TEXTURE_3D);
142 from->unit[i].enabledCubeMap != to->unit[i].enabledCubeMap)
144 able[to->unit[i].enabledCubeMap](GL_TEXTURE_CUBE_MAP_ARB);
151 from->unit[i].enabledRect != to
523 crStateTextureCheckDirtyImages(CRContext *from, CRContext *to, GLenum target, int textureUnit) argument
931 CRTextureState *to = &(toCtx->texture); local
[all...]
H A Dstate_stencil.c387 CRStencilState *to = &(toCtx->stencil); local
402 if (from->stencilTest != to->stencilTest)
404 able[to->stencilTest](GL_STENCIL_TEST);
405 from->stencilTest = to->stencilTest;
415 if (from->stencilTwoSideEXT != to->stencilTwoSideEXT)
417 able[to->stencilTwoSideEXT](GL_STENCIL_TEST_TWO_SIDE_EXT);
418 from->stencilTwoSideEXT = to->stencilTwoSideEXT;
425 if (from->clearValue != to->clearValue)
427 diff_api.ClearStencil (to->clearValue);
428 from->clearValue = to
928 CRStencilState *to = &(toCtx->stencil); local
[all...]
H A Dstate_pixel.c560 CRPixelState *to = &(toCtx->pixel); local
568 if (from->mapColor != to->mapColor)
570 diff_api.PixelTransferi (GL_MAP_COLOR, to->mapColor);
571 from->mapColor = to->mapColor;
573 if (from->mapStencil != to->mapStencil)
575 diff_api.PixelTransferi (GL_MAP_STENCIL, to->mapStencil);
576 from->mapStencil = to->mapStencil;
578 if (from->indexOffset != to->indexOffset)
580 diff_api.PixelTransferi (GL_INDEX_OFFSET, to->indexOffset);
581 from->indexOffset = to
683 CRPixelState *to = &(toCtx->pixel); local
[all...]
H A Dstate_point.c208 CRPointState *to = &(toCtx->point); local
220 if (from->pointSmooth != to->pointSmooth)
222 able[to->pointSmooth](GL_POINT_SMOOTH);
223 from->pointSmooth = to->pointSmooth;
229 if (from->pointSize != to->pointSize)
231 diff_api.PointSize (to->pointSize);
232 from->pointSize = to->pointSize;
238 if (from->minSize != to->minSize)
240 diff_api.PointParameterfARB (GL_POINT_SIZE_MIN_ARB, to->minSize);
241 from->minSize = to
319 CRPointState *to = &(toCtx->point); local
[all...]
H A Dstate_current.c30 * initialize all vertex attributes to <0,0,0,1> for starters
161 const CRCurrentState *to = &(toCtx->current); local
170 if (to->rasterValid) {
174 const GLfloat toX = to->rasterAttrib[VERT_ATTRIB_POS][0];
175 const GLfloat toY = to->rasterAttrib[VERT_ATTRIB_POS][1];
176 const GLfloat toZ = to->rasterAttrib[VERT_ATTRIB_POS][2];
179 diff_api.WindowPos3fvARB(to->rasterAttrib[VERT_ATTRIB_POS]);
191 ** We also need to restore the current state tracking pointer
196 if (to->colorIndex != from->colorIndex) {
197 diff_api.Indexf(to
304 const CRCurrentState *to = &(toCtx->current); local
[all...]
H A Dstate_transform.c18 * This used to be a macro.
40 static void _math_transposef( GLfloat to[16], const GLfloat from[16] ) argument
42 to[0] = from[0];
43 to[1] = from[4];
44 to[2] = from[8];
45 to[3] = from[12];
46 to[4] = from[1];
47 to[5] = from[5];
48 to[6] = from[9];
49 to[
60 _math_transposed( GLdouble to[16], const GLdouble from[16] ) argument
902 CRTransformState *to = &(toCtx->transform); local
1147 CRTransformState *to = &(toCtx->transform); local
[all...]
H A Dstate_client.c550 crStateError(__LINE__, __FILE__, GL_INVALID_ENUM, "Invalid Enum passed to Enable/Disable Client State: SECONDARY_COLOR_ARRAY_EXT - EXT_secondary_color is not enabled." );
556 crStateError(__LINE__, __FILE__, GL_INVALID_ENUM, "Invalid Enum passed to Enable/Disable Client State: 0x%x", array );
739 /*Note: According to opengl spec, only size==3 should be accepted here.
742 *Having a strict check here, leads to difference between guest and host gpu states, which
743 *in turn could lead to crashes when using server side VBOs.
744 *@todo: add error reporting to state's VBO related functions and abort dispatching to
745 *real gpu on any failure to prevent other possible issues.
1364 crStateError(__LINE__, __FILE__, GL_INVALID_ENUM, "Invalid Enum passed to glGetPointerv: SECONDARY_COLOR_ARRAY_EXT - EXT_secondary_color is not enabled." );
1680 * Called by glDrawElements() in packing SPUs to determin
1706 const CRClientState *to = &(toCtx->client); local
2003 const CRClientState *to = &(toCtx->client); local
[all...]
H A Dstate_evaluators.c169 * memory space to a buffer of contiguous control points.
171 * Return: pointer to buffer of contiguous control points or NULL if out
198 * Same as above but convert doubles to floats.
225 * memory space to a buffer of contiguous control points.
226 * Additional memory is allocated to be used by the Horner and
230 * Return: pointer to buffer of contiguous control points or NULL if out
274 * Same as above but convert doubles to floats.
877 CREvaluatorState *to = &(toCtx->eval); local
885 if (from->autoNormal != to->autoNormal) {
889 able[to
968 CREvaluatorState *to = &(toCtx->eval); local
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/math/
H A Dm_translate.h7 * Permission is hereby granted, free of charge, to any person obtaining a
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
35 * For example, convert array of GLushort[3] to GLfloat[4].
37 * \param to the destination address
42 * \param start first element in source array to conver
[all...]
H A Dm_xform_tmp.h8 * Permission is hereby granted, free of charge, to any person obtaining a
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
40 /* KW: These are now parameterized to produce two versions, one
49 * cleaning unused parts of the vector, and so as not to exclude
59 * that there is more to
[all...]
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxmlautomata.h2 * Summary: API to build regexp automata
3 * Description: the API to build regexp automata
58 xmlAutomataStatePtr to,
64 xmlAutomataStatePtr to,
71 xmlAutomataStatePtr to,
79 xmlAutomataStatePtr to,
87 xmlAutomataStatePtr to,
96 xmlAutomataStatePtr to,
104 xmlAutomataStatePtr to,
113 xmlAutomataStatePtr to,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Library/BaseUefiCpuLib/Ia32/
H A DInitializeFpu.S17 # all exceptions masked, double-precision, round-to-nearest
22 # all exceptions masked, round-to-nearest, flush to zero for masked underflow
29 # This function initializes floating-point control word to 0x027F (all exceptions
30 # masked,double-precision, round-to-nearest) and multimedia-extensions control word
31 # (if supported) to 0x1F80 (all exceptions masked, round-to-nearest, flush to zero
46 # Use CpuId instructuion (CPUID.01H:EDX.SSE[bit 25] = 1) to test
H A DInitializeFpu.asm21 ; all exceptions masked, double-precision, round-to-nearest
26 ; all exceptions masked, round-to-nearest, flush to zero for masked underflow
36 ; This function initializes floating-point control word to 0x027F (all exceptions
37 ; masked,double-precision, round-to-nearest) and multimedia-extensions control word
38 ; (if supported) to 0x1F80 (all exceptions masked, round-to-nearest, flush to zero
52 ; Use CpuId instructuion (CPUID.01H:EDX.SSE[bit 25] = 1) to test
/vbox/src/VBox/Devices/PC/BIOS/
H A Dpmsetup.inc2 ;; Initial system setup which needs to run in protected mode.
41 mov eax, 010Fh ; set spurious interrupt vector to 15
44 mov esi, LVT_LINT0 ; Program LINT0 to ExtINT and unmask
50 mov esi, LVT_LINT1 ; Program LINT1 to NMI and unmask
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Library/BaseUefiCpuLib/X64/
H A DInitializeFpu.S18 # This function initializes floating-point control word to 0x027F (all exceptions
19 # masked,double-precision, round-to-nearest) and multimedia-extensions control word
20 # (if supported) to 0x1F80 (all exceptions masked, round-to-nearest, flush to zero
33 # all exceptions masked, double-precision, round-to-nearest
49 # all exceptions masked, round-to-nearest, flush to zero for masked underflow
H A DInitializeFpu.asm19 ; all exceptions masked, double-precision, round-to-nearest
24 ; all exceptions masked, round-to-nearest, flush to zero for masked underflow
34 ; This function initializes floating-point control word to 0x027F (all exceptions
35 ; masked,double-precision, round-to-nearest) and multimedia-extensions control word
36 ; (if supported) to 0x1F80 (all exceptions masked, round-to-nearest, flush to zero
45 ; to be supported by some 64-bit assemblers
/vbox/src/libs/libxml2-2.6.31/vms/
H A Dbuild_libxml.com21 $! added xmlreader.c and relaxng.c to source list
23 $! updated to work with current sources
24 $! miscellaneous enhancements to build process
41 $!- list of sources to be built into the LIBXML library. Compare this list
42 $! to the definition of "libxml2_la_SOURCES" in the file MAKEFILE.IN.
54 $!- list of main modules to compile and link. Compare this list to the
59 $!- list of test modules to compile and link. Compare this list to the
90 $ write sys$output "Can't locate globals.c. You need to manuall
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dkeymap.h20 /** Character to be used instead */
21 uint8_t to; member in struct:key_mapping
/vbox/src/libs/libxml2-2.6.31/
H A DtestAutomata.c80 int from, to; local
91 to = scanNumber(&ptr);
97 if (states[to] == NULL)
98 states[to] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[to],
104 int from, to; local
115 to = scanNumber(&ptr);
116 if (states[to] == NULL)
117 states[to] = xmlAutomataNewState(am);
118 xmlAutomataNewEpsilon(am, states[from], states[to]);
132 int from, to; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Arm/
H A DSwitchStack.asm20 ; This allows the caller to switch the stack and goes to the new entry point
22 ; @param EntryPoint The pointer to the location to enter
23 ; @param Context Parameter to pass in
24 ; @param Context2 Parameter2 to pass in
27 ; @return Nothing. Goes to the Entry Point passing in the new parameters
/vbox/src/VBox/Runtime/r0drv/os2/
H A DassertA-r0drv-os2.asm9 ; Permission is hereby granted, free of charge, to any person
11 ; files (the "Software"), to deal in the Software without
12 ; restriction, including without limitation the rights to use,
14 ; copies of the Software, and to permit persons to whom the
15 ; Software is furnished to do so, subject to the following
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dos_SunOS_sparcv9.s3 ! The contents of this file are subject to the Mozilla Public
25 ! instead of those above. If you wish to allow use of your
26 ! version of this file only under the terms of the GPL and not to
27 ! allow others to use your version of this file under the MPL,
48 ! Perform the sequence a = a + 1 atomically with respect to other
49 ! fetch-and-adds to location a in a wait-free fashion.
60 ! assumed to be volatile during calls.
63 ! %o0 [input] - the address of the value to increment
72 ld [%o0], %o2 ! set o2 to the current value
79 retl ! return back to th
[all...]
H A Dos_SunOS_ultrasparc.s3 ! The contents of this file are subject to the Mozilla Public
25 ! instead of those above. If you wish to allow use of your
26 ! version of this file only under the terms of the GPL and not to
27 ! allow others to use your version of this file under the MPL,
48 ! Perform the sequence a = a + 1 atomically with respect to other
49 ! fetch-and-adds to location a in a wait-free fashion.
60 ! assumed to be volatile during calls.
63 ! %o0 [input] - the address of the value to increment
72 ld [%o0], %o2 ! set o2 to the current value
79 retl ! return back to th
[all...]

Completed in 260 milliseconds

1234567891011>>