Home
last modified time | relevance | path

Searched refs:v_type (Results 1 – 3 of 3) 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/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);