Searched refs:multiplier (Results 1 - 6 of 6) sorted by relevance

/packages/inputmethods/LatinIME/native/src/
H A Dcorrection.cpp560 inline static void multiplyIntCapped(const int multiplier, int *base) { argument
563 // Branch if multiplier == 2 for the optimization
564 if (multiplier == 2) {
568 // temp = 2^16 + 1 and multiplier = 2^17 + 1.
570 const int tempRetval = temp * multiplier;
/packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
H A DHoloSpiralRS.java245 int multiplier = (int) (radians / (2.0f * (float) Math.PI));
246 radians -= multiplier * 2.0f * (float) Math.PI;
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DPowerUsageSummary.java520 double multiplier = 0;
523 multiplier = mPowerProfile.getAveragePower(PowerProfile.POWER_GPS_ON);
530 multiplier = sensorData.getPower();
533 + multiplier);
537 power += (multiplier * sensorTime) / 1000;
/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthWeekEventsView.java750 int multiplier = 1;
752 multiplier++;
755 multiplier++;
757 requiredSpace *= multiplier;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DSuggest.java50 * Words that appear in both bigram and unigram data gets multiplier ranging from
59 * structure. Maximum bigram frequency will get the BIGRAM_MULTIPLIER_MAX as the multiplier.
447 // turn freq from bigram into multiplier specified above
448 double multiplier = (((double) mBigramScores[bigramSuggestion])
456 + " multiplier: " + multiplier); */
457 score = (int)Math.round((score * multiplier));
/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java910 public void setBackgroundAlphaMultiplier(float multiplier) { argument
911 mBackgroundAlphaMultiplier = multiplier;

Completed in 526 milliseconds