/external/deqp/modules/gles31/scripts/ |
D | gen-implicit-conversions.py | 340 def __init__(self, name, op, in_type, out_type, reverse=False): argument 349 self.in_type = in_type 393 in_values = IN_VALUES[self.in_type] 399 out.append(valuesToStr("input %s in0" % (self.in_type), self.in_type, in_values)) 406 def __init__(self, name, op, in_type, out_type, reverse=False): argument 407 super(ComparisonsCase, self).__init__(name, op, in_type, out_type, reverse) 430 in_values = IN_VALUES[self.in_type] 436 out.append(valuesToStr("input %s in0" % (self.in_type), self.in_type, in_values)) 443 def __init__(self, name, in_type, out_type, reverse=False, input_in_parens=False): argument 445 self.in_type = in_type [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | cast_op_gpu.cu.cc | 35 #define DEFINE_ALL_FROM(in_type) \ argument 36 DEFINE(in_type, bool); \ 37 DEFINE(in_type, uint8); \ 38 DEFINE(in_type, uint16); \ 39 DEFINE(in_type, uint32); \ 40 DEFINE(in_type, uint64); \ 41 DEFINE(in_type, int8); \ 42 DEFINE(in_type, int16); \ 43 DEFINE(in_type, int32); \ 44 DEFINE(in_type, int64); \ [all …]
|
D | cwise_ops_common.h | 81 typedef typename Functor::in_type Tin; // Input scalar data type. 260 typedef typename Functor::in_type Tin; // Input scalar data type. 291 typedef typename Functor::in_type Tin; // Input scalar data type. 356 typedef typename Functor::in_type Tin; 369 typedef typename Functor::in_type Tin; 379 typename TTypes<typename Functor::in_type, NDIMS>::ConstTensor in0, 381 typename TTypes<typename Functor::in_type, NDIMS>::ConstTensor in1, 417 typedef typename Functor::in_type Tin; 430 typedef typename Functor::in_type Tin; 460 typename TTypes<typename Functor::in_type, NDIMS>::ConstTensor in0, [all …]
|
D | matmul_op.h | 38 in_type; typedef 54 typename MatMulTypes<T>::in_type in0, 55 typename MatMulTypes<T>::in_type in1,
|
D | debug_ops.cc | 142 #define REGISTER_DEBUG_NUMERIC_SUMMARY_V2_GPU(in_type, out_type) \ argument 146 .TypeConstraint<in_type>("T") \ 148 DebugNumericSummaryV2Op<GPUDevice, in_type, out_type>);
|
D | cwise_ops_gpu_common.cu.h | 62 typedef typename Functor::in_type Tin; 72 typedef typename Functor::in_type Tin; 80 typename TTypes<typename Functor::in_type, NDIMS>::ConstTensor in0, 82 typename TTypes<typename Functor::in_type, NDIMS>::ConstTensor in1, 85 typedef typename Functor::in_type T;
|
D | cast_op_test.cc | 65 DataType in_type = DataTypeToEnum<INPUT>::v(); in CheckCast() local 67 MakeOp(in_type, out_type, trunc); in CheckCast()
|
D | cwise_ops.h | 801 typedef T in_type; 809 typedef typename TTypes<in_type>::ConstFlat tin_type; 810 typedef typename TTypes<in_type>::ConstScalar tscalar_type; 1306 typename TTypes<typename Functor::in_type, NDIMS>::ConstTensor in0, 1308 typename TTypes<typename Functor::in_type, NDIMS>::ConstTensor in1,
|
/external/gemmlowp/meta/generators/ |
D | common.py | 74 def SpecializeStream(self, in_type, lanes_count, pack_size, leftovers): argument 76 template_params = [in_type, lanes_count, pack_size, leftovers, self.name] 79 [['const %s*' % in_type, 'in'], ['const %s&' % self.name, 'params'], 80 ['%s*' % in_type, 'out']], 'inline void') 83 self.EmitPack(in_type, lanes_count, pack_size, leftovers) 95 def SpecializeMulKernel(self, in_type, out_type, kernel_m, kernel_n, argument 99 in_type, out_type, self.kernel_name, self.output_stream_name, kernel_m, 104 [['const %s*' % in_type, 'lhs'], ['const %s*' % in_type, 'rhs'], [ 112 self.EmitMultiply(in_type, out_type, kernel_m, kernel_n, pack_size) 123 def SpecializeTransform1DKernel(self, in_type, out_type, kernel_size, argument [all …]
|
D | transform_kernels_common.py | 38 def Check(self, in_type, out_type, kernel_size, leftovers): argument 39 assert in_type is 'uint8_t' 82 def Check(self, in_type, out_type, kernel_size, leftovers): argument 83 assert in_type is 'uint8_t' 151 def Check(self, in_type, out_type, kernel_size, leftovers): argument 152 assert in_type is 'float' 220 def Check(self, in_type, out_type, kernel_size, leftovers): argument 221 assert in_type is 'int32_t' 313 def EmitTransform(self, in_type, out_type, kernel_size, leftovers): argument 315 self.transformation.Check(in_type, out_type, kernel_size, leftovers) [all …]
|
D | streams_common.py | 148 def EmitPack(self, in_type, lanes_count, pack_size, leftovers): argument 150 assert in_type is 'uint8_t' 237 def EmitPack(self, in_type, lanes_count, pack_size, leftovers): argument 239 assert in_type is 'uint8_t'
|
D | quantized_mul_kernels_common.py | 548 def EmitMultiply(self, in_type, out_type, kernel_m, kernel_n, pack_size): argument 549 assert in_type is 'uint8_t'
|
/external/mesa3d/src/compiler/nir/ |
D | nir_opcodes.py | 160 def unop_convert(name, out_type, in_type, const_expr): argument 161 opcode(name, 0, out_type, [0], [in_type], False, "", const_expr) 190 def unop_numeric_convert(name, out_type, in_type, const_expr): argument 191 opcode(name, 0, out_type, [0], [in_type], True, "", const_expr) 513 def binop_convert(name, out_type, in_type, alg_props, const_expr): argument 514 opcode(name, 0, out_type, [0, 0], [in_type, in_type],
|
/external/openssh/ |
D | moduli.c | 583 u_int32_t generator_known, in_tests, in_tries, in_type, in_size; in prime_test() local 639 in_type = strtoul(cp, &cp, 10); in prime_test() 662 switch (in_type) { in prime_test() 664 debug2("%10u: (%u) Sophie-Germain", count_in, in_type); in prime_test() 681 debug2("%10u: (%u)", count_in, in_type); in prime_test()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cast_op_test.py | 208 for in_type in in_types: 210 lo, hi = in_type.min, in_type.max 212 [lo, lo + 1, lo // 2, hi // 2, hi - 1, hi], dtype=in_type)
|
D | constant_op_eager_test.py | 456 for in_type in dtypes: 457 x = np.arange(15).astype(in_type).reshape(*shape)
|
/external/vboot_reference/futility/ |
D | traversal.h | 64 enum futil_file_type in_type; member
|
D | traversal.c | 213 state->in_type = type; in futil_traverse()
|
D | cmd_sign.c | 371 if (state->in_type == FILE_TYPE_UNKNOWN) { in futil_cb_sign_begin() 505 switch (state->in_type) { in futil_cb_sign_end()
|
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
D | scsimain.c | 215 int in_type; member 2199 int in_type = FT_OTHER; in do_scsi_device_read_write() local 2258 in_type = dd_filetype(inf); in do_scsi_device_read_write() 2260 if ((FT_BLOCK & in_type) && do_blk_sgio) in do_scsi_device_read_write() 2261 in_type |= FT_SG; in do_scsi_device_read_write() 2263 if (FT_ST == in_type) { in do_scsi_device_read_write() 2267 } else if (FT_SG & in_type) { in do_scsi_device_read_write() 2281 if (FT_BLOCK & in_type) in do_scsi_device_read_write() 2293 if (do_odir && (FT_BLOCK == in_type)) in do_scsi_device_read_write() 2397 if (FT_SG & in_type) { in do_scsi_device_read_write() [all …]
|
/external/libchrome/base/posix/ |
D | file_descriptor_shuffle_unittest.cc | 24 Action(Type in_type, int in_fd1, int in_fd2 = -1) in Action() 25 : type(in_type), in Action()
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | RNBRemote.h | 296 Packet(PacketEnum in_type, HandlePacketCallback in_normal, in Packet() 299 : type(in_type), normal(in_normal), async(in_async), abbrev(in_abbrev), in Packet()
|
/external/flatbuffers/src/ |
D | idl_parser.cpp | 1694 const auto in_type = e.type.base_type; in ParseSingleValue() local 1706 TRY_ECHECK(kTokenStringConstant, in_type == BASE_TYPE_STRING, in ParseSingleValue() 1710 if (!match && (token_ == kTokenStringConstant) && IsScalar(in_type) && in ParseSingleValue() 1715 kTypeNames[in_type] + ", name: " + (name ? *name : "") + in ParseSingleValue() 1720 if (!match && IsBool(in_type)) { in ParseSingleValue() 1725 TRY_ECHECK(kTokenStringOrIdent, IsBool(in_type), BASE_TYPE_BOOL); in ParseSingleValue() 1730 if (!match && IsInteger(in_type) && !IsBool(in_type) && in ParseSingleValue() 1738 if (!match && (token_ == kTokenStringConstant) && IsScalar(in_type)) { in ParseSingleValue() 1745 TRY_ECHECK(kTokenStringOrIdent, IsFloat(in_type), BASE_TYPE_FLOAT); in ParseSingleValue() 1747 TRY_ECHECK(kTokenStringOrIdent, IsInteger(in_type), BASE_TYPE_INT); in ParseSingleValue() [all …]
|
/external/libchrome/mojo/public/cpp/bindings/lib/ |
D | multiplex_router.cc | 308 explicit Task(Type in_type) : type(in_type) {} in Task()
|
/external/llvm-project/mlir/test/Target/ |
D | openmp-llvm.mlir | 34 %1 = llvm.alloca %0 x !llvm.i32 {in_type = i32, name = "a"} : (!llvm.i64) -> !llvm.ptr<i32>
|