Searched refs:from (Results 1 - 25 of 480) sorted by relevance

1234567891011>>

/vbox/src/libs/zlib-1.2.6/
H A Dinffast.c78 unsigned dmax; /* maximum distance from zlib header */
95 unsigned char FAR *from; /* where to copy match from */ local
187 if (dist > op) { /* see if copy from window */
208 from = out - dist;
210 PUP(out) = PUP(from);
216 from = window - OFF;
218 from += wsize - op;
219 if (op < len) { /* some from window */
222 PUP(out) = PUP(from);
[all...]
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxmlautomata.h57 xmlAutomataStatePtr from,
63 xmlAutomataStatePtr from,
70 xmlAutomataStatePtr from,
78 xmlAutomataStatePtr from,
86 xmlAutomataStatePtr from,
95 xmlAutomataStatePtr from,
103 xmlAutomataStatePtr from,
112 xmlAutomataStatePtr from,
117 xmlAutomataStatePtr from,
121 xmlAutomataStatePtr from,
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/math/
H A Dm_norm_tmp.h50 const GLfloat *from = in->start; local
63 const GLfloat ux = from[0], uy = from[1], uz = from[2];
92 const GLfloat ux = from[0], uy = from[1], uz = from[2];
117 const GLfloat *from = in->start; local
130 const GLfloat ux = from[0], uy = from[
182 const GLfloat *from = in->start; local
211 const GLfloat *from = in->start; local
243 const GLfloat *from = in->start; local
273 const GLfloat *from = in->start; local
303 const GLfloat *from = in->start; local
349 const GLfloat *from = in->start; local
[all...]
H A Dm_xform_tmp.h50 * them from the vertex array interface.
79 GLfloat *from = from_vec->start; local
88 const GLfloat ox = from[0];
105 GLfloat *from = from_vec->start; local
112 to[i][0] = from[0];
125 GLfloat *from = from_vec->start; local
132 const GLfloat ox = from[0];
147 GLfloat *from = from_vec->start; local
153 const GLfloat ox = from[0];
168 GLfloat *from local
192 GLfloat *from = from_vec->start; local
215 GLfloat *from = from_vec->start; local
245 GLfloat *from = from_vec->start; local
271 GLfloat *from = from_vec->start; local
292 GLfloat *from = from_vec->start; local
314 GLfloat *from = from_vec->start; local
335 GLfloat *from = from_vec->start; local
362 GLfloat *from = from_vec->start; local
391 GLfloat *from = from_vec->start; local
416 GLfloat *from = from_vec->start; local
442 GLfloat *from = from_vec->start; local
464 GLfloat *from = from_vec->start; local
487 GLfloat *from = from_vec->start; local
509 GLfloat *from = from_vec->start; local
535 GLfloat *from = from_vec->start; local
558 GLfloat *from = from_vec->start; local
584 GLfloat *from = from_vec->start; local
610 GLfloat *from = from_vec->start; local
633 GLfloat *from = from_vec->start; local
657 GLfloat *from = from_vec->start; local
680 GLfloat *from = from_vec->start; local
705 GLfloat *from = from_vec->start; local
729 GLfloat *from = from_vec->start; local
[all...]
H A Dm_clip_tmp.h50 const GLfloat *from = (GLfloat *)clip_vec->start; local
58 const GLfloat cx = from[0];
59 const GLfloat cy = from[1];
60 const GLfloat cz = from[2];
61 const GLfloat cw = from[3];
126 const GLfloat *from = (GLfloat *)clip_vec->start; local
133 const GLfloat cx = from[0];
134 const GLfloat cy = from[1];
135 const GLfloat cz = from[2];
136 const GLfloat cw = from[
178 const GLfloat *from = (GLfloat *)clip_vec->start; local
211 const GLfloat *from = (GLfloat *)clip_vec->start; local
[all...]
H A Dm_copy_tmp.h35 GLfloat *from = f->start; \
42 if (BITS&1) t[i][0] = from[0]; \
43 if (BITS&2) t[i][1] = from[1]; \
44 if (BITS&4) t[i][2] = from[2]; \
45 if (BITS&8) t[i][3] = from[3]; \
H A Dm_xform.h54 * backfaces and eliminate vertices from lighting, fogging, etc
117 CONST GLvector4f *from );
152 CONST GLvector4f *from );
180 #define TransformRaw( to, mat, from ) \
181 ( _mesa_transform_tab[(from)->size][(mat)->type]( to, (mat)->m, from ), \
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_texdiff.c100 CRTextureState *from = &(fromCtx->texture); local
120 if (from->unit[i].enabled1D != to->unit[i].enabled1D)
126 if (from->unit[i].enabled2D != to->unit[i].enabled2D)
133 if (from->unit[i].enabled3D != to->unit[i].enabled3D)
142 from->unit[i].enabledCubeMap != to->unit[i].enabledCubeMap)
151 from->unit[i].enabledRect != to->unit[i].enabledRect)
158 if (from->unit[i].textureGen.s != to->unit[i].textureGen.s ||
159 from->unit[i].textureGen.t != to->unit[i].textureGen.t ||
160 from->unit[i].textureGen.r != to->unit[i].textureGen.r ||
161 from
523 crStateTextureCheckDirtyImages(CRContext *from, CRContext *to, GLenum target, int textureUnit) argument
603 CRTextureState *from = &(fromCtx->texture); local
930 CRTextureState *from = &(fromCtx->texture); local
[all...]
H A Dstate_transform.c40 static void _math_transposef( GLfloat to[16], const GLfloat from[16] )
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[7] = from[13];
50 to[8] = from[
901 CRTransformState *from = &(fromCtx->transform); local
1146 CRTransformState *from = &(fromCtx->transform); local
[all...]
H A Dstate_current.c160 const CRCurrentState *from = &(fromCtx->current); local
171 const GLfloat fromX = from->rasterAttrib[VERT_ATTRIB_POS][0];
172 const GLfloat fromY = from->rasterAttrib[VERT_ATTRIB_POS][1];
173 const GLfloat fromZ = from->rasterAttrib[VERT_ATTRIB_POS][2];
196 if (to->colorIndex != from->colorIndex) {
205 if (to->edgeFlag != from->edgeFlag) {
224 if (COMPARE_VECTOR (from->vertexAttrib[i], to->vertexAttribPre[i])) {
243 if (COMPARE_COLOR(from->vertexAttrib[VERT_ATTRIB_COLOR0],to->vertexAttrib[VERT_ATTRIB_COLOR0])) {
254 if (COMPARE_COLOR(from->vertexAttrib[VERT_ATTRIB_COLOR1],to->vertexAttrib[VERT_ATTRIB_COLOR1])) {
266 if (from
303 CRCurrentState *from = &(fromCtx->current); local
[all...]
H A Dstate_evaluators.c8 * The majority of this file is pulled from Mesa 4.0.x with the
168 * Copy 1-parametric evaluator control points from user-specified
224 * Copy 2-parametric evaluator control points from user-specified
876 CREvaluatorState *from = &(fromCtx->eval); local
885 if (from->autoNormal != to->autoNormal) {
897 int size = from->eval1D[i].order * gleval_sizes[i] *
898 sizeof(*from->eval1D[i].coeff);
899 if (from->eval1D[i].order != to->eval1D[i].order ||
900 from->eval1D[i].u1 != from
967 CREvaluatorState *from = &(fromCtx->eval); local
[all...]
H A Dstate_diff.c14 void crStateDiffContext( CRContext *from, CRContext *to ) argument
16 CRbitvalue *bitID = from->bitid;
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, t
443 crStateSwitchContext( CRContext *from, CRContext *to ) argument
[all...]
H A Dstate_pixel.c559 CRPixelState *from = &(fromCtx->pixel); local
568 if (from->mapColor != to->mapColor)
571 from->mapColor = to->mapColor;
573 if (from->mapStencil != to->mapStencil)
576 from->mapStencil = to->mapStencil;
578 if (from->indexOffset != to->indexOffset)
581 from->indexOffset = to->indexOffset;
583 if (from->indexShift != to->indexShift)
586 from->indexShift = to->indexShift;
588 if (from
682 CRPixelState *from = &(fromCtx->pixel); local
[all...]
H A Dstate_point.c207 CRPointState *from = &(fromCtx->point); local
220 if (from->pointSmooth != to->pointSmooth)
223 from->pointSmooth = to->pointSmooth;
229 if (from->pointSize != to->pointSize)
232 from->pointSize = to->pointSize;
238 if (from->minSize != to->minSize)
241 from->minSize = to->minSize;
247 if (from->maxSize != to->maxSize)
250 from->maxSize = to->maxSize;
256 if (from
318 CRPointState *from = &(fromCtx->point); local
[all...]
H A Dstate_client.c1705 CRClientState *from = &(fromCtx->client); local
1707 GLint curClientTextureUnit = from->curClientTextureUnit;
1724 if (from->array.v.size != to->array.v.size ||
1725 from->array.v.type != to->array.v.type ||
1726 from->array.v.stride != to->array.v.stride ||
1727 from->array.v.p != to->array.v.p ||
1728 from->array.v.buffer != to->array.v.buffer) {
1737 from->array.v.size = to->array.v.size;
1738 from->array.v.type = to->array.v.type;
1739 from
2002 const CRClientState *from = &(fromCtx->client); local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dkeymap.h18 /** Character read from keyboard */
19 uint8_t from; member in struct:key_mapping
/vbox/src/libs/libxml2-2.6.31/
H A DtestAutomata.c80 int from, to; local
82 from = scanNumber(&ptr);
88 if (states[from] == NULL)
89 states[from] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[to],
104 int from, to; local
106 from = scanNumber(&ptr);
112 if (states[from] == NULL)
113 states[from] = xmlAutomataNewState(am);
118 xmlAutomataNewEpsilon(am, states[from], state
132 int from, to; local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpt/public/
H A Dxpt_struct.h75 * read-from-disk byte buffer troublesome. So now I just have some structures
108 #define XPT_COPY_IID(to, from) \
109 (to).m0 = (from).m0; \
110 (to).m1 = (from).m1; \
111 (to).m2 = (from).m2; \
112 (to).m3[0] = (from).m3[0]; \
113 (to).m3[1] = (from).m3[1]; \
114 (to).m3[2] = (from).m3[2]; \
115 (to).m3[3] = (from).m3[3]; \
116 (to).m3[4] = (from)
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/ip/
H A Dget.ipv6remote.pl80 if (/bytes from (.*): / and not defined $Local{$1}) {
/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_feedback.h47 extern DECLEXPORT(void) crStateFeedbackDiff(CRFeedbackState *from, CRFeedbackState *to,
50 CRFeedbackState *from, CRFeedbackState *to);
/vbox/src/VBox/ValidationKit/testmanager/
H A Dapache-template-2.2.conf12 # available from http://www.virtualbox.org. This file is free software;
49 Allow from all
57 Allow from all
65 Allow from all
75 Allow from all
/vbox/src/libs/xpcom18a4/nsprpub/config/
H A Dpathsub.h72 /* Relate absolute pathnames from and to returning the result in outpath. */
73 extern int relatepaths(char *from, char *to, char *outpath);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DAToken.h77 not derived from ANTLRCommonRefCountToken, the parser will compile
225 ANTLRCommonNoRefCountToken (const ANTLRCommonNoRefCountToken& from) : argument
226 ANTLRAbstractToken(from) {
227 setType(from._type);
228 setLine(from._line);
230 setText(from._text);
298 ANTLRCommonToken (const ANTLRCommonToken& from) : argument
299 ANTLRRefCountToken(from) {
300 setType(from._type);
301 setLine(from
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dgeext.h25 from the author.
40 void (*evswap) (xGenericEvent *from, xGenericEvent *to);
48 /* Returns the extension offset from the event */
75 *from,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dgeext.h25 from the author.
40 void (*evswap) (xGenericEvent *from, xGenericEvent *to);
48 /* Returns the extension offset from the event */
75 *from,

Completed in 124 milliseconds

1234567891011>>