/external/ms-tpm-20-ref/TPMCmd/tpm/src/command/NVStorage/ |
D | NV_Increment.c | 55 UINT64 countValue; in TPM2_NV_Increment() local 75 countValue = NvReadMaxCount(); in TPM2_NV_Increment() 78 countValue = NvGetUINT64Data(nvIndex, locator); in TPM2_NV_Increment() 81 countValue++; in TPM2_NV_Increment() 86 result = NvWriteUINT64Data(nvIndex, countValue); in TPM2_NV_Increment() 93 && (countValue & MAX_ORDERLY_COUNT) == 0 ) in TPM2_NV_Increment()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | Counter.java | 78 public Counter<T> add(T obj, long countValue) { in add() argument 81 count.value += countValue; in add() 86 public Counter<T> add(T obj, long countValue, long time) { in add() argument 89 count.value += countValue; in add() 94 public Counter<T> add(T obj, long countValue, boolean boo) { in add() argument 97 count.value = countValue; in add()
|
D | Counter2.java | 63 private Double addN(Double count, Double countValue) { in addN() argument 65 return count + countValue; in addN()
|
D | VoteResolver.java | 364 public MaxCounter<T> add(T obj, long countValue, long time) { in add() argument 366 if ((value <= countValue)) { in add() 367 super.add(obj, countValue - value, time); // only add the difference! in add()
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetBOCU1.java | 725 int diffValue, countValue; 732 countValue = 1; 736 countValue = 2; 740 countValue = 3; 747 countValue=1; 751 countValue = 2; 755 countValue=3; 760 return (diffValue<<2)|countValue; 772 private int decodeBocu1TrailByte(int countValue, int b) { in decodeBocu1TrailByte() argument 784 if(countValue==1) { in decodeBocu1TrailByte() [all …]
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | otBase.py | 571 countValue = 1 574 countValue = reader[conv.repeat] 577 totalSize += size * countValue 591 countValue = len(getattr(self, conv.name)) - conv.aux 594 setattr(self, conv.repeat, countValue) 598 propagator[conv.repeat].setValue(countValue) 629 countValue = conv.repeat 631 countValue = table[conv.repeat] 634 countValue = reader[conv.repeat] 635 countValue += conv.aux [all …]
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckAttributeValues.java | 133 final Count countValue = PluralInfo.Count.valueOf(attributeValue); in handleCheck() local 134 if (!pluralInfo.getCounts().contains(countValue) in handleCheck() 135 && !isPluralException(countValue, locale)) { in handleCheck() 139 new Object[] { countValue, pluralInfo.getCounts() })); in handleCheck() 161 static boolean isPluralException(Count countValue, String locale) { in isPluralException() argument 162 Set<String> exceptions = PLURAL_EXCEPTIONS.get(countValue); in isPluralException()
|
D | ExampleGenerator.java | 1572 String countValue = parts.getAttributeValue(-1, "count"); in handleCurrencyFormat() local 1573 if (countValue != null) { in handleCurrencyFormat() 1574 return formatCountDecimal(df, countValue); in handleCurrencyFormat() 1615 String countValue = parts.getAttributeValue(-1, "count"); in handleDecimalFormat() local 1616 if (countValue != null) { in handleDecimalFormat() 1617 return formatCountDecimal(numberFormat, countValue); in handleDecimalFormat() 1632 private String formatCountDecimal(DecimalFormat numberFormat, String countValue) { in formatCountDecimal() argument 1635 count = Count.valueOf(countValue); in formatCountDecimal() 1639 count = pluralInfo.getCount(new FixedDecimal(countValue)); in formatCountDecimal()
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
D | Counter.java | 65 public Counter<T> add(T obj, long countValue) { in add() argument 68 count.value += countValue; in add()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
D | Counter.java | 68 public Counter<T> add(T obj, long countValue) { in add() argument 71 count.value += countValue; in add()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | CLDRModify.java | 1296 String countValue = parts.getAttributeValue(-1, "count"); 1297 if (!DIGITS.containsAll(countValue)) { 1300 int intValue = Integer.parseInt(countValue); 1307 String fixed = oldValue.replace("{0}", countValue);
|