Home
last modified time | relevance | path

Searched refs:countValue (Results 1 – 11 of 11) sorted by relevance

/external/ms-tpm-20-ref/TPMCmd/tpm/src/command/NVStorage/
DNV_Increment.c55 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/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetBOCU1.java725 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/cldr/tools/java/org/unicode/cldr/util/
DCounter.java78 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()
DCounter2.java63 private Double addN(Double count, Double countValue) { in addN() argument
65 return count + countValue; in addN()
DVoteResolver.java364 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/fonttools/Lib/fontTools/ttLib/tables/
DotBase.py571 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/
DCheckAttributeValues.java133 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()
DExampleGenerator.java1572 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/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DCounter.java68 public Counter<T> add(T obj, long countValue) { in add() argument
71 count.value += countValue; in add()
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCounter.java65 public Counter<T> add(T obj, long countValue) { in add() argument
68 count.value += countValue; in add()
/external/cldr/tools/java/org/unicode/cldr/tool/
DCLDRModify.java1296 String countValue = parts.getAttributeValue(-1, "count");
1297 if (!DIGITS.containsAll(countValue)) {
1300 int intValue = Integer.parseInt(countValue);
1307 String fixed = oldValue.replace("{0}", countValue);