Home
last modified time | relevance | path

Searched refs:v_type (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/tools/
Dinspect_checkpoint.py95 v_type = type(printoptions[k])
96 if v_type is type(None):
101 v_type(v_str)
102 if v_type is not bool else flags.BooleanParser().parse(v_str))
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp481 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
482 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 4 || in ValidateExtInst()
483 _.GetBitWidth(v_type) != 32) { in ValidateExtInst()
501 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
502 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst()
503 _.GetBitWidth(v_type) != 32) { in ValidateExtInst()
519 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
520 if (!_.IsIntVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst()
521 _.GetBitWidth(v_type) != 32) { in ValidateExtInst()
540 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp481 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
482 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 4 || in ValidateExtInst()
483 _.GetBitWidth(v_type) != 32) { in ValidateExtInst()
501 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
502 if (!_.IsFloatVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst()
503 _.GetBitWidth(v_type) != 32) { in ValidateExtInst()
519 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
520 if (!_.IsIntVectorType(v_type) || _.GetDimension(v_type) != 2 || in ValidateExtInst()
521 _.GetBitWidth(v_type) != 32) { in ValidateExtInst()
540 const uint32_t v_type = _.GetOperandTypeId(inst, 4); in ValidateExtInst() local
[all …]
/external/e2fsprogs/ext2ed/
Dinit.c230 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()
Dext2ed.h233 extern void add_new_variable (struct struct_descriptor *descriptor,char *v_type,char *v_name);