HomeSort by relevance Sort by last modified time
    Searched defs:wpos (Results 1 - 9 of 9) 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/gallium/drivers/r300/
r300_shader_semantics.h 44 int wpos; member in struct:r300_shader_semantics
56 info->wpos = ATTR_UNUSED;
r300_fs.c 73 fs_inputs->wpos = i;
140 if (inputs->wpos != ATTR_UNUSED) {
141 allocate(mydata, inputs->wpos, reg++);
434 int wpos, face; local
440 wpos = shader->inputs.wpos;
501 * Transform the program to support WPOS.
504 * the only code that directly reads the WPOS input.
507 if (wpos != ATTR_UNUSED) {
509 rc_transform_fragment_wpos(&compiler.Base, wpos, wpos, TRUE)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 165 GLfloat *wpos = span->array->attribs[FRAG_ATTRIB_WPOS][col]; local
174 wpos[1] = ctx->DrawBuffer->Height - 1 - wpos[1];
176 wpos[0] += 0.5F;
177 wpos[1] += 0.5F;
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 203 std::string::size_type wpos = CStr.find_first_of(" \t"); local
205 std::string Tok = CStr.substr(start, wpos - start);
207 std::string Name = CStr.substr(wpos+1);
208 wpos = Name.find_first_not_of(" \t");
209 if (wpos == std::string::npos)
211 Name = Name.substr(wpos);
229 wpos = Name.find_first_of(" \t");
230 if (wpos == std::string::npos)
232 std::string DestOpName = Name.substr(0, wpos);
236 wpos = Name.find_first_not_of(" \t")
    [all...]
  /external/opencv3/modules/imgproc/src/
approx.cpp 503 int i = 0, j, pos = 0, wpos, count = count0, new_count=0; local
637 wpos = pos;
655 dst_contour[wpos] = start_pt = end_pt;
656 if(++wpos >= count) wpos = 0;
661 dst_contour[wpos] = start_pt = pt;
662 if(++wpos >= count) wpos = 0;
667 dst_contour[wpos] = pt;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs.cpp 601 fs_reg wpos = *reg; local
606 emit(BRW_OPCODE_MOV, wpos, this->pixel_x);
608 emit(BRW_OPCODE_ADD, wpos, this->pixel_x, fs_reg(0.5f));
610 wpos.reg_offset++;
614 emit(BRW_OPCODE_MOV, wpos, this->pixel_y);
624 emit(BRW_OPCODE_ADD, wpos, pixel_y, fs_reg(offset));
626 wpos.reg_offset++;
630 emit(BRW_OPCODE_MOV, wpos,
633 emit(FS_OPCODE_LINTERP, wpos,
638 wpos.reg_offset++
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 1459 size_t wpos = pos & (windowsize - 1); \/*position for in 'circular' hash buffers*\/ local
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowManagerService.java 1637 int wpos = windows.indexOf(win); local
1665 int wpos = windows.indexOf(win); local
    [all...]

Completed in 752 milliseconds