Home
last modified time | relevance | path

Searched refs:SByte (Results 1 – 25 of 48) sorted by relevance

12

/external/swiftshader/src/Reactor/
DReactor.cpp585 SByte::SByte(Argument<SByte> argument) in SByte() function in rr::SByte
590 SByte::SByte(RValue<Int> cast) in SByte() function in rr::SByte
592 Value *integer = Nucleus::createTrunc(cast.value(), SByte::type()); in SByte()
597 SByte::SByte(RValue<Short> cast) in SByte() function in rr::SByte
599 Value *integer = Nucleus::createTrunc(cast.value(), SByte::type()); in SByte()
604 SByte::SByte(signed char x) in SByte() function in rr::SByte
609 SByte::SByte(RValue<SByte> rhs) in SByte() function in rr::SByte
614 SByte::SByte(const SByte &rhs) in SByte() function in rr::SByte
619 SByte::SByte(const Reference<SByte> &rhs) in SByte() function in rr::SByte
624 RValue<SByte> SByte::operator=(RValue<SByte> rhs) in operator =()
[all …]
DReactor.hpp89 class SByte;
403 class SByte : public LValue<SByte> class
406 SByte(Argument<SByte> argument);
408 explicit SByte(RValue<Int> cast);
409 explicit SByte(RValue<Short> cast);
411 SByte() = default;
412 SByte(signed char x);
413 SByte(RValue<SByte> rhs);
414 SByte(const SByte &rhs);
415 SByte(const Reference<SByte> &rhs);
[all …]
DTraits.hpp29 class SByte;
93 using type = SByte;
94 static SByte cast(int8_t);
DLLVMReactorDebugInfo.cpp414 …diTypes.emplace(T(SByte::type()), diBuilder->createBasicType("SByte", 8, dwarf::DW_ATE_signed_char… in registerBasicTypes()
424 …diTypes.emplace(T(SByte4::type()), diBuilder->createVectorType(128, 128, diTypes[T(SByte::type())]… in registerBasicTypes()
426 …diTypes.emplace(T(SByte8::type()), diBuilder->createVectorType(128, 128, diTypes[T(SByte::type())]… in registerBasicTypes()
428 …diTypes.emplace(T(SByte16::type()), diBuilder->createVectorType(128, 128, diTypes[T(SByte::type())… in registerBasicTypes()
DSubzeroReactor.cpp2220 Type *SByte::type() in type()
2322 RValue<SByte> Extract(RValue<SByte8> val, int i) in Extract()
2325 return RValue<SByte>(Nucleus::createExtractElement(val.value(), SByte::type(), i)); in Extract()
2328 RValue<SByte8> Insert(RValue<SByte8> val, RValue<SByte> element, int i) in Insert()
2340 result = Insert(result, Extract(lhs, 0) >> SByte(rhs), 0); in operator >>()
2341 result = Insert(result, Extract(lhs, 1) >> SByte(rhs), 1); in operator >>()
2342 result = Insert(result, Extract(lhs, 2) >> SByte(rhs), 2); in operator >>()
2343 result = Insert(result, Extract(lhs, 3) >> SByte(rhs), 3); in operator >>()
2344 result = Insert(result, Extract(lhs, 4) >> SByte(rhs), 4); in operator >>()
2345 result = Insert(result, Extract(lhs, 5) >> SByte(rhs), 5); in operator >>()
[all …]
DLLVMReactor.cpp1848 Type *SByte::type() in type()
1989 return T(llvm::VectorType::get(T(SByte::type()), 16, false)); in type()
/external/swiftshader/src/Device/
DBlitter.cpp336 c.x = Float(Int(*Pointer<SByte>(element))); in readFloat4()
397 c.x = Float(Int(*Pointer<SByte>(element + 0))); in readFloat4()
398 c.y = Float(Int(*Pointer<SByte>(element + 1))); in readFloat4()
591 if(writeB) { *Pointer<SByte>(element + 0) = SByte(RoundInt(Float(c.z))); } in write()
592 if(writeG) { *Pointer<SByte>(element + 1) = SByte(RoundInt(Float(c.y))); } in write()
593 if(writeR) { *Pointer<SByte>(element + 2) = SByte(RoundInt(Float(c.x))); } in write()
726 if(writeB) { *Pointer<SByte>(element) = SByte(RoundInt(Float(c.z))); } in write()
727 if(writeG) { *Pointer<SByte>(element + 1) = SByte(RoundInt(Float(c.y))); } in write()
728 if(writeR) { *Pointer<SByte>(element + 2) = SByte(RoundInt(Float(c.x))); } in write()
729 if(writeA) { *Pointer<SByte>(element + 3) = SByte(RoundInt(Float(c.w))); } in write()
[all …]
/external/swiftshader/src/Renderer/
DBlitter.cpp239 c.x = Float(Int(*Pointer<SByte>(element))); in read()
333 c.x = Float(Int(*Pointer<SByte>(element + 0))); in read()
334 c.y = Float(Int(*Pointer<SByte>(element + 1))); in read()
543 if(writeA) { *Pointer<SByte>(element + 3) = SByte(RoundInt(Float(c.w))); } in write()
548 *Pointer<SByte>(element + 3) = SByte(0x7F); in write()
550 if(writeB) { *Pointer<SByte>(element + 2) = SByte(RoundInt(Float(c.z))); } in write()
553 if(writeG) { *Pointer<SByte>(element + 1) = SByte(RoundInt(Float(c.y))); } in write()
556 if(writeR) { *Pointer<SByte>(element) = SByte(RoundInt(Float(c.x))); } in write()
795 c = Insert(c, Int(*Pointer<SByte>(element + 3)), 3); in read()
797 c = Insert(c, Int(*Pointer<SByte>(element + 2)), 2); in read()
[all …]
/external/angle/src/tests/gl_tests/
DAttributeLayoutTest.cpp350 Format<GLbyte, GL_BYTE, false> SByte(es3); in GetTestCases() local
400 mTestCases.push_back({SByte(M0, 0, 20, mCoord), UByte(M0, 10, 20, mColor)}); in GetTestCases()
412 mTestCases.push_back({Float(M0, 0, 8, mCoord), SByte(B0, 0, 12, mColor)}); in GetTestCases()
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DTypeIndex.cpp36 {"__int8*", SimpleTypeKind::SByte},
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DTypeIndex.cpp36 {"__int8*", SimpleTypeKind::SByte},
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndex.h33 SByte = 0x0068, // 8 bit signed int enumerator
/external/swiftshader/tests/ReactorUnitTests/
DReactorUnitTests.cpp2300 std::pair<int8_t, SByte>,
3870 static_assert(std::is_same<CToReactorT<int8_t>, SByte>::value, "");
3882 static_assert(std::is_same<CToReactorT<int8_t *>, Pointer<SByte>>::value, "");
3903 static_assert(IsRValue<RValue<SByte>>::value, "");
3914 static_assert(IsLValue<SByte>::value, "");
3925 static_assert(IsReference<Reference<SByte>>::value, "");
3937 static_assert(!IsRValue<SByte>::value, "");
3949 static_assert(!IsRValue<Reference<SByte>>::value, "");
3973 static_assert(!IsLValue<RValue<SByte>>::value, "");
3988 static_assert(!IsLValue<Reference<SByte>>::value, "");
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndex.h39 SByte = 0x0068, // 8 bit signed int enumerator
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndex.h39 SByte = 0x0068, // 8 bit signed int enumerator
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DDWARFLocationExpression.cpp69 case SimpleTypeKind::SByte: in IsSimpleTypeSignedInteger()
DPdbUtil.cpp701 case SimpleTypeKind::SByte: in GetCompilerTypeForSimpleKind()
798 case SimpleTypeKind::SByte: in GetTypeSizeForSimpleKind()
DSymbolFileNativePDB.cpp167 case SimpleTypeKind::SByte: in GetSimpleTypeName()
/external/llvm-project/llvm/docs/PDB/
DTpiStream.rst135 SByte = 0x0068, // 8 bit signed int
/external/llvm/lib/DebugInfo/CodeView/
DTypeDumper.cpp34 {"__int8*", SimpleTypeKind::SByte},
/external/swiftshader/docs/
DReactor.md103 | SByte | int8_t |
/external/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1085 case 1: STK = SimpleTypeKind::SByte; break; in lowerTypeBasic()
/external/libexif/po/
Duk.po2415 msgid "SByte"
2416 msgstr "SByte"
Dsr.po2428 msgid "SByte"
2429 msgstr "SByte"
Dpt_BR.po2424 msgid "SByte"
2425 msgstr "SByte"

12