pos              1408 core/conf.c        OSD_pos* pos;
pos              1454 core/conf.c                        pos = (OSD_pos*)ci[i].var;
pos              1455 core/conf.c                        configVal->pos.x = pos->x;
pos              1456 core/conf.c                        configVal->pos.y = pos->y;
pos              1487 core/conf.c        OSD_pos* pos;
pos              1542 core/conf.c                        pos = (OSD_pos*)ci[i].var;
pos              1543 core/conf.c                        pos->x = configVal.pos.x;
pos              1544 core/conf.c                        pos->y = configVal.pos.y;
pos               372 core/gps.c             int pos=0;
pos               388 core/gps.c             for(pos=0; pos<extent; pos++)
pos               390 core/gps.c                 int data = bitmap[pos];
pos               412 core/gps.c                     pos++;
pos               429 core/gps.c             int pos=0;
pos               433 core/gps.c             for(pos=0; pos<extent; pos++)
pos               435 core/gps.c                 int data = bitmap[pos];
pos               456 core/gps.c                     pos++;
pos              2363 core/gui.c             int pos;
pos              2372 core/gui.c             for (pos=0; pos<logo_size; pos++)
pos              2374 core/gui.c                 char data = logo[pos];
pos              1403 core/gui_draw.c void draw_osd_string(OSD_pos pos, int xo, int yo, char *s, twoColors c, OSD_scale scale)
pos              1406 core/gui_draw.c         draw_string(pos.x+xo, pos.y+yo, s, c);
pos              1408 core/gui_draw.c         draw_string_scaled(pos.x+(xo*scale.x), pos.y+(yo*scale.y), s, c, scale.x, scale.y);
pos              1413 core/gui_draw.c void draw_osd_string(OSD_pos pos, int xo, int yo, char *s, twoColors c, OSD_scale scale)
pos              1417 core/gui_draw.c         draw_string(pos.x+xo, pos.y+yo, s, c);
pos              1421 core/gui_draw.c         draw_string_scaled(pos.x+(xo>>1), pos.y+(yo>>1), s, c, scale.x, scale.y);
pos              1425 core/gui_draw.c         draw_string_scaled(pos.x+(xo*scale.x), pos.y+(yo*scale.y), s, c, scale.x, scale.y);
pos               131 core/gui_draw.h extern void draw_osd_string(OSD_pos pos, int xo, int yo, char *s, twoColors c, OSD_scale scale);
pos                35 core/gui_space.c static void spacebar_outer(OSD_pos pos, int w, int h)
pos                41 core/gui_space.c     xx = pos.x;
pos                42 core/gui_space.c     yy = pos.y;
pos               166 core/remotecap.c int filewrite_get_file_chunk(char **addr,unsigned *size, unsigned n, int *pos);
pos               292 core/remotecap.c int remotecap_get_data_chunk( int fmt, char **addr, unsigned int *size, int *pos )
pos               295 core/remotecap.c     *pos = -1; // default = sequential
pos               306 core/remotecap.c             fwt_last_status = filewrite_get_file_chunk(addr,size,fwt_curr_chunk,pos);
pos                47 include/conf.h     OSD_pos pos;
pos               563 include/conf.h         OSD_pos         pos;
pos               571 include/conf.h #define CONF_INFO2(id, param, type, px, py)         { id, sizeof( param ), type, &param, {pos:{px,py}}, 0 }
pos               572 include/conf.h #define CONF_INFOP(id, param, type, px, py)         { id, sizeof( param ), type, &param, {pos:{(px)*CAM_SCREEN_WIDTH/360,(py)*CAM_SCREEN_HEIGHT/240}}, 0 }
pos                16 include/lolevel.h extern long _MoveZoomLensWithPoint(short *pos);
pos                14 include/remotecap_core.h int remotecap_get_data_chunk( int fmt, char **addr, unsigned int *size, int *pos );
pos                22 include/std/stdio.h     unsigned pos;   // +0xC verified in Fseek_FileStream
pos                40 include/std/stdio.h #define ftell(f) (f ? (long)f->pos : -1)
pos                36 lib/lua/lstrlib.c static ptrdiff_t posrelat (ptrdiff_t pos, size_t len) {
pos                38 lib/lua/lstrlib.c   if (pos < 0) pos += (ptrdiff_t)len + 1;
pos                39 lib/lua/lstrlib.c   return (pos >= 0) ? pos : 0;
pos                92 lib/lua/ltablib.c   int pos;  /* where to insert new element */
pos                95 lib/lua/ltablib.c       pos = e;  /* insert new element at the end */
pos               100 lib/lua/ltablib.c       pos = luaL_checkint(L, 2);  /* 2nd argument is the position */
pos               101 lib/lua/ltablib.c       if (pos > e) e = pos;  /* `grow' array if necessary */
pos               102 lib/lua/ltablib.c       for (i = e; i > pos; i--) {  /* move up elements */
pos               113 lib/lua/ltablib.c   lua_rawseti(L, 1, pos);  /* t[pos] = v */
pos               120 lib/lua/ltablib.c   int pos = luaL_optint(L, 2, e);
pos               121 lib/lua/ltablib.c   if (!(1 <= pos && pos <= e))  /* position is outside bounds? */
pos               124 lib/lua/ltablib.c   lua_rawgeti(L, 1, pos);  /* result = t[pos] */
pos               125 lib/lua/ltablib.c   for ( ;pos<e; pos++) {
pos               126 lib/lua/ltablib.c     lua_rawgeti(L, 1, pos+1);
pos               127 lib/lua/ltablib.c     lua_rawseti(L, 1, pos);  /* t[pos] = t[pos+1] */
pos                25 modules/bitvector.c static inline void bv_setbit(const bit_vector_t* bm, int pos, int val)
pos                27 modules/bitvector.c     int bp = pos - ((pos >> 3) << 3);
pos                29 modules/bitvector.c         bm->ptr[pos >> 3] &= ~(1 << bp);
pos                31 modules/bitvector.c         bm->ptr[pos >> 3] |=  (1 << bp);
pos                35 modules/bitvector.c static inline int bv_getbit(const bit_vector_t* bm, int pos)
pos                42 modules/bitvector.c     int bp = pos - ((pos >> 3) << 3);
pos                43 modules/bitvector.c     return (bm->ptr[pos >> 3] & (1 << bp)) >> bp;
pos                46 modules/bitvector.c void bv_set(const bit_vector_t* bm, int pos, int val)
pos                49 modules/bitvector.c     int bitpos = pos * bm->nBits;
pos                58 modules/bitvector.c void bv_set2(const bit_vector_t* bm, int pos, int val)
pos                61 modules/bitvector.c     int bitpos = pos * bm->nBits;
pos                72 modules/bitvector.c void bv_set4(const bit_vector_t* bm, int pos, int val)
pos                75 modules/bitvector.c     int bitpos = pos * bm->nBits;
pos                86 modules/bitvector.c int bv_get(const bit_vector_t* bm, int pos)
pos                90 modules/bitvector.c     int bitpos = pos * bm->nBits;
pos                13 modules/bitvector.h void bv_set(const bit_vector_t* bm, int pos, int val);
pos                14 modules/bitvector.h void bv_set2(const bit_vector_t* bm, int pos, int val);
pos                15 modules/bitvector.h void bv_set4(const bit_vector_t* bm, int pos, int val);
pos                16 modules/bitvector.h int bv_get(const bit_vector_t* bm, int pos) __attribute__((pure));
pos                43 modules/games/gui_mastermind.c static void clue_box(int pos, color col)
pos                45 modules/games/gui_mastermind.c     int x = camera_screen.disp_left+4*cell_size+10+(pos+2)*(FONT_WIDTH+2);
pos                52 modules/games/gui_mastermind.c     char pos = 0;
pos                59 modules/games/gui_mastermind.c             clue_box(pos, COLOR_BLACK);
pos                60 modules/games/gui_mastermind.c             pos++;
pos                64 modules/games/gui_mastermind.c     if (pos == 4)
pos                76 modules/games/gui_mastermind.c                 clue_box(pos, COLOR_WHITE);
pos                77 modules/games/gui_mastermind.c                 pos++;
pos               314 modules/games/gui_sokoban.c                 unsigned pos = p - buf;
pos               315 modules/games/gui_sokoban.c                 if ( pos > 65535 ) {
pos               318 modules/games/gui_sokoban.c                 level_start_list[num_levels] = (unsigned short)pos;
pos                91 modules/gui_bench.c static void gui_bench_draw_results_screen(int pos, int value, int ss) {
pos                97 modules/gui_bench.c         draw_txt_string(17, pos, buf, MAKE_COLOR(COLOR_BLACK, COLOR_WHITE));
pos               102 modules/gui_bench.c static void gui_bench_draw_results_memory(int pos, int value, int value_uc) {
pos               108 modules/gui_bench.c         draw_txt_string(17, pos, buf, MAKE_COLOR(COLOR_BLACK, COLOR_WHITE));
pos               113 modules/gui_bench.c static void gui_bench_draw_results(int pos, int value) {
pos               119 modules/gui_bench.c         draw_txt_string(17, pos, buf, MAKE_COLOR(COLOR_BLACK, COLOR_WHITE));
pos               125 modules/gui_bench.c static void gui_bench_draw_results_cpu(int pos, int value) {
pos               131 modules/gui_bench.c         draw_txt_string(17, pos, buf, MAKE_COLOR(COLOR_BLACK, COLOR_WHITE));
pos               137 modules/gui_bench.c static void gui_bench_draw_results_text(int pos, int value, int valuen, int ss) {
pos               146 modules/gui_bench.c         draw_txt_string(17, pos, buf, MAKE_COLOR(COLOR_BLACK, COLOR_WHITE));
pos               179 modules/gui_bench.c static int bench_draw_control_txt(int pos, const char *s, int active) {
pos               186 modules/gui_bench.c     draw_txt_string(pos, 0,  s, cl);
pos               187 modules/gui_bench.c     return pos+strlen(s);
pos               189 modules/gui_bench.c static int bench_draw_checkbox(int pos, const char *title, int active, int checked) {
pos               190 modules/gui_bench.c     pos = bench_draw_control_txt(pos,title,active);
pos               191 modules/gui_bench.c     pos = bench_draw_control_txt(pos," [",active);
pos               192 modules/gui_bench.c     pos = bench_draw_control_txt(pos,(checked)?"\x95":" ",active);
pos               193 modules/gui_bench.c     pos = bench_draw_control_txt(pos,"]",active);
pos               194 modules/gui_bench.c     return pos;
pos               197 modules/gui_bench.c     int pos = bench_draw_control_txt(1,lang_str(LANG_BENCH_START),bench_cur_ctl == BENCH_CTL_START);
pos               198 modules/gui_bench.c     pos = bench_draw_checkbox(pos+1,lang_str(LANG_BENCH_LOG),bench_cur_ctl == BENCH_CTL_LOG,bench_log);
pos               199 modules/gui_bench.c     bench_draw_checkbox(pos+1,lang_str(LANG_BENCH_SDTEST),bench_cur_ctl == BENCH_CTL_SD,bench_mode_next == BENCH_ALL);
pos                24 modules/gui_osd_edit.c     OSD_pos     *pos;
pos                77 modules/gui_osd_edit.c             draw_rectangle((osd[curr_item].pos->x>=i)?osd[curr_item].pos->x-i:0, (osd[curr_item].pos->y>=i)?osd[curr_item].pos->y-i:0,
pos                78 modules/gui_osd_edit.c                            (osd[curr_item].pos->x+SCL(osd[curr_item].size.x,xscale))+i-1,
pos                79 modules/gui_osd_edit.c                            (osd[curr_item].pos->y+SCL(osd[curr_item].size.y,yscale))+i-1,
pos                82 modules/gui_osd_edit.c         sprintf(osd_buf, " %s:  x:%d y:%d s:%d f:%d:%d ", lang_str(osd[curr_item].title), osd[curr_item].pos->x, osd[curr_item].pos->y, step, xscale, yscale);
pos                83 modules/gui_osd_edit.c         draw_string(0, (osd[curr_item].pos->x<strlen(osd_buf)*FONT_WIDTH+4 && osd[curr_item].pos->y<FONT_HEIGHT+4)?camera_screen.height-FONT_HEIGHT:0,
pos               148 modules/gui_osd_edit.c         if (osd[curr_item].pos->x > 0)
pos               150 modules/gui_osd_edit.c             osd[curr_item].pos->x-=(osd[curr_item].pos->x>=step)?step:osd[curr_item].pos->x;
pos               155 modules/gui_osd_edit.c         if (osd[curr_item].pos->x < camera_screen.width-SCL(osd[curr_item].size.x,0))
pos               157 modules/gui_osd_edit.c             osd[curr_item].pos->x+=(camera_screen.width-SCL(osd[curr_item].size.x,0)-osd[curr_item].pos->x>step)?step:camera_screen.width-SCL(osd[curr_item].size.x,0)-osd[curr_item].pos->x;
pos               160 modules/gui_osd_edit.c             osd[curr_item].pos->x = camera_screen.width-SCL(osd[curr_item].size.x,0);
pos               163 modules/gui_osd_edit.c         if (osd[curr_item].pos->y > 0)
pos               165 modules/gui_osd_edit.c             osd[curr_item].pos->y-=(osd[curr_item].pos->y>=step)?step:osd[curr_item].pos->y;
pos               170 modules/gui_osd_edit.c         if (osd[curr_item].pos->y < camera_screen.height-osd[curr_item].size.y)
pos               172 modules/gui_osd_edit.c             osd[curr_item].pos->y+=(camera_screen.height-osd[curr_item].size.y-osd[curr_item].pos->y>step)?step:camera_screen.height-osd[curr_item].size.y-osd[curr_item].pos->y;
pos               175 modules/gui_osd_edit.c             osd[curr_item].pos->y = camera_screen.height-osd[curr_item].size.y;
pos               180 modules/gui_osd_edit.c         if (!osd[curr_item].pos) 
pos              2336 modules/luascript.c                 lua_pushnumber(L, configVal.pos.x);
pos              2337 modules/luascript.c                 lua_pushnumber(L, configVal.pos.y); ret++;
pos              2368 modules/luascript.c                         case 0: configVal.pos.x = luaL_checknumber(L, i); configVal.isPos++; break;
pos              2369 modules/luascript.c                         case 1: configVal.pos.y = luaL_checknumber(L, i); configVal.isPos++; break;
pos               130 modules/sha1.c 	size_t pos, plen;
pos               145 modules/sha1.c 	pos = 0;
pos               146 modules/sha1.c 	while (pos < buf_len) {
pos               147 modules/sha1.c 		plen = buf_len - pos;
pos               150 modules/sha1.c 					 &buf[pos]);
pos               151 modules/sha1.c 			pos += SHA1_MAC_LEN;
pos               155 modules/sha1.c 			memcpy(&buf[pos], hash, plen);
pos               181 modules/sha1.c 	size_t pos, plen;
pos               201 modules/sha1.c 	pos = 0;
pos               202 modules/sha1.c 	while (pos < buf_len) {
pos               204 modules/sha1.c 		plen = buf_len - pos;
pos               207 modules/sha1.c 			memcpy(&buf[pos], hash, SHA1_MAC_LEN);
pos               208 modules/sha1.c 			pos += SHA1_MAC_LEN;
pos               210 modules/sha1.c 			memcpy(&buf[pos], hash, plen);
pos               356 modules/sha1.c 	unsigned char *pos = buf;
pos               365 modules/sha1.c 		memcpy(pos, digest, plen);
pos               366 modules/sha1.c 		pos += plen;
pos                30 platform/generic/filewrite.c int filewrite_get_file_chunk(char **addr,int *size,unsigned n,int *pos) {
pos                31 platform/generic/filewrite.c     *pos=-1;
pos                70 platform/generic/filewrite.c         *pos=fwt_file_offset; //only post file offset for the first chunk in the current queue
pos                75 platform/generic/filewrite.c         *pos=0; //only post file offset for the first chunk in the last queue
pos                24 tools/dumputil.c int find_cstring(dump_t *dump, unsigned *pos, const char *string)
pos                27 tools/dumputil.c 	for(i=*pos; i<dump->size - strlen(string); i++) {
pos                29 tools/dumputil.c 			*pos = i;
pos                15 tools/dumputil.h int find_cstring(dump_t *dump, unsigned *pos, const char *string);
pos              5937 tools/finsig_dryos.c         int found = 0, pos = 0, len = 0, size = 0;
pos              5955 tools/finsig_dryos.c                         pos = k;
pos              5970 tools/finsig_dryos.c             print_stubs_min(fw,"focus_len_table",idx2adr(fw,pos),idx2adr(fw,pos));
pos              7140 tools/finsig_thumb2.c         int found = 0, pos = 0, len = 0, size = 0;
pos              7155 tools/finsig_thumb2.c                         pos = k;
pos              7164 tools/finsig_thumb2.c             uint32_t adr = fw->base + (pos << 2);
pos               280 tools/gensig_dryos.c void dump_sig(uint32_t pos, int size, FILE *f)
pos               294 tools/gensig_dryos.c     fseek(f, pos, SEEK_SET);
pos               330 tools/gensig_dryos.c     uint32_t pos, lnk_pos;
pos               347 tools/gensig_dryos.c     pos = strtoul(argv[4], NULL, 0) - base;
pos               356 tools/gensig_dryos.c     dump_sig(pos,size,f);
pos               278 tools/gensig_vxworks.c     uint32_t pos;
pos               295 tools/gensig_vxworks.c     pos = strtoul(argv[4], NULL, 0) - base;
pos               299 tools/gensig_vxworks.c     fseek(f, pos, SEEK_SET);
pos                45 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall int MoveZoomLensWithPoint(short *pos);
pos               136 tools/ghidra_scripts/datatypes/fw_types.h     unsigned pos;   // +0xC verified in Fseek_FileStream