Home
last modified time | relevance | path

Searched refs:byteValue (Results 1 - 25 of 27) sorted by relevance

12

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/
H A DTag.java111 public static byte[] byteValue(int tag) { in byteValue() method in Tag
123 s = new String(Tag.byteValue(tag), "US-ASCII"); in stringValue()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
H A DBIG5Tool.java295 int byteValue = (int)buf[nextIndex++] & 0x00ff; in nextByte()
296 return byteValue; in nextByte()
H A DEUCTool.java295 int byteValue = (int)buf[nextIndex++] & 0x00ff; in nextByte()
296 return byteValue; in nextByte()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/
H A DByteArrayTableBuilder.java61 public int byteValue(int index) throws IOException { in byteValue() method in ByteArrayTableBuilder
/third_party/skia/src/sfnt/
H A DSkOTTable_glyf.h187 } byteValue; member
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_mbcs.java161 int byteValue = det.fRawInput[nextIndex++] & 0x00ff; in nextByte()
162 return byteValue; in nextByte()
H A DBidi.java4327 byte level = embedding.byteValue(); in setPara()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCharsetRecog_mbcs.java162 int byteValue = det.fRawInput[nextIndex++] & 0x00ff; in nextByte()
163 return byteValue; in nextByte()
H A DBidi.java4289 byte level = embedding.byteValue(); in setPara()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
H A DDecimalQuantity_ByteArrayBCD.java157 bcd[i] = temp[1].byteValue(); in readBigIntegerToBcd()
H A DDecimalQuantity_SimpleStorage.java654 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue(); in nextFraction()
784 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue(); in nextInteger()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/impl/number/
H A DDecimalQuantity_ByteArrayBCD.java160 bcd[i] = temp[1].byteValue(); in readBigIntegerToBcd()
H A DDecimalQuantity_SimpleStorage.java647 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue(); in nextFraction()
777 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue(); in nextInteger()
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DByteStringTest.java414 for (byte byteValue : bytes) { in testNewOutput_WriteChar()
415 output.write(byteValue); in testNewOutput_WriteChar()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DDecimalQuantity_DualStorageBCD.java237 bcdBytes[i] = temp[1].byteValue(); in readBigIntegerToBcd()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatDataDrivenTest.java246 fmt.setMinimumExponentDigits(tuple.minimumExponentDigits.byteValue());
526 properties.setMinimumExponentDigits(tuple.minimumExponentDigits.byteValue()); in propertiesFromTuple()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DNumberFormatDataDrivenTest.java249 fmt.setMinimumExponentDigits(tuple.minimumExponentDigits.byteValue());
529 properties.setMinimumExponentDigits(tuple.minimumExponentDigits.byteValue()); in propertiesFromTuple()
H A DNumberFormatTest.java1601 public byte byteValue() { return (byte)Math.PI; } in byteValue() method in NumberFormatTest.PI
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DByteStringTest.java553 for (byte byteValue : bytes) { in testNewOutput_WriteChar()
554 output.write(byteValue); in testNewOutput_WriteChar()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DDecimalQuantity_DualStorageBCD.java279 bcdBytes[i] = temp[1].byteValue(); in readBigIntegerToBcd()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bigdec/
H A DDiagBigDecimalTest.java2727 /** Test the <code>BigDecimal.byteValue()</code> method. */
2738 TestFmwk.assertTrue("byv001", ((((byte)-128)))==((new ohos.global.icu.math.BigDecimal("-128")).byteValue())); in diagbyteValue()
2739 TestFmwk.assertTrue("byv002", ((0))==((new ohos.global.icu.math.BigDecimal("0")).byteValue())); in diagbyteValue()
2740 TestFmwk.assertTrue("byv003", ((1))==((new ohos.global.icu.math.BigDecimal("1")).byteValue())); in diagbyteValue()
2741 TestFmwk.assertTrue("byv004", ((99))==((new ohos.global.icu.math.BigDecimal("99")).byteValue())); in diagbyteValue()
2742 TestFmwk.assertTrue("byv005", ((127))==((new ohos.global.icu.math.BigDecimal("127")).byteValue())); in diagbyteValue()
2743 TestFmwk.assertTrue("byv006", ((-128))==((new ohos.global.icu.math.BigDecimal("128")).byteValue())); in diagbyteValue()
2744 TestFmwk.assertTrue("byv007", ((-127))==((new ohos.global.icu.math.BigDecimal("129")).byteValue())); in diagbyteValue()
2745 TestFmwk.assertTrue("byv008", ((127))==((new ohos.global.icu.math.BigDecimal("-129")).byteValue())); in diagbyteValue()
2746 TestFmwk.assertTrue("byv009", ((126))==((new ohos.global.icu.math.BigDecimal("-130")).byteValue())); in diagbyteValue()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
H A DDiagBigDecimalTest.java2724 /** Test the <code>BigDecimal.byteValue()</code> method. */
2735 TestFmwk.assertTrue("byv001", ((((byte)-128)))==((new com.ibm.icu.math.BigDecimal("-128")).byteValue())); in diagbyteValue()
2736 TestFmwk.assertTrue("byv002", ((0))==((new com.ibm.icu.math.BigDecimal("0")).byteValue())); in diagbyteValue()
2737 TestFmwk.assertTrue("byv003", ((1))==((new com.ibm.icu.math.BigDecimal("1")).byteValue())); in diagbyteValue()
2738 TestFmwk.assertTrue("byv004", ((99))==((new com.ibm.icu.math.BigDecimal("99")).byteValue())); in diagbyteValue()
2739 TestFmwk.assertTrue("byv005", ((127))==((new com.ibm.icu.math.BigDecimal("127")).byteValue())); in diagbyteValue()
2740 TestFmwk.assertTrue("byv006", ((-128))==((new com.ibm.icu.math.BigDecimal("128")).byteValue())); in diagbyteValue()
2741 TestFmwk.assertTrue("byv007", ((-127))==((new com.ibm.icu.math.BigDecimal("129")).byteValue())); in diagbyteValue()
2742 TestFmwk.assertTrue("byv008", ((127))==((new com.ibm.icu.math.BigDecimal("-129")).byteValue())); in diagbyteValue()
2743 TestFmwk.assertTrue("byv009", ((126))==((new com.ibm.icu.math.BigDecimal("-130")).byteValue())); in diagbyteValue()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmFloatControlsTests.cpp398 FLOAT_TYPE exactByteEquivalent(UINT_TYPE byteValue) const;
452 FLOAT_TYPE TypeValues<FLOAT_TYPE>::exactByteEquivalent(UINT_TYPE byteValue) const in exactByteEquivalent()
455 value.ui = byteValue; in exactByteEquivalent()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H A DvktSpvAsmFloatControlsTests.cpp396 FLOAT_TYPE exactByteEquivalent(UINT_TYPE byteValue) const;
450 FLOAT_TYPE TypeValues<FLOAT_TYPE>::exactByteEquivalent(UINT_TYPE byteValue) const in exactByteEquivalent()
453 value.ui = byteValue; in exactByteEquivalent()
/third_party/node/deps/npm/node_modules/jsbn/
H A Dindex.js1177 BigInteger.prototype.byteValue = bnByteValue;

Completed in 68 milliseconds

12