Lines Matching refs:exp
2241 void setSingleExpGainPreset(ShotParameters ¶ms, int idx, int exp, int gain) { in setSingleExpGainPreset() argument
2249 val.appendFormat("%+d", exp); in setSingleExpGainPreset()
2251 val.appendFormat("%u", (unsigned int) exp); in setSingleExpGainPreset()
2318 void calcNextSingleExpGainPreset(int idx, int &exp, int &gain) { in calcNextSingleExpGainPreset() argument
2321 if ( (0 == exp) && (0 == gain) ) { in calcNextSingleExpGainPreset()
2322 exp=100; in calcNextSingleExpGainPreset()
2324 printf("Streaming: Init default absolute exp./gain: %d,%d\n", exp, gain); in calcNextSingleExpGainPreset()
2327 exp *= 2; in calcNextSingleExpGainPreset()
2328 if (1000000 < exp) { in calcNextSingleExpGainPreset()
2329 exp = 100; in calcNextSingleExpGainPreset()
2337 exp += 50; in calcNextSingleExpGainPreset()
2338 if (200 < exp) { in calcNextSingleExpGainPreset()
2339 exp = -200; in calcNextSingleExpGainPreset()