Searched defs:def (Results 151 - 175 of 340) sorted by relevance

1234567891011>>

/external/mesa3d/src/compiler/nir/
H A Dnir_validate.c286 validate_ssa_def(nir_ssa_def *def, validate_state *state) argument
288 validate_assert(state, def->index < state->impl->ssa_alloc);
289 validate_assert(state, !BITSET_TEST(state->ssa_defs_found, def->index));
290 BITSET_SET(state->ssa_defs_found, def->index);
292 validate_assert(state, def->parent_instr == state->instr);
294 validate_assert(state, def->num_components <= 4);
296 list_validate(&def->uses);
297 list_validate(&def->if_uses);
306 _mesa_hash_table_insert(state->ssa_defs, def, def_state);
547 validate_ssa_def(&instr->def, stat
971 postvalidate_ssa_def(nir_ssa_def *def, void *void_state) argument
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3_ra.c65 * (from a use/def perspective) at the 'add' instruction and ignore the
74 * one we consider from use/def perspective when building interference
81 * (see arr->base), which are pre-colored. In the use/def graph direct
82 * access is treated as a single element use/def, and indirect access
83 * is treated as use or def of all array elements. (Only the first
84 * def is tracked, in case of multiple indirect writes, etc.)
247 BITSET_WORD *def; /* variables defined before used in block */ member in struct:ir3_ra_block_data
273 unsigned *def, *use; /* def/use table */ member in struct:ir3_ra_ctx
577 ctx->def
611 #def macro
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_build_util.cpp247 const std::vector<Value *> &def,
252 for (size_t d = 0; d < def.size() && def[d]; ++d)
253 tex->setDef(d, def[d]);
264 BuildUtil::mkQuadop(uint8_t q, Value *def, uint8_t l, Value *src0, Value *src1) argument
266 Instruction *quadop = mkOp2(OP_QUADOP, TYPE_F32, def, src0, src1);
245 mkTex(operation op, TexTarget targ, uint16_t tic, uint16_t tsc, const std::vector<Value *> &def, const std::vector<Value *> &src) argument
/external/mesa3d/src/gallium/state_trackers/omx/
H A Dvid_enc.c352 OMX_PARAM_PORTDEFINITIONTYPE *def = param; local
358 if (def->nPortIndex == OMX_BASE_FILTER_INPUTPORT_INDEX) {
379 priv->frame_rate = def->format.video.xFramerate;
831 OMX_VIDEO_PORTDEFINITIONTYPE *def = &port->sPortParam.format.video; local
851 templat.width = def->nFrameWidth;
852 templat.height = def->nFrameHeight;
892 OMX_VIDEO_PORTDEFINITIONTYPE *def = &port->sPortParam.format.video; local
905 box.width = def->nFrameWidth;
906 box.height = def->nFrameHeight;
910 ptr, def
973 OMX_VIDEO_PORTDEFINITIONTYPE *def = &port->sPortParam.format.video; local
[all...]
/external/mesa3d/src/mesa/program/
H A Dprog_to_nir.c224 nir_ssa_def *def; local
231 def = nir_fmov_alu(b, src, 4);
234 def = nir_fneg(b, def);
261 def = nir_vec4(b, chans[0], chans[1], chans[2], chans[3]);
264 return def;
283 nir_ssa_def *def, unsigned write_mask)
294 mov->src[0].src = nir_src_for_ssa(def);
295 for (unsigned i = def->num_components; i < 4; i++)
296 mov->src[0].swizzle[i] = def
282 ptn_move_dest_masked(nir_builder *b, nir_alu_dest dest, nir_ssa_def *def, unsigned write_mask) argument
301 ptn_move_dest(nir_builder *b, nir_alu_dest dest, nir_ssa_def *def) argument
[all...]
/external/python/cpython2/Python/
H A Dcodecs.c942 PyMethodDef def; member in struct:__anon19614
1014 PyObject *func = PyCFunction_New(&methods[i].def, NULL);
/external/python/cpython3/Modules/
H A D_testmultiphase.c129 PyModuleDef *def = PyModule_GetDef(mod); local
130 if (def == NULL) {
137 mod = PyState_FindModule(def);
143 ret = PyState_AddModule(mod, def);
149 ret = PyState_RemoveModule(def);
255 createfunc_nonmodule(PyObject *spec, PyModuleDef *def) argument
259 if (def != &def_nonmodule && def != &def_nonmodule_with_methods) {
260 PyErr_SetString(PyExc_SystemError, "def does not match");
479 createfunc_null(PyObject *spec, PyModuleDef *def) argument
499 createfunc_raise(PyObject *spec, PyModuleDef *def) argument
520 createfunc_unreported_exception(PyObject *spec, PyModuleDef *def) argument
[all...]
/external/selinux/policycoreutils/secon/
H A Dsecon.c111 static const char *opt_program_name(const char *argv0, const char *def) argument
114 if ((def = strrchr(argv0, '/')))
115 ++def;
117 def = argv0;
120 if ((strlen(def) > strlen("lt-"))
121 && !memcmp("lt-", def, strlen("lt-")))
122 def += 3;
125 return (def);
/external/skia/src/sksl/
H A DSkSLMetalCodeGenerator.cpp983 const FunctionDefinition& def = (const FunctionDefinition&) *e; local
984 if (&def.fDeclaration == &f) {
985 Requirements reqs = this->requirements(*def.fBody);
/external/skia/tools/bookmaker/
H A DspellCheck.cpp47 void childCheck(const Definition* def, const char* start);
133 bool SpellCheck::check(Definition* def) { argument
134 fFileName = def->fFileName;
135 fLineCount = def->fLineCount;
136 string printable = def->printableName();
137 const char* textStart = def->fContentStart;
138 switch (def->fMarkType) {
146 this->wordCheck(def->fName);
157 this->wordCheck(def->fName);
177 this->wordCheck(def
351 childCheck(const Definition* def, const char* start) argument
[all...]
/external/skqp/src/sksl/
H A DSkSLMetalCodeGenerator.cpp983 const FunctionDefinition& def = (const FunctionDefinition&) *e; local
984 if (&def.fDeclaration == &f) {
985 Requirements reqs = this->requirements(*def.fBody);
/external/skqp/tools/bookmaker/
H A DspellCheck.cpp47 void childCheck(const Definition* def, const char* start);
134 bool SpellCheck::check(Definition* def) { argument
135 fFileName = def->fFileName;
136 fLineCount = def->fLineCount;
137 string printable = def->printableName();
138 const char* textStart = def->fContentStart;
139 if (MarkType::kParam != def->fMarkType && MarkType::kConst != def->fMarkType &&
140 MarkType::kPrivate != def->fMarkType && TableState::kNone != fTableState) {
143 switch (def
362 childCheck(const Definition* def, const char* start) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DVirtRegMap.h290 void setVirtIsReMaterialized(unsigned virtReg, MachineInstr *def) { argument
291 ReMatMap[virtReg] = def;
/external/syslinux/com32/lua/src/
H A Dloadlib.c676 const char *envname2, const char *def) {
689 luaL_addstring (&b, def);
696 luaL_addstring (&b, def);
714 const char *envname2, const char *def) {
719 lua_pushstring(L, def); /* use default */
724 luaL_gsub(L, path, AUXMARK, def);
675 setpath(lua_State *L, const char *fieldname, const char *envname1, const char *envname2, const char *def) argument
713 setpath(lua_State *L, const char *fieldname, const char *envname1, const char *envname2, const char *def) argument
/external/tensorflow/tensorflow/core/common_runtime/
H A Dconstant_folding_test.cc336 NodeDef def; local
340 .Finalize(&def));
342 Node* times_two = s.graph()->AddNode(def, &status);
371 NodeDef def; local
374 .Finalize(&def));
376 Node* non_cpu = s.graph()->AddNode(def, &status);
H A Ddirect_session_test.cc231 GraphDef def; local
246 test::graph::ToGraphDef(&graph, &def);
253 ASSERT_FALSE(session->Create(def).ok());
256 def.Clear();
258 test::graph::ToGraphDef(&graph, &def);
260 TF_ASSERT_OK(session->Create(def));
300 GraphDef def; local
317 test::graph::ToGraphDef(&g, &def);
321 TF_ASSERT_OK(session->Create(def));
339 GraphDef def; local
417 GraphDef def; local
460 GraphDef def; local
478 GraphDef def; local
496 GraphDef def; local
512 GraphDef def; local
568 GraphDef def; local
608 GraphDef def; local
645 GraphDef def; local
937 GraphDef def; local
1077 GraphDef def; local
1136 GraphDef def; local
1166 GraphDef def; local
1220 GraphDef def; local
[all...]
/external/tensorflow/tensorflow/core/framework/
H A Dop_kernel_test.cc196 // Try a node def of an op that is registered for a specific type
205 // Try a node def of an op that is registered for a specific type
214 // Try a node def of an op that is only registered for other types.
222 // Try a node def of an op that is registered for both.
395 NodeDef def = CreateNodeDef(op_type, attrs); local
397 def.add_input("a:0");
405 cpu_allocator(), def,
416 TF_EXPECT_OK(SupportedDeviceTypesForNode(DeviceTypes(), def, &devices));
433 const NodeDef def = CreateNodeDef(op_type, attrs); local
439 cpu_allocator(), def,
466 NodeDef def = CreateNodeDef(op_type, attrs); local
[all...]
H A Dshape_inference_test.cc68 static const int kVersion = 0; // used for graph-def version.
74 NodeDef def; local
78 .Finalize(&def);
79 InferenceContext c(kVersion, &def, op_def, {S({1, 5}), S({2, 5}), S({1, 3})},
115 NodeDef def; local
116 InferenceContext c(kVersion, &def, MakeOpDef(1, 1), {Unknown()}, {}, {}, {});
128 NodeDef def; local
129 def.set_name("foo");
130 def.set_op("foo_op");
131 InferenceContext c(kVersion, &def, MakeOpDe
165 NodeDef def; local
256 NodeDef def; local
297 NodeDef def; local
311 NodeDef def; local
350 NodeDef def; local
389 NodeDef def; local
428 NodeDef def; local
469 NodeDef def; local
534 NodeDef def; local
581 NodeDef def; local
651 NodeDef def; local
760 NodeDef def; local
819 NodeDef def; local
894 NodeDef def; local
921 NodeDef def; local
953 NodeDef def; local
979 NodeDef def; local
991 NodeDef def; local
1005 NodeDef def; local
1018 NodeDef def; local
1029 NodeDef def; local
1045 NodeDef def; local
1121 NodeDef def; local
1131 NodeDef def; local
1150 NodeDef def; local
1164 NodeDef def; local
1200 NodeDef def; local
1214 NodeDef def; local
1226 NodeDef def; local
1240 NodeDef def; local
1252 NodeDef def; local
1278 NodeDef def; local
1292 NodeDef def; local
1355 NodeDef def; local
1407 NodeDef def; local
1457 NodeDef def; local
1510 NodeDef def; local
1524 NodeDef def; local
1573 NodeDef def; local
1611 NodeDef def; local
1722 NodeDef def; local
[all...]
/external/tensorflow/tensorflow/core/graph/
H A Dgraph.cc104 strings::StrAppend(&ret, " def:{", SummarizeNode(*this), "}}");
142 const NodeDef& Node::def() const { return props_->node_def; } function in class:tensorflow::Node
155 AttrSlice Node::attrs() const { return AttrSlice(def()); }
158 return def().input();
161 const string& Node::requested_device() const { return def().device(); }
278 NodeDef def; local
279 def.set_name("_SOURCE");
280 def.set_op("NoOp");
282 Node* source = AddNode(def, &status);
286 def
[all...]
/external/tensorflow/tensorflow/core/kernels/hexagon/
H A Dgraph_transferer_test.cc149 GraphDef def; local
150 TF_CHECK_OK(root.ToGraphDef(&def));
151 return def;
168 GraphDef def; local
169 TF_CHECK_OK(root.ToGraphDef(&def));
170 return def;
189 GraphDef def; local
190 TF_CHECK_OK(root.ToGraphDef(&def));
191 return def;
266 GraphDef def local
299 GraphDef def = CreateAddGraphDef(); local
316 GraphDef def = CreateConvGraphDef(); local
342 GraphDef def = CreatePoolGraphDef(); local
401 GraphDef def = CreateAddGraphDef(); local
[all...]
/external/toybox/kconfig/
H A Dexpr.h77 struct symbol_value def[4]; member in struct:symbol
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_vp9.cc38 uint8_t TemporalIdxField(const RTPVideoHeaderVP9& hdr, uint8_t def) { argument
39 return (hdr.temporal_idx == kNoTemporalIdx) ? def : hdr.temporal_idx;
42 uint8_t SpatialIdxField(const RTPVideoHeaderVP9& hdr, uint8_t def) { argument
43 return (hdr.spatial_idx == kNoSpatialIdx) ? def : hdr.spatial_idx;
46 int16_t Tl0PicIdxField(const RTPVideoHeaderVP9& hdr, uint8_t def) { argument
47 return (hdr.tl0_pic_idx == kNoTl0PicIdx) ? def : hdr.tl0_pic_idx;
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_file.c489 static void write_int(FILE *f, const char *field, int value, int def) argument
491 if (value == def)
738 #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
739 #define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
/external/clang/lib/CodeGen/
H A DCGVTables.cpp737 const FunctionDecl *def = nullptr; local
738 if (keyFunction->hasBody(def))
739 keyFunction = cast<CXXMethodDecl>(def);
744 assert((def || CodeGenOpts.OptimizationLevel > 0) &&
747 if (!def && CodeGenOpts.OptimizationLevel > 0)
/external/clang/test/CodeGenCXX/
H A Ddllexport.cpp222 // MSC-DAG: define dllexport void @"\01?def@@YAXXZ"()
224 __declspec(dllexport) void def() {} function

Completed in 1661 milliseconds

1234567891011>>