Home
last modified time | relevance | path

Searched refs:ByteValue (Results 1 – 18 of 18) sorted by relevance

/external/turbine/java/com/google/turbine/model/
DConst.java100 public ByteValue asByte() { in asByte()
197 public ByteValue asByte() { in asByte()
198 return new ByteValue((byte) value); in asByte()
280 public ByteValue asByte() { in asByte()
281 return new ByteValue((byte) value); in asByte()
363 public ByteValue asByte() { in asByte()
364 return new ByteValue((byte) value); in asByte()
449 public ByteValue asByte() { in asByte()
450 return new ByteValue((byte) value); in asByte()
541 public ByteValue asByte() { in asByte()
[all …]
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DByteValueImpl.java31 implements ByteValue {
41 if ((obj != null) && (obj instanceof ByteValue)) { in equals()
42 return (value == ((ByteValue)obj).value()) in equals()
56 public int compareTo(ByteValue obj) { in compareTo()
DPacketStream.java233 if(!(val instanceof ByteValue)) in writeUntaggedValueChecked()
DVirtualMachineImpl.java477 public ByteValue mirrorOf(byte value) { in mirrorOf()
/external/compiler-rt/lib/esan/
Dworking_set.cpp126 u32 ByteValue = 0x1 << BitIdx; in countAndClearShadowValues() local
127 u32 WordValue = ByteValue | ByteValue << 8 | ByteValue << 16 | in countAndClearShadowValues()
128 ByteValue << 24; in countAndClearShadowValues()
138 if (BytePtr[j] & ByteValue) { in countAndClearShadowValues()
142 BytePtr[j] |= (ByteValue << 1); in countAndClearShadowValues()
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
DLazyByteValue.java35 import com.sun.jdi.ByteValue;
38 public class LazyByteValue extends LazyComparablePrimitiveValue<ByteValue> implements ByteValue {
/external/turbine/javatests/com/google/turbine/model/
DConstTest.java59 .addEqualityGroup(new Const.ByteValue((byte) 1), new Const.ByteValue((byte) 1)) in equalsTest()
60 .addEqualityGroup(new Const.ByteValue((byte) 2), new Const.ByteValue((byte) 2)) in equalsTest()
133 assertThat(new Const.ByteValue((byte) 42).toString()).isEqualTo("(byte)0x2a"); in toStringTest()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DByteValue.java37 public interface ByteValue extends PrimitiveValue, Comparable<ByteValue> { interface
DVirtualMachine.java320 ByteValue mirrorOf(byte value); in mirrorOf()
/external/sfntly/cpp/src/sfntly/table/
Dbyte_array_table_builder.h33 virtual int32_t ByteValue(int32_t index);
Dbyte_array_table_builder.cc23 int32_t ByteArrayTableBuilder::ByteValue(int32_t index) { in ByteValue() function in sfntly::ByteArrayTableBuilder
/external/llvm-project/parallel-libs/acxxel/
Dcuda_acxxel.cpp121 ptrdiff_t ByteCount, char ByteValue,
388 ptrdiff_t ByteCount, char ByteValue, in asyncMemsetD() argument
393 ByteValue, ByteCount, static_cast<CUstream_st *>(Stream)), in asyncMemsetD()
Dopencl_acxxel.cpp107 ptrdiff_t ByteCount, char ByteValue,
371 ptrdiff_t ByteCount, char ByteValue, in asyncMemsetD() argument
375 static_cast<cl_mem>(DeviceDst), &ByteValue, 1, in asyncMemsetD()
Dacxxel.h355 Stream &asyncMemsetD(DeviceDstTy &&DeviceDst, char ByteValue);
650 ptrdiff_t ByteCount, char ByteValue,
820 Stream &Stream::asyncMemsetD(DeviceDstTy &&DeviceDst, char ByteValue) { in asyncMemsetD() argument
826 DeviceDstSpan.byte_size(), ByteValue, TheHandle.get())); in asyncMemsetD()
/external/skia/src/sfnt/
DSkOTTable_glyf.h183 struct ByteValue { struct
/external/skqp/src/sfnt/
DSkOTTable_glyf.h183 struct ByteValue { struct
/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBinder.java185 return new Const.ByteValue(value.asByte().value()); in bindConstValue()
/external/turbine/java/com/google/turbine/processing/
DTurbineElements.java318 return new Const.ByteValue((Byte) value).toString(); in getConstantExpression()