/toolchain/binutils/binutils-2.27/elfcpp/ |
elfcpp_swap.h | 108 // defines the type Valtype as the unsigned integer, and 117 typedef uint8_t Valtype; 124 typedef uint16_t Valtype; 131 typedef uint32_t Valtype; 138 typedef uint64_t Valtype; 143 // and target have the same endianness. It defines the type Valtype 145 // which takes an argument of type Valtype and returns the same value, 154 typedef typename Valtype_base<size>::Valtype Valtype; 156 static inline Valtype [all...] |
/external/vulkan-validation-layers/libs/glm/gtx/ |
fast_square_root.inl | 70 template <typename valType, precision P> 71 GLM_FUNC_QUALIFIER valType fastLength 73 detail::tvec2<valType, P> const & x 76 valType sqr = x.x * x.x + x.y * x.y; 80 template <typename valType, precision P> 81 GLM_FUNC_QUALIFIER valType fastLength 83 detail::tvec3<valType, P> const & x 86 valType sqr = x.x * x.x + x.y * x.y + x.z * x.z; 90 template <typename valType, precision P> 91 GLM_FUNC_QUALIFIER valType fastLengt [all...] |
/prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/ |
fast_square_root.inl | 70 template <typename valType, precision P> 71 GLM_FUNC_QUALIFIER valType fastLength 73 detail::tvec2<valType, P> const & x 76 valType sqr = x.x * x.x + x.y * x.y; 80 template <typename valType, precision P> 81 GLM_FUNC_QUALIFIER valType fastLength 83 detail::tvec3<valType, P> const & x 86 valType sqr = x.x * x.x + x.y * x.y + x.z * x.z; 90 template <typename valType, precision P> 91 GLM_FUNC_QUALIFIER valType fastLengt [all...] |
/prebuilts/go/darwin-x86/src/internal/syscall/windows/registry/ |
export_test.go | 9 func (k Key) SetValue(name string, valtype uint32, data []byte) error { 10 return k.setValue(name, valtype, data)
|
/prebuilts/go/linux-x86/src/internal/syscall/windows/registry/ |
export_test.go | 9 func (k Key) SetValue(name string, valtype uint32, data []byte) error { 10 return k.setValue(name, valtype, data)
|
/external/vulkan-validation-layers/libs/glm/detail/ |
intrinsic_vector_relational.inl | 30 //template <typename valType> 38 // detail::type<valType>::is_float || 39 // detail::type<valType>::is_int || 40 // detail::type<valType>::is_uint); 45 //template <typename valType> 53 // detail::type<valType>::is_float || 54 // detail::type<valType>::is_int || 55 // detail::type<valType>::is_uint); 60 //template <typename valType> 68 // detail::type<valType>::is_float || [all...] |
type_gentype.hpp | 47 typename VALTYPE, 55 typedef VALTYPE value_type; 56 typedef VALTYPE & value_reference; 57 typedef VALTYPE * value_pointer; 58 typedef VALTYPE const * value_const_pointer; 65 typedef TYPE<VALTYPE> type; 66 typedef TYPE<VALTYPE> * pointer; 67 typedef TYPE<VALTYPE> const * const_pointer; 68 typedef TYPE<VALTYPE> const * const const_pointer_const; 69 typedef TYPE<VALTYPE> * const pointer_const [all...] |
/prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/ |
intrinsic_vector_relational.inl | 30 //template <typename valType> 38 // detail::type<valType>::is_float || 39 // detail::type<valType>::is_int || 40 // detail::type<valType>::is_uint); 45 //template <typename valType> 53 // detail::type<valType>::is_float || 54 // detail::type<valType>::is_int || 55 // detail::type<valType>::is_uint); 60 //template <typename valType> 68 // detail::type<valType>::is_float || [all...] |
type_gentype.hpp | 47 typename VALTYPE, 55 typedef VALTYPE value_type; 56 typedef VALTYPE & value_reference; 57 typedef VALTYPE * value_pointer; 58 typedef VALTYPE const * value_const_pointer; 65 typedef TYPE<VALTYPE> type; 66 typedef TYPE<VALTYPE> * pointer; 67 typedef TYPE<VALTYPE> const * const_pointer; 68 typedef TYPE<VALTYPE> const * const const_pointer_const; 69 typedef TYPE<VALTYPE> * const pointer_const [all...] |
/external/vulkan-validation-layers/libs/glm/gtc/ |
matrix_transform.inl | 195 template <typename valType> 196 GLM_FUNC_QUALIFIER detail::tmat4x4<valType, defaultp> frustum 198 valType const & left, 199 valType const & right, 200 valType const & bottom, 201 valType const & top, 202 valType const & nearVal, 203 valType const & farVal 206 detail::tmat4x4<valType, defaultp> Result(0); 207 Result[0][0] = (valType(2) * nearVal) / (right - left) [all...] |
/prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtc/ |
matrix_transform.inl | 195 template <typename valType> 196 GLM_FUNC_QUALIFIER detail::tmat4x4<valType, defaultp> frustum 198 valType const & left, 199 valType const & right, 200 valType const & bottom, 201 valType const & top, 202 valType const & nearVal, 203 valType const & farVal 206 detail::tmat4x4<valType, defaultp> Result(0); 207 Result[0][0] = (valType(2) * nearVal) / (right - left) [all...] |
/external/tensorflow/tensorflow/core/kernels/ |
sparse_add_op_test.cc | 98 #define RUN_TEST(VALTYPE) \ 99 TEST_F(SparseAddOpTest, TwoD_AddSparseTensorsWithDiffIndices_##VALTYPE) { \ 100 MakeOp<VALTYPE>(); \ 101 DataType val_dtype = tensorflow::DataTypeToEnum<VALTYPE>::value; \ 110 AddInputFromArray<VALTYPE>(TensorShape({4}), {1, 2, 3, 4}); \ 114 AddInputFromArray<VALTYPE>(TensorShape({2}), {5, 6}); \ 122 AddInputFromArray<VALTYPE>(TensorShape({}), {0}); \ 135 test::FillValues<VALTYPE>(&expected_values, {5, 1, 2, 6, 3, 4}); \ 136 test::ExpectTensorEqual<VALTYPE>(expected_values, *GetOutput(1)); \ 156 #define RUN_TEST(VALTYPE, THRESH) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/ |
MCSymbolWasm.h | 20 SmallVector<wasm::ValType, 1> Returns; 21 SmallVector<wasm::ValType, 4> Params; 43 const SmallVector<wasm::ValType, 1> &getReturns() const { return Returns; } 45 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 49 const SmallVector<wasm::ValType, 4> &getParams() const { return Params; } 51 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/ |
MCSymbolWasm.h | 21 SmallVector<wasm::ValType, 1> Returns; 22 SmallVector<wasm::ValType, 4> Params; 44 const SmallVector<wasm::ValType, 1> &getReturns() const { return Returns; } 46 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 50 const SmallVector<wasm::ValType, 4> &getParams() const { return Params; } 52 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/ |
MCSymbolWasm.h | 21 SmallVector<wasm::ValType, 1> Returns; 22 SmallVector<wasm::ValType, 4> Params; 44 const SmallVector<wasm::ValType, 1> &getReturns() const { return Returns; } 46 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 50 const SmallVector<wasm::ValType, 4> &getParams() const { return Params; } 52 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/ |
MCSymbolWasm.h | 22 SmallVector<wasm::ValType, 1> Returns; 23 SmallVector<wasm::ValType, 4> Params; 50 const SmallVector<wasm::ValType, 1> &getReturns() const { 55 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 60 const SmallVector<wasm::ValType, 4> &getParams() const { 65 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/ |
MCSymbolWasm.h | 22 SmallVector<wasm::ValType, 1> Returns; 23 SmallVector<wasm::ValType, 4> Params; 50 const SmallVector<wasm::ValType, 1> &getReturns() const { 55 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 60 const SmallVector<wasm::ValType, 4> &getParams() const { 65 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/MC/ |
MCSymbolWasm.h | 22 SmallVector<wasm::ValType, 1> Returns; 23 SmallVector<wasm::ValType, 4> Params; 50 const SmallVector<wasm::ValType, 1> &getReturns() const { 55 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 60 const SmallVector<wasm::ValType, 4> &getParams() const { 65 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/MC/ |
MCSymbolWasm.h | 22 SmallVector<wasm::ValType, 1> Returns; 23 SmallVector<wasm::ValType, 4> Params; 50 const SmallVector<wasm::ValType, 1> &getReturns() const { 55 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 60 const SmallVector<wasm::ValType, 4> &getParams() const { 65 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/ |
MCSymbolWasm.h | 20 SmallVector<wasm::ValType, 1> Returns; 21 SmallVector<wasm::ValType, 4> Params; 43 const SmallVector<wasm::ValType, 1> &getReturns() const { return Returns; } 45 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 49 const SmallVector<wasm::ValType, 4> &getParams() const { return Params; } 51 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/MC/ |
MCSymbolWasm.h | 21 SmallVector<wasm::ValType, 1> Returns; 22 SmallVector<wasm::ValType, 4> Params; 44 const SmallVector<wasm::ValType, 1> &getReturns() const { return Returns; } 46 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 50 const SmallVector<wasm::ValType, 4> &getParams() const { return Params; } 52 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/MC/ |
MCSymbolWasm.h | 21 SmallVector<wasm::ValType, 1> Returns; 22 SmallVector<wasm::ValType, 4> Params; 44 const SmallVector<wasm::ValType, 1> &getReturns() const { return Returns; } 46 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 50 const SmallVector<wasm::ValType, 4> &getParams() const { return Params; } 52 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/MC/ |
MCSymbolWasm.h | 22 SmallVector<wasm::ValType, 1> Returns; 23 SmallVector<wasm::ValType, 4> Params; 50 const SmallVector<wasm::ValType, 1> &getReturns() const { 55 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 60 const SmallVector<wasm::ValType, 4> &getParams() const { 65 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/ |
MCSymbolWasm.h | 22 SmallVector<wasm::ValType, 1> Returns; 23 SmallVector<wasm::ValType, 4> Params; 50 const SmallVector<wasm::ValType, 1> &getReturns() const { 55 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 60 const SmallVector<wasm::ValType, 4> &getParams() const { 65 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/ |
MCSymbolWasm.h | 22 SmallVector<wasm::ValType, 1> Returns; 23 SmallVector<wasm::ValType, 4> Params; 50 const SmallVector<wasm::ValType, 1> &getReturns() const { 55 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) { 60 const SmallVector<wasm::ValType, 4> &getParams() const { 65 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
|