/external/tensorflow/tensorflow/python/tools/ |
D | inspect_checkpoint.py | 135 v_type = type(printoptions[k]) 136 if v_type is type(None): 141 v_type(v_str) 142 if v_type is not bool else flags.BooleanParser().parse(v_str))
|
/external/e2fsprogs/ext2ed/ |
D | init.c | 230 void add_new_variable (struct struct_descriptor *ptr,char *v_type,char *v_name) in add_new_variable() argument 241 if (strcmp(v_type, p->name) == 0) { in add_new_variable() 248 if (strncmp(v_type, "char[", 5) == 0) { in add_new_variable() 249 len = atoi(v_type+5); in add_new_variable() 252 printf("Unknown type %s for field %s\n", v_type, v_name); in add_new_variable()
|
D | ext2ed.h | 233 extern void add_new_variable (struct struct_descriptor *descriptor,char *v_type,char *v_name);
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_extensions.cpp | 1107 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1108 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 4 || in ValidateExtInst() 1109 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1127 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1128 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst() 1129 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1145 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1146 if (!_.IsIntVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst() 1147 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1166 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local [all …]
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_extensions.cpp | 1122 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1123 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 4 || in ValidateExtInst() 1124 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1142 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1143 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst() 1144 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1160 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1161 if (!_.IsIntVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst() 1162 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1181 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/val/ |
D | validate_extensions.cpp | 1122 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1123 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 4 || in ValidateExtInst() 1124 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1142 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1143 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst() 1144 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1160 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local 1161 if (!_.IsIntVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst() 1162 _.GetBitWidth(v_type) != 32) { in ValidateExtInst() 1181 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local [all …]
|
/external/rust/crates/protobuf-codegen/src/field/ |
D | mod.rs | 1100 let v_type = as_option.rust_type.elem_type(); in write_if_let_self_field_is_some() localVariable 1101 cb(var, &v_type, w); in write_if_let_self_field_is_some() 1171 let v_type = self.full_storage_iter_elem_type(); in write_for_self_field() localVariable 1173 w.for_stmt(&format!("&{}", self_field), varn, |w| cb(w, &v_type)); in write_for_self_field() 1556 self.write_if_let_self_field_is_some(w, |v, v_type, w| { in write_message_write_field() 1557 self.write_write_element(w, "os", v, v_type); in write_message_write_field() 1561 self.write_for_self_field(w, "v", |w, v_type| { in write_message_write_field() 1562 self.write_write_element(w, "os", "v", v_type); in write_message_write_field() 1577 self.write_for_self_field(w, "v", |w, v_type| { in write_message_write_field() 1583 v_type.into_target(¶m_type, "v", &self.customize) in write_message_write_field() [all …]
|
/external/rust/crates/protobuf-codegen/src/ |
D | message.rs | 169 self.write_match_each_oneof_variant(w, |w, variant, v, v_type| { in write_write_to_with_cached_sizes() 170 variant.field.write_write_element(w, "os", v, v_type); in write_write_to_with_cached_sizes()
|
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/ |
D | prepare_tf.cc | 1085 auto v_type = v.getType().dyn_cast_or_null<RankedTensorType>(); in matchAndRewrite() local 1086 if (!v_type) return true; in matchAndRewrite() 1087 int64_t v_last_dim = v_type.getDimSize(v_type.getRank() - 1); in matchAndRewrite()
|
/external/rust/crates/libc/src/ |
D | psp.rs | 3617 v_type: i32, in sceGuDrawBezier() 3627 v_type: i32, in sceGuDrawSpline() 3640 v_type: i32, in sceGuDrawArrayN() 3649 v_type: i32, in sceGumDrawArray() 3656 v_type: i32, in sceGumDrawArrayN() 3663 v_type: i32, in sceGumDrawBezier() 3670 v_type: i32, in sceGumDrawSpline()
|