Home
last modified time | relevance | path

Searched refs:UInt (Results 1 – 25 of 124) sorted by relevance

12345

/external/swiftshader/src/Device/
DBlitter.cpp259 c.x = Float(*Pointer<UInt>(element)); in read()
322 c.x = Float(*Pointer<UInt>(element + 0)); in read()
323 c.y = Float(*Pointer<UInt>(element + 4)); in read()
362 c.x = Float(*Pointer<UInt>(element) & UInt(0x000001FF)); // R's mantissa (bits 0-8) in read()
363 c.y = Float((*Pointer<UInt>(element) & UInt(0x0003FE00)) >> 9); // G's mantissa (bits 9-17) in read()
364 c.z = Float((*Pointer<UInt>(element) & UInt(0x07FC0000)) >> 18); // B's mantissa (bits 18-26) in read()
367 Float(UInt(1) << ((*Pointer<UInt>(element) & UInt(0xF8000000)) >> 27)) * in read()
390 c.x = Float(Int((*Pointer<UInt>(element) & UInt(0x000003FF)))); in read()
391 c.y = Float(Int((*Pointer<UInt>(element) & UInt(0x000FFC00)) >> 10)); in read()
392 c.z = Float(Int((*Pointer<UInt>(element) & UInt(0x3FF00000)) >> 20)); in read()
[all …]
/external/swiftshader/src/Reactor/
DReactor.hpp46 class UInt;
137 struct IntLiteral<UInt>
213 explicit Byte(RValue<UInt> cast);
381 explicit UShort(RValue<UInt> cast);
1003 Int(RValue<UInt> rhs);
1005 Int(const UInt &rhs);
1007 Int(const Reference<UInt> &rhs);
1011 RValue<Int> operator=(RValue<UInt> rhs);
1013 RValue<Int> operator=(const UInt &rhs);
1015 RValue<Int> operator=(const Reference<UInt> &rhs);
[all …]
DSubzeroReactor.cpp1593 Byte::Byte(RValue<UInt> cast) in Byte()
2311 UShort::UShort(RValue<UInt> cast) in UShort()
4069 result = Insert(result, UShort((UInt(Extract(x, 0)) * UInt(Extract(y, 0))) >> 16), 0); in MulHigh()
4070 result = Insert(result, UShort((UInt(Extract(x, 1)) * UInt(Extract(y, 1))) >> 16), 1); in MulHigh()
4071 result = Insert(result, UShort((UInt(Extract(x, 2)) * UInt(Extract(y, 2))) >> 16), 2); in MulHigh()
4072 result = Insert(result, UShort((UInt(Extract(x, 3)) * UInt(Extract(y, 3))) >> 16), 3); in MulHigh()
4432 Int::Int(RValue<UInt> rhs) in Int()
4449 Int::Int(const UInt &rhs) in Int()
4455 Int::Int(const Reference<UInt> &rhs) in Int()
4473 RValue<Int> Int::operator=(RValue<UInt> rhs) in operator =()
[all …]
DLLVMReactor.cpp1696 Byte::Byte(RValue<UInt> cast) in Byte()
2444 UShort::UShort(RValue<UInt> cast) in UShort()
4165 Int::Int(RValue<UInt> rhs) in Int()
4182 Int::Int(const UInt &rhs) in Int()
4188 Int::Int(const Reference<UInt> &rhs) in Int()
4206 RValue<Int> Int::operator=(RValue<UInt> rhs) in operator =()
4229 RValue<Int> Int::operator=(const UInt &rhs) in operator =()
4237 RValue<Int> Int::operator=(const Reference<UInt> &rhs) in operator =()
4462 Long::Long(RValue<UInt> cast) in Long()
4532 UInt::UInt(Argument<UInt> argument) in UInt() function in rr::UInt
[all …]
/external/zlib/src/contrib/ada/
Dzlib-thin.ads36 type UInt is new Interfaces.C.unsigned; -- 16 bits or more
117 Items : UInt;
118 Size : UInt)
136 dictLength : UInt)
153 dictLength : UInt)
195 len : UInt)
201 len : in UInt)
239 len : UInt)
245 len : UInt)
316 Size : in UInt);
[all …]
Dzlib-thin.adb21 function Avail_In (Strm : in Z_Stream) return UInt is
30 function Avail_Out (Strm : in Z_Stream) return UInt is
89 Size : in UInt) is
117 Size : in UInt) is
/external/swiftshader/src/Renderer/
DBlitter.cpp260 c.x = Float(*Pointer<UInt>(element)); in read()
360 c.x = Float(*Pointer<UInt>(element + 0)); in read()
361 c.y = Float(*Pointer<UInt>(element + 4)); in read()
385 c.x = Float(Int((*Pointer<UInt>(element) & UInt(0x000003FF)))); in read()
386 c.y = Float(Int((*Pointer<UInt>(element) & UInt(0x000FFC00)) >> 10)); in read()
387 c.z = Float(Int((*Pointer<UInt>(element) & UInt(0x3FF00000)) >> 20)); in read()
388 c.w = Float(Int((*Pointer<UInt>(element) & UInt(0xC0000000)) >> 30)); in read()
395 c.x = Float(Int((*Pointer<UInt>(element) & UInt(0xFFFFFF00)) >> 8)); in read()
398 c.x = Float(Int((*Pointer<UInt>(element)))); in read()
693 if(writeR) { *Pointer<UInt>(element) = As<UInt>(RoundInt(Float(c.x))); } in write()
[all …]
/external/swiftshader/src/Pipeline/
DVertexRoutine.hpp57 virtual void program(UInt &index) = 0;
61 Vector4f readStream(Pointer<Byte> &buffer, UInt &stride, const Stream &stream, const UInt &index);
62 void readInput(UInt &index);
67 …void transformFeedback(const Pointer<Byte> &vertex, const UInt &primitiveNumber, const UInt &index…
DVertexRoutine.cpp48 UInt vertexCount = *Pointer<UInt>(task + OFFSET(VertexTask,vertexCount)); in generate()
49 UInt primitiveNumber = *Pointer<UInt>(task + OFFSET(VertexTask, primitiveStart)); in generate()
50 UInt indexInPrimitive = 0; in generate()
56 UInt index = *Pointer<UInt>(batch); in generate()
57 UInt tagIndex = index & 0x0000003C; in generate()
58UInt indexQ = !textureSampling ? UInt(index & 0xFFFFFFFC) : index; // FIXME: TEXLDL hack to have… in generate()
60 If(*Pointer<UInt>(tagCache + tagIndex) != indexQ) in generate()
62 *Pointer<UInt>(tagCache + tagIndex) = indexQ; in generate()
69 Pointer<Byte> cacheLine0 = vertexCache + tagIndex * UInt((int)sizeof(Vertex)); in generate()
73 UInt cacheIndex = index & 0x0000003F; in generate()
[all …]
/external/swiftshader/src/Shader/
DVertexRoutine.hpp57 virtual void pipeline(UInt &index) = 0;
61 Vector4f readStream(Pointer<Byte> &buffer, UInt &stride, const Stream &stream, const UInt &index);
62 void readInput(UInt &index);
67 …void transformFeedback(const Pointer<Byte> &vertex, const UInt &primitiveNumber, const UInt &index…
DVertexRoutine.cpp48 UInt vertexCount = *Pointer<UInt>(task + OFFSET(VertexTask,vertexCount)); in generate()
49 UInt primitiveNumber = *Pointer<UInt>(task + OFFSET(VertexTask, primitiveStart)); in generate()
50 UInt indexInPrimitive = 0; in generate()
56 UInt index = *Pointer<UInt>(batch); in generate()
57 UInt tagIndex = index & 0x0000003C; in generate()
58UInt indexQ = !textureSampling ? UInt(index & 0xFFFFFFFC) : index; // FIXME: TEXLDL hack to have… in generate()
60 If(*Pointer<UInt>(tagCache + tagIndex) != indexQ) in generate()
62 *Pointer<UInt>(tagCache + tagIndex) = indexQ; in generate()
69 Pointer<Byte> cacheLine0 = vertexCache + tagIndex * UInt((int)sizeof(Vertex)); in generate()
73 UInt cacheIndex = index & 0x0000003F; in generate()
[all …]
DVertexPipeline.hpp33 void pipeline(UInt &index) override;
39 …Vector4f transform(const Register &src, const Pointer<Byte> &matrix, UInt index[4], bool homogenou…
DVertexProgram.hpp50 Array<UInt, MAX_SHADER_CALL_STACK_SIZE> callStack;
66 void pipeline(UInt &index) override;
67 void program(UInt &index);
/external/protobuf/objectivec/Tests/
DGPBSwiftTests.swift82 XCTAssertEqual(msg.repeatedInt32Array.count, UInt(2)) in testProto2Basics()
88 XCTAssertEqual(msg.repeatedEnumArray.count, UInt(2)) in testProto2Basics()
91 XCTAssertEqual(msg.repeatedInt64Array.count, UInt(0)) in testProto2Basics()
92 XCTAssertEqual(msg.mapInt32Int32.count, UInt(2)) in testProto2Basics()
101 XCTAssertEqual(msg.mapInt32Enum.count, UInt(2)) in testProto2Basics()
129 XCTAssertEqual(msg.repeatedInt32Array.count, UInt(0)) in testProto2Basics()
131 XCTAssertEqual(msg.repeatedEnumArray.count, UInt(0)) in testProto2Basics()
132 XCTAssertEqual(msg.mapInt32Int32.count, UInt(0)) in testProto2Basics()
134 XCTAssertEqual(msg.mapInt32Enum.count, UInt(0)) in testProto2Basics()
172 XCTAssertEqual(msg.repeatedInt32Array.count, UInt(2)) in testProto3Basics()
[all …]
/external/skia/src/utils/
DSkFloatUtils.h19 typedef void UInt; typedef
25 typedef uint32_t UInt; typedef
31 typedef uint64_t UInt; typedef
58 typedef typename SkTypeWithSize<sizeof(RawType) * CHAR_BIT>::UInt Bits;
/external/skqp/src/utils/
DSkFloatUtils.h19 typedef void UInt; typedef
25 typedef uint32_t UInt; typedef
31 typedef uint64_t UInt; typedef
58 typedef typename SkTypeWithSize<sizeof(RawType) * CHAR_BIT>::UInt Bits;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DNativeSession.cpp52 {codeview::SimpleTypeKind::UInt32, PDB_BuiltinType::UInt, 4},
53 {codeview::SimpleTypeKind::UInt32Long, PDB_BuiltinType::UInt, 4},
54 {codeview::SimpleTypeKind::UInt64Quad, PDB_BuiltinType::UInt, 8},
57 {codeview::SimpleTypeKind::UnsignedCharacter, PDB_BuiltinType::UInt, 1},
58 {codeview::SimpleTypeKind::UInt16Short, PDB_BuiltinType::UInt, 2},
/external/compiler-rt/lib/ubsan/
Dubsan_diag.h156 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} in Arg()
164 UIntMax UInt; member
/external/jsoncpp/src/lib_json/
Djson_valueiterator.inl155 UInt ValueIteratorBase::index() const {
160 return Value::UInt(-1);
163 return Value::UInt(ValueInternalArray::indexOf(iterator_.array_));
164 return Value::UInt(-1);
/external/jsoncpp/include/json/
Dvalue.h126 typedef Json::UInt UInt; typedef
149 static const UInt maxUInt;
214 Value(UInt value);
265 UInt asUInt() const;
938 UInt index() const;
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
Djson.h201 typedef unsigned int UInt; typedef
510 typedef Json::UInt UInt; typedef
534 static const UInt maxUInt;
608 Value(UInt value);
671 UInt asUInt() const;
1026 UInt index() const;
1921 std::string JSON_API valueToString(UInt value);
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
Djson.h201 typedef unsigned int UInt; typedef
510 typedef Json::UInt UInt; typedef
534 static const UInt maxUInt;
608 Value(UInt value);
671 UInt asUInt() const;
1026 UInt index() const;
1921 std::string JSON_API valueToString(UInt value);
/external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
Djson.h201 typedef unsigned int UInt; typedef
510 typedef Json::UInt UInt; typedef
534 static const UInt maxUInt;
608 Value(UInt value);
671 UInt asUInt() const;
1026 UInt index() const;
1921 std::string JSON_API valueToString(UInt value);
/external/protobuf/conformance/third_party/jsoncpp/
Djson.h229 typedef unsigned int UInt; typedef
553 typedef Json::UInt UInt; typedef
577 static const UInt maxUInt;
654 Value(UInt value);
721 UInt asUInt() const;
1076 UInt index() const;
1979 std::string JSON_API valueToString(UInt value);
/external/tensorflow/tensorflow/contrib/ffmpeg/default/
Dffmpeg_lib.cc162 template <typename UInt>
163 string LittleEndianData(UInt data) { in LittleEndianData()
164 static_assert(std::is_unsigned<UInt>::value, "UInt must be unsigned"); in LittleEndianData()
166 for (size_t i = 0; i < sizeof(UInt); ++i) { in LittleEndianData()

12345