Searched refs:Current (Results 1 - 25 of 442) sorted by last modified time

1234567891011>>

/external/skia/src/core/
H A DSkTraceEvent.h289 skia::tracing_internals::TraceEventSamplingStateScope<bucket_number>::Current()
1218 previous_state_ = TraceEventSamplingStateScope<BucketNumber>::Current();
1226 static inline const char* Current() { function in class:skia::tracing_internals::TraceEventSamplingStateScope
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
H A DSDL_epocaudio.cpp170 inline static CEpocAudio& Current(SDL_AudioDevice* thisdevice);
210 inline CEpocAudio& CEpocAudio::Current(SDL_AudioDevice* thisdevice) function in class:CEpocAudio
240 CActiveScheduler* as = CActiveScheduler::Current();
349 CEpocAudio::Current(thisdevice).Dump(buf);
541 CEpocAudio::Current(thisdevice).Open(spec->freq, spec->channels, type, bytes);
543 CEpocAudio::Current(thisdevice).SetPause(ETrue);
567 CEpocAudio::Current(thisdevice).ThreadInitL(thisdevice);
580 CEpocAudio::Current(thisdevice).Wait();
593 if(CEpocAudio::Current(thisdevice).SetPause(SDL_GetAudioStatus() == SDL_AUDIO_PAUSED))
596 CEpocAudio::Current(thisdevic
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
H A DSDL_epocevents.cpp320 TPtrC ln = reader->Current();
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util-generated.h2868 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator2::Iterator
2991 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator3::Iterator
3132 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator4::Iterator
3290 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator5::Iterator
3467 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator6::Iterator
3661 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator7::Iterator
3874 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator8::Iterator
4103 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator9::Iterator
4350 virtual const ParamType* Current() const { return &current_value_; } function in class:testing::internal::CartesianProductGenerator10::Iterator
H A Dgtest-param-util.h105 // Current() on an iterator equal to BaseGenerator()->End().
107 virtual const T* Current() const = 0;
132 const T& operator*() const { return *impl_->Current(); }
133 const T* operator->() const { return impl_->Current(); }
234 virtual const T* Current() const { return &value_; } function in class:testing::internal::RangeGenerator::Iterator
326 // responsible for not calling Current() on an out-of-range iterator.
327 virtual const T* Current() const { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
354 // value_ needs to be mutable to be accessed in Current().
/external/mesa3d/src/mesa/program/
H A Dprog_statevars.c368 COPY_4V(value, ctx->FragmentProgram.Current->Base.LocalParams[idx]);
387 COPY_4V(value, ctx->VertexProgram.Current->Base.LocalParams[idx]);
405 COPY_4V(value, ctx->Current.Attrib[idx]);
415 value[0] = CLAMP(ctx->Current.Attrib[idx][0], 0.0f, 1.0f);
416 value[1] = CLAMP(ctx->Current.Attrib[idx][1], 0.0f, 1.0f);
417 value[2] = CLAMP(ctx->Current.Attrib[idx][2], 0.0f, 1.0f);
418 value[3] = CLAMP(ctx->Current.Attrib[idx][3], 0.0f, 1.0f);
421 COPY_4V(value, ctx->Current.Attrib[idx]);
H A Dprogram.c95 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
97 assert(ctx->VertexProgram.Current);
107 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
109 assert(ctx->FragmentProgram.Current);
116 _mesa_reference_geomprog(ctx, &ctx->GeometryProgram.Current,
124 ctx->ATIFragmentShader.Current = ctx->Shared->DefaultFragmentShader;
125 assert(ctx->ATIFragmentShader.Current);
126 ctx->ATIFragmentShader.Current->RefCount++;
138 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NULL);
142 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current, NUL
[all...]
H A Dprogram_parse.y99 #define YYLLOC_DEFAULT(Current, Rhs, N) \
102 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
103 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
104 (Current).position = YYRHSLOC(Rhs, 1).position; \
105 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
106 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
108 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
109 (Current).last_line = (Current).first_line; \
110 (Current)
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_array.c502 /* no array, use ctx->Current.Attrib[] value */
503 ptr = (void *) ctx->Current.Attrib[mesaAttr];
H A Dst_cb_bitmap.c440 COPY_4V(colorSave, ctx->Current.Attrib[VERT_ATTRIB_COLOR0]);
441 COPY_4V(ctx->Current.Attrib[VERT_ATTRIB_COLOR0], color);
443 COPY_4V(ctx->Current.Attrib[VERT_ATTRIB_COLOR0], colorSave);
698 const GLfloat z = st->ctx->Current.RasterPos[2];
709 !TEST_EQ_4V(st->ctx->Current.RasterColor, cache->color) ||
727 COPY_4FV(cache->color, st->ctx->Current.RasterColor);
791 draw_bitmap_quad(ctx, x, y, ctx->Current.RasterPos[2],
793 st->ctx->Current.RasterColor);
H A Dst_cb_drawpixels.c1143 color = ctx->Current.RasterColor;
1182 draw_textured_quad(ctx, x, y, ctx->Current.RasterPos[2],
1482 color = ctx->Current.Attrib[VERT_ATTRIB_COLOR0];
1628 draw_textured_quad(ctx, dstx, dsty, ctx->Current.RasterPos[2],
H A Dst_cb_drawtex.c184 const GLfloat *c = ctx->Current.Attrib[VERT_ATTRIB_COLOR0];
H A Dst_cb_feedback.c106 color = ctx->Current.Attrib[VERT_ATTRIB_COLOR0];
112 texcoord = ctx->Current.Attrib[VERT_ATTRIB_TEX0];
H A Dst_cb_rasterpos.c124 src = ctx->Current.Attrib[defaultAttrib];
144 ctx->Current.RasterPosValid = GL_TRUE;
148 ctx->Current.RasterPos[0] = pos[0];
150 ctx->Current.RasterPos[1] = height - pos[1]; /* invert Y */
152 ctx->Current.RasterPos[1] = pos[1];
153 ctx->Current.RasterPos[2] = pos[2];
154 ctx->Current.RasterPos[3] = pos[3];
158 ctx->Current.RasterColor,
162 ctx->Current.RasterSecondaryColor,
167 ctx->Current
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_atifragshader.c584 const struct ati_fragment_shader *shader = ctx->ATIFragmentShader.Current;
H A Ds_span.c71 span->z = FloatToFixed(ctx->Current.RasterPos[2] * depthMax + 0.5F);
73 GLfloat tmpf = ctx->Current.RasterPos[2] * depthMax;
87 UNCLAMPED_FLOAT_TO_CHAN(r, ctx->Current.RasterColor[0]);
88 UNCLAMPED_FLOAT_TO_CHAN(g, ctx->Current.RasterColor[1]);
89 UNCLAMPED_FLOAT_TO_CHAN(b, ctx->Current.RasterColor[2]);
90 UNCLAMPED_FLOAT_TO_CHAN(a, ctx->Current.RasterColor[3]);
108 COPY_4V(span->attrStart[FRAG_ATTRIB_COL0], ctx->Current.RasterColor);
115 COPY_4V(span->attrStart[FRAG_ATTRIB_COL1], ctx->Current.RasterSecondaryColor);
126 fogVal = ctx->Current.RasterDistance;
130 fogVal = _swrast_z_to_fogfactor(ctx, ctx->Current
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_context.c198 ctx->Current.Attrib[VERT_ATTRIB_COLOR0] );
H A Dt_rasterpos.c363 * of ctx->Current.Raster* fields) could get lifted up into the
379 GLfloat *objnorm = ctx->Current.Attrib[VERT_ATTRIB_NORMAL];
389 ctx->Current.RasterPosValid = GL_FALSE;
395 ctx->Current.RasterPosValid = GL_FALSE;
402 ctx->Current.RasterPosValid = GL_FALSE;
412 ctx->Current.RasterPos[0] = (ndc[0] * ctx->Viewport._WindowMap.m[MAT_SX]
414 ctx->Current.RasterPos[1] = (ndc[1] * ctx->Viewport._WindowMap.m[MAT_SY]
416 ctx->Current.RasterPos[2] = (ndc[2] * ctx->Viewport._WindowMap.m[MAT_SZ]
419 ctx->Current.RasterPos[3] = clip[3];
422 ctx->Current
[all...]
H A Dt_vb_program.c168 ctx->VertexProgram.Current->IsPositionInvariant)) {
231 memcpy(machine->VertAttribs, ctx->Current.Attrib,
H A Dt_vertex.c230 /* Else return the value from ctx->Current.
239 memcpy( dest, ctx->Current.Attrib[attr], 4*sizeof(GLfloat));
/external/mesa3d/src/mesa/vbo/
H A Dvbo_context.c63 cl->Size = check_size(ctx->Current.Attrib[i]);
69 cl->Ptr = (const void *)ctx->Current.Attrib[i];
93 cl->Ptr = (const void *)ctx->Current.Attrib[VERT_ATTRIB_GENERIC0 + i];
H A Dvbo_exec_api.c149 * Copy the active vertex's values to the ctx->Current fields.
160 * ctx->Current.Attrib and ctx->Light.Material.Attrib arrays.
176 * done. The only problem is when Mesa accesses ctx->Current
202 ctx->Current.Attrib[VBO_ATTRIB_COLOR0]);
H A Dvbo_save_draw.c114 _mesa_update_color_material(ctx, ctx->Current.Attrib[VBO_ATTRIB_COLOR0]);
150 /* Install the default (ie Current) attributes first, then overlay
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_pair_schedule.c134 struct schedule_instruction * Current; member in struct:schedule_state
135 /** Array of the previous writers of Current's destination register
1155 if (*v && (*v)->Writer == s->Current) {
1161 * register. In this case, the current instruction (s->Current)
1168 /* We need to make sure we are adding s->Current to the
1172 add_tex_reader(s, s->PrevWriter[chan], s->Current);
1177 DBG("%i: read %i[%i] chan %i\n", s->Current->Instruction->IP, file, index, chan);
1180 reader->Reader = s->Current;
1194 add_tex_reader(s, (*v)->Writer, s->Current);
1195 s->Current
[all...]
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp.h73 # define YYLLOC_DEFAULT(Current, Rhs, N) \
77 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
78 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
79 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
80 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
84 (Current).first_line = (Current).last_line = \
86 (Current).first_column = (Current).last_column = \
89 (Current)
[all...]

Completed in 301 milliseconds

1234567891011>>