/external/tensorflow/tensorflow/c/ |
H A D | while_loop_test.cc | 119 GraphDef def; local 120 bool success = def.ParseFromArray(buf->data, buf->length); 123 return def.DebugString(); 321 "Requested return tensor 'p0:0' not found in graph def"); 361 "Requested return tensor 'p0:0' not found in graph def"); 392 "Requested return tensor 'p0:0' not found in graph def");
|
/external/tensorflow/tensorflow/compiler/jit/ |
H A D | xla_device.cc | 299 KernelDef* def = new KernelDef(*jit_def); local 300 def->set_device_type(device); 302 new kernel_factory::OpKernelRegistrar(def, "XlaDeviceDummyOp",
|
/external/tensorflow/tensorflow/core/debug/ |
H A D | grpc_session_debug_test.cc | 239 GraphDef def; local 240 test::graph::ToGraphDef(&graph, &def); 247 SetDevice(&def, a->name(), a_dev.name()); 248 SetDevice(&def, b->name(), b_dev.name()); 250 Status s = session->Create(def);
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
H A D | master_test.cc | 63 Status CreateSession(const GraphDef& def, string* handle, argument 67 *(req.mutable_graph_def()) = def; 79 Status ExtendSession(const string& handle, const GraphDef& def, argument 84 *(req.mutable_graph_def()) = def; 140 GraphDef def; // Empty. local 143 TF_ASSERT_OK(CreateSession(def, &handle, &initial_version)); 159 GraphDef def; // Empty. local 162 TF_ASSERT_OK(CreateSession(def, &s1, &initial_version1)); 163 TF_ASSERT_OK(CreateSession(def, &s2, &initial_version2)); 380 GraphDef def; local [all...] |
/external/tensorflow/tensorflow/core/framework/ |
H A D | dataset.cc | 151 FunctionDefLibrary def; local 152 *def.add_function() = *f_def; 155 GradientDef* g_def = def.add_gradient(); 159 TF_RETURN_IF_ERROR(b_->AddFunctionLibrary(def));
|
/external/tensorflow/tensorflow/core/grappler/ |
H A D | grappler_item_builder_test.cc | 40 GraphDef *def, CollectionDef *fetches, 64 TF_CHECK_OK(scope.ToGraphDef(def)); 77 std::unique_ptr<GrapplerItem> CreateGrapplerItem(const GraphDef &def, argument 82 *meta_def.mutable_graph_def() = def; 111 GraphDef def; local 114 SampleSumSymbolicGradientGraphdef(&def, &fetches, &ops_of_inline); 117 std::unique_ptr<GrapplerItem> with_inline = CreateGrapplerItem(def, fetches); 292 // Attr def 415 // Attr def 428 // attr def 39 SampleSumSymbolicGradientGraphdef( GraphDef *def, CollectionDef *fetches, std::vector<string> *names_of_ops_of_inline) argument [all...] |
/external/tensorflow/tensorflow/core/profiler/internal/ |
H A D | tfprof_stats.cc | 32 bool CreateRunMetadataNode(const string& name, NodeDef* def) { argument 40 def->set_name(name); 44 def->set_op(name); 293 NodeDef def; local 294 if (CreateRunMetadataNode(name, &def)) { 296 new TFGraphNode(&def, nodes_map_.size(), &nodes_map_));
|
/external/testng/src/main/java/org/testng/internal/annotations/ |
H A D | JDK15TagFactory.java | 465 Default<T> def) { 468 if (!def.isDefault(methodValue)) { 477 if (!def.isDefault(result)) { 463 findInherited(T methodValue, Class<?> cls, Class<? extends Annotation> annotationClass, String methodName, Default<T> def) argument
|
/external/toybox/kconfig/ |
H A D | conf.c | 67 static void conf_askvalue(struct symbol *sym, const char *def) argument 79 printf("%s\n", def); 91 printf("%s\n", def); 98 printf("%s\n", def); 107 printf("%s\n", def); 117 printf("%s\n", def); 174 const char *def, *help; local 179 def = sym_get_string_value(sym); 181 printf("[%s] ", def); 182 conf_askvalue(sym, def); 313 int cnt, def; local [all...] |
H A D | confdata.c | 94 int conf_read_simple(const char *name, int def) argument 138 def_flags = SYMBOL_DEF << def; 148 if (sym->def[def].val) 149 free(sym->def[def].val); 151 sym->def[def].val = NULL; 152 sym->def[def] [all...] |
/external/annotation-tools/scene-lib/test/annotations/tests/executable/ |
H A D | TestSceneLib.java | 94 private Annotation createEmptyAnnotation(AnnotationDef def) { argument 95 return new Annotation(def, Collections.<String, Object> emptyMap()); 264 assertEquals("p2.A", aa.def().name); 341 if (anno.def.name.equals(name)) { 373 ab3.addScalarField("fieldOne", new AnnotationAFT(a1.def()), a1); 374 ab3.addScalarField("fieldTwo", new AnnotationAFT(a2.def()), a2);
|
/external/e2fsprogs/e2fsck/ |
H A D | problem.c | 2338 int ask (e2fsck_t ctx, const char * string, int def) argument
|
/external/fio/ |
H A D | parse.h | 64 const char *def; /* default setting */ member in struct:fio_option
|
/external/flatbuffers/include/flatbuffers/ |
H A D | reflection.h | 271 T def; local 273 def = GetFieldDefaultI<T>(field); 276 def = GetFieldDefaultF<T>(field); 278 return table->SetField(field.offset(), val, def);
|
/external/flatbuffers/src/ |
H A D | idl_gen_grpc.cpp | 269 const Definition *def = parser_.services_.vec[i]; local 270 p.package_name = LastNamespacePart(*(def->defined_namespace)); 272 std::string filename = NamespaceDir(*def->defined_namespace) + def->name + "_grpc.go";
|
H A D | idl_gen_php.cpp | 85 bool SaveType(const Definition &def, const std::string &classcode, argument 90 BeginFile(FullNamespace("\\", *def.defined_namespace), 94 std::string filename = NamespaceDir(*def.defined_namespace) + 95 def.name + ".php";
|
H A D | idl_gen_python.cpp | 87 code += Indent + "def GetRootAs"; 315 code += "def Create" + struct_def.name; 383 code += "def " + struct_def.name + "Start"; 396 code += "def " + struct_def.name + "Add" + MakeCamel(field.name); 419 code += "def " + struct_def.name + "Start"; 434 code += "def " + struct_def.name + "End"; 443 code += Indent + "def "; 675 bool SaveType(const Definition &def, const std::string &classcode, argument 680 auto &namespaces = def.defined_namespace->components; 689 BeginFile(LastNamespacePart(*def [all...] |
/external/libxkbcommon/xkbcommon/src/xkbcomp/ |
H A D | keycodes.c | 251 HandleAliasDef(KeyNamesInfo *info, KeyAliasDef *def, enum merge_mode merge); 297 KeyAliasDef def; local 299 def.merge = (merge == MERGE_DEFAULT ? alias->merge : merge); 300 def.alias = alias->alias; 301 def.real = alias->real; 303 if (!HandleAliasDef(into, &def, def.merge)) 389 HandleAliasDef(KeyNamesInfo *info, KeyAliasDef *def, enum merge_mode merge) argument 394 if (old->alias == def->alias) { 395 if (def 454 HandleLedNameDef(KeyNamesInfo *info, LedNameDef *def, enum merge_mode merge) argument [all...] |
H A D | types.c | 576 HandleKeyTypeBody(KeyTypesInfo *info, VarDef *def, KeyTypeInfo *type) argument 582 for (; def; def = (VarDef *) def->common.next) { 583 ok = ExprResolveLhs(info->ctx, def->name, &elem, &field, 595 ok = SetKeyTypeField(info, type, field, arrayNdx, def->value); 602 HandleKeyTypeDef(KeyTypesInfo *info, KeyTypeDef *def, enum merge_mode merge) argument 606 .merge = (def->merge == MERGE_DEFAULT ? merge : def->merge), 607 .name = def 700 KeyTypeInfo *def = &darray_item(info->types, i); local [all...] |
/external/libxml2/ |
H A D | testHTML.c | 262 int type, int def, const xmlChar *defaultValue, 266 elem, name, type, def, defaultValue); 261 attributeDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *elem, const xmlChar *name, int type, int def, const xmlChar *defaultValue, xmlEnumerationPtr tree ATTRIBUTE_UNUSED) argument
|
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonNewValueJump.cpp | 129 // %D0<def> = Hexagon_S2_lsr_r_p %D0<kill>, %R2<kill> 130 // %R0<def> = KILL %R0, %D0<imp-use,kill> 131 // %P0<def> = CMPEQri %R0<kill>, 0 137 // Make sure there there is no 'def' or 'use' of any of the uses of 192 // %D0<def> = Hexagon_S2_lsr_r_p %D0<kill>, %R2<kill> 193 // %R0<def> = KILL %R0, %D0<imp-use,kill> 194 // %P0<def> = CMPEQri %R0<kill>, 0 202 // The following pseudo Hexagon instructions sets "use" and "def" 247 MachineInstr *def = MRI.getVRegDef(cmpOp2); local 248 if (def [all...] |
/external/perfetto/src/traced/probes/filesystem/ |
H A D | inode_file_data_source.cc | 40 uint32_t OrDefault(uint32_t value, uint32_t def) { argument 41 return value ? value : def;
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
H A D | javanano_helpers.cc | 284 string def = field->DebugString(); local 285 string::size_type first_line_end = def.find_first_of('\n'); 286 printer->Print("// $def$\n", 287 "def", def.substr(0, first_line_end)); 291 def.find('\n', second_line_start) - second_line_start; 292 printer->Print("// $def$\n", 293 "def", def.substr(second_line_start, second_line_length));
|
/external/python/cpython3/Objects/ |
H A D | moduleobject.c | 32 PyModuleDef_Init(struct PyModuleDef* def) argument 36 if (def->m_base.m_index == 0) { 38 Py_REFCNT(def) = 1; 39 Py_TYPE(def) = &PyModuleDef_Type; 40 def->m_base.m_index = max_module_number; 42 return (PyObject*)def; 227 PyModule_FromDefAndSpec2(struct PyModuleDef* def, PyObject *spec, int module_api_version) argument 237 PyModuleDef_Init(def); 252 if (def->m_size < 0) { 260 for (cur_slot = def 351 PyModule_ExecDef(PyObject *module, PyModuleDef *def) argument [all...] |
/external/python/cpython3/Python/ |
H A D | pystate.c | 287 _PyState_AddModule(PyObject* module, struct PyModuleDef* def) argument 290 if (!def) { 294 if (def->m_slots) { 305 while(PyList_GET_SIZE(state->modules_by_index) <= def->m_base.m_index) 310 def->m_base.m_index, module); 314 PyState_AddModule(PyObject* module, struct PyModuleDef* def) argument 318 if (!def) { 322 index = def->m_base.m_index; 331 return _PyState_AddModule(module, def); 335 PyState_RemoveModule(struct PyModuleDef* def) argument [all...] |