Searched defs:def (Results 126 - 150 of 340) sorted by relevance

1234567891011>>

/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXAsmPrinter.cpp252 std::string def = "\t.local .align "; local
253 def += utostr(FrameInfo->getObjectAlignment(i));
254 def += " .b8";
255 def += " __local";
256 def += utostr(i);
257 def += "[";
258 def += utostr(FrameInfo->getObjectSize(i)); // Convert to bits
259 def += "]";
260 def += ";";
261 OutStreamer.EmitRawText(Twine(def));
[all...]
/external/tensorflow/tensorflow/compiler/tf2xla/
H A Dxla_compiler_test.cc612 // Attr def
637 NodeDef def; local
641 .Finalize(&def));
643 Node* fill = scope.graph()->AddNode(def, &status);
/external/tensorflow/tensorflow/core/common_runtime/
H A Dconstant_folding.cc248 if (!FindKernelDef(DeviceType(DEVICE_CPU), n->def(), /*def=*/nullptr,
398 NodeDef def; local
399 CHECK(builder.Finalize(&def).ok());
519 NodeDef def; local
520 if (!builder.Finalize(&def).ok()) {
524 if (!FindKernelDef(device_type, def, &kdef, nullptr).ok()) {
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
H A Dgrpc_session_test.cc250 GraphDef def; local
251 test::graph::ToGraphDef(&graph, &def);
255 TF_CHECK_OK(session->Create(def));
318 GraphDef def; local
319 test::graph::ToGraphDef(&graph, &def);
329 SetDevice(&def, a->name(), a_dev.name());
330 SetDevice(&def, b->name(), b_dev.name());
331 SetDevice(&def, c->name(), c_dev.name());
336 TF_CHECK_OK(session->Create(def));
398 GraphDef def; local
433 GraphDef def; local
490 GraphDef def; local
[all...]
/external/tensorflow/tensorflow/core/graph/
H A Dgraph_constructor_test.cc478 def s(t):
795 GraphDef def; local
796 ASSERT_TRUE(protobuf::TextFormat::ParseFromString(pb_ascii, &def));
799 auto s = ImportGraphDef(opts, def, &graph_, nullptr);
893 GraphDef def; local
899 Status s = ImportGraphDef(opts, def, &graph_, nullptr);
930 &def);
934 s = ImportGraphDef(opts, def, &graph_, nullptr);
950 s = ImportGraphDef(opts, def, &graph_, nullptr);
955 s = ImportGraphDef(opts, def,
983 GraphDef def; local
1003 GraphDef def; local
1038 GraphDef def; local
1144 GraphDef def; local
2040 GraphDef def; local
2424 GraphDef def; local
3147 GraphDef def; local
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dremote_fused_graph_execute_utils_test.cc41 static NodeDef* GetNodeDef(const string& name, GraphDef* def) { argument
42 CHECK_NE(def, nullptr);
43 for (NodeDef& node_def : *def->mutable_node()) {
225 GraphDef def; local
227 NAME_A, NODE_A_VAL, NAME_B, NODE_B_VAL, NAME_A_PLUS_B, &def));
236 def, inputs, outputs, false /* initialize_by_zero */, &output_tensors);
246 GraphDef def; local
248 NAME_A, NODE_A_VAL, NAME_B, NODE_B_VAL, NAME_A_PLUS_B, &def));
256 def, inputs, outputs, true /* initialize_by_zero */, &output_tensors);
266 GraphDef def; local
300 GraphDef def; local
343 GraphDef def; local
432 GraphDef def; local
462 GraphDef def; local
[all...]
/external/toybox/kconfig/
H A Dsymbol.c38 void sym_add_default(struct symbol *sym, const char *def) argument
42 prop->expr = expr_alloc_symbol(sym_lookup(def, 1));
231 def_sym = sym->def[S_DEF_USER].val;
310 newval.tri = sym->def[S_DEF_USER].tri;
333 newval.val = sym->def[S_DEF_USER].val;
446 cs->def[S_DEF_USER].val = sym;
455 sym->def[S_DEF_USER].tri = val;
600 oldval = sym->def[S_DEF_USER].val;
604 sym->def[S_DEF_USER].val = val = malloc(size);
608 sym->def[S_DEF_USE
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_winreg.c493 int def)
498 if (val == def) {
694 static void write_int(HKEY hk, const char *field, int value, int def) argument
697 if (value == def)
866 #define INT_DEF(t, def) write_int(netw, #t, ssid->t, def)
867 #define INT_DEFe(t, def) write_int(netw, #t, ssid->eap.t, def)
492 wpa_config_write_reg_dword(HKEY hk, const TCHAR *name, int val, int def) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
H A DDfp.java2133 Dfp def = result;
2137 def = newInstance(getZero());
2138 def.sign = result.sign;
2139 def.nans = QNAN;
2145 def = newInstance(getZero());
2146 def.sign = (byte)(sign*oper.sign);
2147 def.nans = INFINITE;
2152 def = newInstance(getZero());
2153 def.nans = QNAN;
2157 def
2202 trap(int type, String what, Dfp oper, Dfp def, Dfp result) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTAttributeDef.java379 * @param def String representation of the default value for this attribute.
381 void setDefault(String def) argument
383 m_default = def;
/external/e2fsprogs/e2fsck/
H A Dutil.c190 int ask_yn(e2fsck_t ctx, const char * string, int def) argument
212 if (def == 1)
214 else if (def == 0)
245 def = 1;
250 def = 0;
254 def = 2;
258 } else if ((c == 27 || c == ' ' || c == '\n') && (def != -1)) {
263 if (def == 2)
265 else if (def)
272 return def;
275 ask(e2fsck_t ctx, const char * string, int def) argument
[all...]
/external/flatbuffers/src/
H A Didl_gen_go.cpp814 bool SaveType(const Definition &def, const std::string &classcode, argument
818 Namespace& ns = go_namespace_.components.empty() ? *def.defined_namespace : go_namespace_;
823 NamespaceDir(ns) + def.name + ".go";
/external/icu/icu4c/source/test/cintltst/
H A Dcdtrgtst.c131 UDateFormat *def; local
165 def = udat_open(UDAT_PATTERN,UDAT_PATTERN,NULL, NULL, 0, pat, u_strlen(pat), &status);
172 udat_set2DigitYearStart(def, start, &status);
175 if( (udat_get2DigitYearStart(def, &status) != start))
182 got = udat_parse(def, s, u_strlen(s), 0, &status);
183 gotdate=myFormatit(def, got);
184 expdate=myFormatit(def, exp);
195 udat_close(def);
206 UDateFormat* def; local
216 def
[all...]
H A Dcnmdptst.c683 UNumberFormat *def; local
686 def=unum_open(style, NULL,0,NULL,NULL, &status);
692 dvalue=unum_getDoubleAttribute(def, attr);
696 unum_setDoubleAttribute(def, attr, dvalue);
697 if(unum_getDoubleAttribute(def,attr)!=mydata[i])
704 unum_close(def);
/external/icu/icu4c/source/tools/toolutil/
H A Dudbgutil.cpp492 const char *def = uloc_getDefault(); local
493 return uloc_toLanguageTag(def,target,targetCapacity,FALSE,status);
/external/libxkbcommon/xkbcommon/src/xkbcomp/
H A Daction.c777 const struct xkb_mod_set *mods, ExprDef *def,
784 if (def->expr.op != EXPR_ACTION_DECL) {
786 expr_op_type_to_string(def->expr.op));
790 str = xkb_atom_text(ctx, def->action.name);
808 for (arg = def->action.args; arg != NULL;
776 HandleActionDef(struct xkb_context *ctx, ActionsInfo *info, const struct xkb_mod_set *mods, ExprDef *def, union xkb_action *action) argument
H A Dast-build.c246 KeycodeDef *def = malloc(sizeof(*def)); local
247 if (!def)
250 def->common.type = STMT_KEYCODE;
251 def->common.next = NULL;
252 def->name = name;
253 def->value = value;
255 return def;
261 KeyAliasDef *def = malloc(sizeof(*def)); local
276 VModDef *def = malloc(sizeof(*def)); local
291 VarDef *def = malloc(sizeof(*def)); local
307 VarDef *def; local
326 InterpDef *def = malloc(sizeof(*def)); local
342 KeyTypeDef *def = malloc(sizeof(*def)); local
358 SymbolsDef *def = malloc(sizeof(*def)); local
374 GroupCompatDef *def = malloc(sizeof(*def)); local
390 ModMapDef *def = malloc(sizeof(*def)); local
406 LedMapDef *def = malloc(sizeof(*def)); local
422 LedNameDef *def = malloc(sizeof(*def)); local
[all...]
H A Dcompat.c651 HandleInterpBody(CompatInfo *info, VarDef *def, SymInterpInfo *si) argument
657 for (; def; def = (VarDef *) def->common.next) {
658 if (def->name && def->name->expr.op == EXPR_FIELD_REF) {
666 ok = ExprResolveLhs(info->ctx, def->name, &elem, &field, &arrayNdx);
670 ok = SetInterpField(info, si, field, arrayNdx, def->value);
677 HandleInterpDef(CompatInfo *info, InterpDef *def, enum merge_mode merge) argument
683 if (!ResolveStateAndPredicate(def
710 HandleLedMapDef(CompatInfo *info, LedMapDef *def, enum merge_mode merge) argument
[all...]
/external/libxml2/
H A Dlegacy.c988 * @def: the type of default value
997 int type, int def, const xmlChar * defaultValue,
1001 xmlSAX2AttributeDecl(ctx, elem, fullname, type, def, defaultValue,
996 attributeDecl(void *ctx, const xmlChar * elem, const xmlChar * fullname, int type, int def, const xmlChar * defaultValue, xmlEnumerationPtr tree) argument
H A DtestSAX.c468 const xmlChar * name, int type, int def,
476 elem, name, type, def);
479 elem, name, type, def, defaultValue);
467 attributeDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar * elem, const xmlChar * name, int type, int def, const xmlChar * defaultValue, xmlEnumerationPtr tree) argument
/external/mesa3d/src/compiler/nir/
H A Dnir_builder.h94 return &undef->def;
110 return &load_const->def;
347 nir_channel(nir_builder *b, nir_ssa_def *def, unsigned c) argument
350 return nir_swizzle(b, def, swizzle, 1, false);
354 nir_channels(nir_builder *b, nir_ssa_def *def, unsigned mask) argument
364 return nir_swizzle(b, def, swizzle, num_channels, false);
H A Dnir_control_flow.c256 src->src.ssa = &undef->def;
258 list_addtail(&src->src.use_link, &undef->def.uses);
603 replace_ssa_def_uses(nir_ssa_def *def, void *void_impl) argument
609 nir_ssa_undef_instr_create(mem_ctx, def->num_components,
610 def->bit_size);
612 nir_ssa_def_rewrite_uses(def, nir_src_for_ssa(&undef->def));
H A Dnir_from_ssa.c72 * is represented by a combination of a hash table and the "def" parameter
86 nir_ssa_def *def; member in struct:__anon15970
103 while (dom_idx >= 0 && !ssa_def_dominates(dom[dom_idx], node->def))
109 if (node->def->name)
110 fprintf(fp, "ssa_%d /* %s */\n", node->def->index, node->def->name);
112 fprintf(fp, "ssa_%d\n", node->def->index);
114 dom[++dom_idx] = node->def;
120 get_merge_node(nir_ssa_def *def, struct from_ssa_state *state) argument
123 _mesa_hash_table_search(state->merge_node_table, def);
451 create_reg_for_ssa_def(nir_ssa_def *def, nir_function_impl *impl) argument
464 rewrite_ssa_def(nir_ssa_def *def, void *void_state) argument
820 place_phi_read(nir_shader *shader, nir_register *reg, nir_ssa_def *def, nir_block *block) argument
[all...]
H A Dnir_loop_analyze.c44 nir_ssa_def *def; member in struct:__anon15972
59 nir_loop_variable *alu_def; /* The def of the alu-operation */
90 init_loop_def(nir_ssa_def *def, void *void_init_loop_state) argument
93 nir_loop_variable *var = get_loop_var(def, loop_init_state->state);
134 return var->def->parent_instr->type == nir_instr_type_alu;
140 return var->def->parent_instr->type == nir_instr_type_load_const;
146 return var->def->parent_instr->type == nir_instr_type_phi;
150 mark_invariant(nir_ssa_def *def, loop_info_state *state) argument
152 nir_loop_variable *var = get_loop_var(def, state);
166 nir_alu_instr *alu = nir_instr_as_alu(def
276 initialize_ssa_def(nir_ssa_def *def, void *void_state) argument
[all...]
H A Dnir_print.c108 print_ssa_def(nir_ssa_def *def, print_state *state) argument
111 if (def->name != NULL)
112 fprintf(fp, "/* %s */ ", def->name);
113 fprintf(fp, "%s %u ssa_%u", sizes[def->num_components], def->bit_size,
114 def->index);
118 print_ssa_use(nir_ssa_def *def, print_state *state) argument
121 if (def->name != NULL)
122 fprintf(fp, "/* %s */ ", def->name);
123 fprintf(fp, "ssa_%u", def
[all...]

Completed in 587 milliseconds

1234567891011>>