HomeSort by relevance Sort by last modified time
    Searched refs:wpos (Results 1 - 24 of 24) sorted by null

  /external/libmicrohttpd/src/microhttpd/
internal.c 135 char *wpos = val; local
148 *wpos = '\0';
149 return wpos - val;
157 *wpos = (char)((unsigned char) num);
158 wpos++;
164 *wpos = *rpos;
165 wpos++;
169 *wpos = '\0'; /* add 0-terminator */
170 return wpos - val; /* = strlen(val) */
  /external/mesa3d/src/compiler/nir/
nir_lower_wpos_center.c 48 nir_ssa_def *wpos = &intr->dest.ssa; local
54 wpos = nir_fadd(b, wpos, nir_imm_vec4(b, 0.5f, 0.5f, 0.0f, 0.0f));
56 nir_ssa_def_rewrite_uses_after(&intr->dest.ssa, nir_src_for_ssa(wpos),
57 wpos->parent_instr);
  /external/mesa3d/src/gallium/drivers/r300/
r300_shader_semantics.h 44 int wpos; member in struct:r300_shader_semantics
58 info->wpos = ATTR_UNUSED;
r300_fs.c 73 fs_inputs->wpos = i;
140 if (inputs->wpos != ATTR_UNUSED) {
141 allocate(mydata, inputs->wpos, reg++);
421 int wpos, face; local
427 wpos = shader->inputs.wpos;
484 * Transform the program to support WPOS.
487 * the only code that directly reads the WPOS input.
490 if (wpos != ATTR_UNUSED) {
492 rc_transform_fragment_wpos(&compiler.Base, wpos, wpos, TRUE)
    [all...]
r300_vs.c 102 /* WPOS is a straight copy of POSITION and it's always emitted. */
103 vs_outputs->wpos = i;
169 /* WPOS. */
170 c->code->outputs[outputs->wpos] = reg++;
255 /* Insert the WPOS output. */
256 rc_copy_output(&compiler.Base, 0, vs->outputs.wpos);
r300_state_derived.c 117 /* WPOS. */
118 if (r300_fs(r300)->shader->inputs.wpos != ATTR_UNUSED && gen_count < 8) {
119 DBG(r300, DBG_SWTCL, "draw_emit_attrib: WPOS, index: %i\n",
120 vs_outputs->wpos);
121 r300_draw_emit_attrib(r300, EMIT_4F, vs_outputs->wpos);
436 * (number of generic varyings + fog + wpos > 8) */
440 (fs_inputs->wpos != ATTR_UNUSED) > 8) {
578 /* Rasterize WPOS. */
580 if (fs_inputs->wpos != ATTR_UNUSED && tex_count < 8) {
581 /* Set up the WPOS coordinates in VAP. *
    [all...]
r300_vs_draw.c 35 * 3) Insert a trailing texcoord output containing a copy of POS, for WPOS.
61 * output for WPOS. */
232 /* Insert the generic output for WPOS. */
374 /* Make the last generic be WPOS. */
375 vs->outputs.wpos = vs->outputs.generic[transform.last_generic + 1];
r300_state.c     [all...]
  /hardware/qcom/msm8998/json-c/
json_util.c 105 unsigned int wpos, wsize; local
124 wpos = 0;
125 while(wpos < wsize) {
126 if((ret = write(fd, json_str + wpos, wsize-wpos)) < 0) {
134 wpos += (unsigned int)ret;
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 164 GLfloat *wpos = span->array->attribs[VARYING_SLOT_POS][col]; local
168 wpos[1] = ctx->DrawBuffer->Height - 1 - wpos[1];
170 wpos[0] += 0.5F;
171 wpos[1] += 0.5F;
s_span.c 625 GLfloat (*wpos)[4] = span->array->attribs[VARYING_SLOT_POS];
632 wpos[i][0] = (GLfloat) span->array->x[i];
633 wpos[i][1] = (GLfloat) span->array->y[i];
638 wpos[i][0] = (GLfloat) span->x + i;
639 wpos[i][1] = (GLfloat) span->y;
646 wpos[i][2] = (GLfloat) span->array->z[i] * zScale;
647 wpos[i][3] = w;
1002 /* XXX always interpolate wpos so that DDX/DDY work */
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenInstruction.cpp 200 std::string::size_type wpos = CStr.find_first_of(" \t"); local
202 std::string Tok = CStr.substr(start, wpos - start);
204 std::string Name = CStr.substr(wpos+1);
205 wpos = Name.find_first_not_of(" \t");
206 if (wpos == std::string::npos)
208 Name = Name.substr(wpos);
226 wpos = Name.find_first_of(" \t");
227 if (wpos == std::string::npos)
229 std::string DestOpName = Name.substr(0, wpos);
233 wpos = Name.find_first_not_of(" \t")
    [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 206 std::string::size_type wpos = CStr.find_first_of(" \t"); local
208 std::string Tok = CStr.substr(start, wpos - start);
210 std::string Name = CStr.substr(wpos+1);
211 wpos = Name.find_first_not_of(" \t");
212 if (wpos == std::string::npos)
214 Name = Name.substr(wpos);
232 wpos = Name.find_first_of(" \t");
233 if (wpos == std::string::npos)
235 std::string DestOpName = Name.substr(0, wpos);
239 wpos = Name.find_first_not_of(" \t")
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 107 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input,
radeon_compiler.c 237 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input,
246 c->Program.InputsRead &= ~(1 << wpos);
307 inst->U.I.SrcReg[i].Index == wpos) {
  /prebuilts/ndk/r11/sources/android/support/src/stdio/
vfprintf.c 765 f->wpos = f->wbase = f->buf = internal_buf;
772 if (!f->wpos) ret = -1;
775 f->wpos = f->wbase = f->wend = 0;
  /prebuilts/ndk/r13/sources/android/support/src/stdio/
vfprintf.c 765 f->wpos = f->wbase = f->buf = internal_buf;
772 if (!f->wpos) ret = -1;
775 f->wpos = f->wbase = f->wend = 0;
  /external/mesa3d/src/mesa/state_tracker/
st_mesa_to_tgsi.c 582 * Emit the TGSI instructions for inverting and adjusting WPOS.
596 * Need to replace instances of INPUT[WPOS] with temp T
597 * where T = INPUT[WPOS] by y is inverted.
611 struct ureg_src *wpos = local
615 struct ureg_src wpos_input = *wpos;
638 /* MOV wpos_temp, input[wpos]
666 *wpos = ureg_src(wpos_temp);
    [all...]
st_glsl_to_tgsi.cpp 5743 struct ureg_src *wpos = local
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 1459 size_t wpos = pos & (windowsize - 1); \/*position for in 'circular' hash buffers*\/ local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs.cpp 991 fs_visitor::emit_fragcoord_interpolation(fs_reg wpos)
996 bld.MOV(wpos, this->pixel_x);
997 wpos = offset(wpos, bld, 1);
1000 bld.MOV(wpos, this->pixel_y);
1001 wpos = offset(wpos, bld, 1);
1005 bld.MOV(wpos, fs_reg(brw_vec8_grf(payload.source_depth_reg, 0)));
1007 bld.emit(FS_OPCODE_LINTERP, wpos,
1011 wpos = offset(wpos, bld, 1)
    [all...]
brw_fs.h 172 void emit_fragcoord_interpolation(fs_reg wpos);
  /external/wpa_supplicant_8/src/common/
wpa_common.c 1993 char buf[255], *wpos = buf; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_shader.c 1084 struct ureg_dst wpos = tx_scratch(tx); local
    [all...]

Completed in 1182 milliseconds