HomeSort by: relevance | last modified time | path
    Searched defs:curpos (Results 1 - 7 of 7) sorted by relevancy

  /src/usr.sbin/makefs/cd9660/
cd9660_write.c 391 off_t curpos; local in function:cd9660_write_filedata
394 curpos = ftello(fd);
401 if (fseeko(fd, curpos, SEEK_SET) == -1)
  /src/sys/dev/ic/
bt485.c 96 struct wsdisplay_curpos curpos; /* current cursor position */ member in struct:bt485data
243 data->curpos.x = data->curpos.y = 0; /* right now at 0,0 */
362 data->curpos = cursorp->pos;
408 cursorp->pos = data->curpos; /* DOPOS */
448 data->curpos = *curposp;
459 *curposp = data->curpos;
574 x = data->curpos.x + CURSOR_MAX_SIZE - data->curhot.x;
575 y = data->curpos.y + CURSOR_MAX_SIZE - data->curhot.y;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/
hw.h 350 uint32_t curpos = NVReadRAMDAC(dev, head, NV_PRAMDAC_CU_START_POS); local in function:nv_fix_nv40_hw_cursor
351 NVWriteRAMDAC(dev, head, NV_PRAMDAC_CU_START_POS, curpos);
  /src/sbin/cgdconfig/
params.c 938 print_kvpair_b64(FILE *f, int curpos, int ts, const char *key, bits_t *val)
955 curpos += ts + strlen(key) + 1;
956 ts = curpos;
958 for (i=0, pos=curpos; i < len; i++, pos++) {
993 int curpos = 0; local in function:keygen_fput
998 curpos += strlen("keygen ");
1002 curpos += strlen("storedkey ");
1003 print_kvpair_b64(f, curpos, 0, "key", kg->kg_key);
  /src/bin/sh/
histedit.c 82 static int curpos; variable in typeref:typename:int
929 * Comparator function for qsort(). The use of curpos here is to skip
935 return strcmp(*(char *const *)a + curpos,
936 *(char *const *)b + curpos);
954 curpos = end - start;
971 if (strncmp(entry->d_name, text, curpos) != 0)
1009 if (strcmp(matches[j] + curpos, matches[k] + curpos)
  /src/sys/dev/tc/
xcfb.c 659 set_curpos(struct xcfb_softc *sc, struct wsdisplay_curpos *curpos)
662 int x = curpos->x, y = curpos->y;
691 struct wsdisplay_curpos *curpos = &sc->sc_cursor.cc_pos; local in function:ims332_set_curpos
696 pos = (curpos->x & 0xfff) << 12 | (curpos->y & 0xfff);
  /src/bin/ksh/
history.c 72 static int curpos; /* current index in history[] */ variable in typeref:typename:int
482 return curpos;
493 curpos = last;
497 curpos = n;

Completed in 28 milliseconds