dist               46 core/gui_osd.c static void sprintf_dist(char *buf, int dist) {
dist               48 core/gui_osd.c     if (dist<=0) {
dist               51 core/gui_osd.c         int i = dist / 1000;
dist               52 core/gui_osd.c         int f = dist % 1000;
dist               64 core/gui_osd.c static void sprintf_canon_values(char *buf, short dist) 
dist               66 core/gui_osd.c     short v=((dist<0)?-dist:dist);	
dist               67 core/gui_osd.c     sprintf(buf, "%s%d.%02d", ((dist<0)?"-":""), v/96, v%96);
dist             1204 core/shooting.c   int dist = shooting_get_subject_distance_();
dist             1259 core/shooting.c   if ((camera_info.dof_values.subject_distance!=dist || (camera_info.dof_values.hyperfocal_distance_1e3!=hyp_1e3)) && (hyp_1e3>0)) {
dist             1262 core/shooting.c     camera_info.dof_values.subject_distance = dist;
dist             1266 core/shooting.c     if ((av_1e3>0) && (fl>0) && (dist>0) && (shooting_is_infinity_distance()==0) && (hyp_1e3>0)) {
dist             1267 core/shooting.c       double m = ((double)(hyp_1e3 - fl)/1000 * dist) + 0.5;
dist             1269 core/shooting.c           camera_info.dof_values.near_limit = dist;
dist             1271 core/shooting.c         int v = ((((hyp_1e3 - 2*fl + 1000*dist)/500) + 1)/2);
dist             1274 core/shooting.c       int v = ((((hyp_1e3 - 1000*dist)/500) + 1)/2);
dist             1377 core/shooting.c         int dist = shooting_get_subject_distance();
dist             1382 core/shooting.c         shooting_set_focus(dist, SET_NOW);
dist               22 include/lolevel.h extern void _MoveFocusLensToDistance(short *dist);
dist               56 platform/g5x/wrappers.c void _MoveFocusLensToDistance(short *dist)
dist               60 platform/g5x/wrappers.c     _MoveFocusLensToDistance_FW(*(int*)dist, null_func, 0);
dist               87 platform/s80/sub/100g/lib.c extern void _orig_MoveFocusLensToDistance(short *dist);
dist               89 platform/s80/sub/100g/lib.c void _MoveFocusLensToDistance(short *dist)
dist              109 platform/s80/sub/100g/lib.c     _orig_MoveFocusLensToDistance(dist);
dist               87 platform/s80/sub/101b/lib.c extern void _orig_MoveFocusLensToDistance(short *dist);
dist               89 platform/s80/sub/101b/lib.c void _MoveFocusLensToDistance(short *dist)
dist              109 platform/s80/sub/101b/lib.c     _orig_MoveFocusLensToDistance(dist);
dist               50 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall void MoveFocusLensToDistance(short *dist);
dist              283 tools/packfi2/deflate.h int  _tr_tally        OF((deflate_state *s, unsigned dist, unsigned lc));
dist              290 tools/packfi2/deflate.h #define d_code(dist) \
dist              291 tools/packfi2/deflate.h    ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
dist              317 tools/packfi2/deflate.h     ush dist = (distance); \
dist              318 tools/packfi2/deflate.h     s->d_buf[s->last_lit] = dist; \
dist              320 tools/packfi2/deflate.h     dist--; \
dist              322 tools/packfi2/deflate.h     s->dyn_dtree[d_code(dist)].Freq++; \
dist              246 tools/packfi2/trees.c     int dist;     /* distance index */
dist              275 tools/packfi2/trees.c     dist = 0;
dist              277 tools/packfi2/trees.c         base_dist[code] = dist;
dist              279 tools/packfi2/trees.c             _dist_code[dist++] = (uch)code;
dist              282 tools/packfi2/trees.c     Assert (dist == 256, "tr_static_init: dist != 256");
dist              283 tools/packfi2/trees.c     dist >>= 7; /* from now on, all distances are divided by 128 */
dist              285 tools/packfi2/trees.c         base_dist[code] = dist << 7;
dist              287 tools/packfi2/trees.c             _dist_code[256 + dist++] = (uch)code;
dist              290 tools/packfi2/trees.c     Assert (dist == 256, "tr_static_init: 256+dist != 512");
dist             1022 tools/packfi2/trees.c int _tr_tally (s, dist, lc)
dist             1024 tools/packfi2/trees.c     unsigned dist;  /* distance of matched string */
dist             1027 tools/packfi2/trees.c     s->d_buf[s->last_lit] = (ush)dist;
dist             1029 tools/packfi2/trees.c     if (dist == 0) {
dist             1035 tools/packfi2/trees.c         dist--;             /* dist = match distance - 1 */
dist             1036 tools/packfi2/trees.c         Assert((ush)dist < (ush)MAX_DIST(s) &&
dist             1038 tools/packfi2/trees.c                (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
dist             1041 tools/packfi2/trees.c         s->dyn_dtree[d_code(dist)].Freq++;
dist             1077 tools/packfi2/trees.c     unsigned dist;      /* distance of matched string */
dist             1084 tools/packfi2/trees.c         dist = s->d_buf[lx];
dist             1086 tools/packfi2/trees.c         if (dist == 0) {
dist             1098 tools/packfi2/trees.c             dist--; /* dist is now the match distance - 1 */
dist             1099 tools/packfi2/trees.c             code = d_code(dist);
dist             1105 tools/packfi2/trees.c                 dist -= base_dist[code];
dist             1106 tools/packfi2/trees.c                 send_bits(s, dist, extra);   /* send the extra distance bits */