Searched defs:defs (Results 1 - 25 of 48) sorted by relevance

12

/external/python/cpython2/Tools/scripts/
H A Difdef.py32 defs = [] variable
39 defs.append(a)
79 if word in defs:
H A Dparseentities.py35 def writefile(f,defs):
38 items = defs.items()
63 defs = parse(text) variable
64 writefile(outfile,defs)
/external/python/cpython3/Tools/scripts/
H A Difdef.py32 defs = [] variable
39 defs.append(a)
79 if word in defs:
H A Dparseentities.py34 def writefile(f,defs):
37 items = sorted(defs.items())
61 defs = parse(text) variable
62 writefile(outfile,defs)
/external/annotation-tools/scene-lib/src/annotations/el/
H A DDefCollector.java25 private final Set<AnnotationDef> defs; field in class:DefCollector
36 defs = new LinkedHashSet<AnnotationDef>();
45 for (AnnotationDef def : defs) {
67 if (defs.contains(d)) {
72 defs.add(d);
78 defs.remove(oldD);
79 defs.add(ud);
84 if (defs.contains(d)) {
97 // TODO: In the future we want to add the defs of meta-annotations
111 if (defs
[all...]
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_def_use.cpp38 void def_use::process_phi(container_node *c, bool defs, bool uses) { argument
44 if (defs)
49 void def_use::run_on(node* n, bool defs) { argument
62 if (defs)
66 } else if (is_region & defs) {
75 run_on(*I, defs);
82 process_phi(r->phi, defs, !defs);
83 if (r->loop_phi && !defs)
/external/skia/gn/
H A Dgn_to_bp.py262 defs = gn_to_bp_utils.GetArchSources(os.path.join(here, 'opts.gni')) variable
281 'arm_srcs': bpfmt(16, defs['armv7']),
282 'arm_neon_srcs': bpfmt(20, defs['neon']),
283 'arm64_srcs': bpfmt(16, defs['arm64'] +
284 defs['crc32']),
285 'none_srcs': bpfmt(16, defs['none']),
286 'x86_srcs': bpfmt(16, defs['sse2'] +
287 defs['ssse3'] +
288 defs['sse41'] +
289 defs['sse4
[all...]
/external/skia/tools/skqp/
H A Dgn_to_bp.py182 defs = gn_to_bp_utils.GetArchSources(os.path.join(skia_gn_dir, 'opts.gni')) variable
205 'arm_srcs': bpfmt(16, defs['armv7']),
206 'arm_neon_srcs': bpfmt(20, defs['neon']),
207 'arm64_srcs': bpfmt(16, defs['arm64'] +
208 defs['crc32']),
209 'none_srcs': bpfmt(16, defs['none']),
210 'x86_srcs': bpfmt(16, defs['sse2'] +
211 defs['ssse3'] +
212 defs['sse41'] +
213 defs['sse4
[all...]
/external/skqp/gn/
H A Dgn_to_bp.py257 defs = gn_to_bp_utils.GetArchSources(os.path.join(here, 'opts.gni')) variable
276 'arm_srcs': bpfmt(16, defs['armv7']),
277 'arm_neon_srcs': bpfmt(20, defs['neon']),
278 'arm64_srcs': bpfmt(16, defs['arm64'] +
279 defs['crc32']),
280 'none_srcs': bpfmt(16, defs['none']),
281 'x86_srcs': bpfmt(16, defs['sse2'] +
282 defs['ssse3'] +
283 defs['sse41'] +
284 defs['sse4
[all...]
/external/skqp/tools/skqp/
H A Dgn_to_bp.py184 defs = gn_to_bp_utils.GetArchSources(os.path.join(skia_gn_dir, 'opts.gni')) variable
207 'arm_srcs': bpfmt(16, defs['armv7']),
208 'arm_neon_srcs': bpfmt(20, defs['neon']),
209 'arm64_srcs': bpfmt(16, defs['arm64'] +
210 defs['crc32']),
211 'none_srcs': bpfmt(16, defs['none']),
212 'x86_srcs': bpfmt(16, defs['sse2'] +
213 defs['ssse3'] +
214 defs['sse41'] +
215 defs['sse4
[all...]
/external/libvpx/libvpx/
H A Dargs.c90 void arg_show_usage(FILE *fp, const struct arg_def *const *defs) { argument
93 for (; *defs; defs++) {
94 const struct arg_def *def = *defs;
/external/tensorflow/tensorflow/core/framework/
H A Dop_def_util_test.cc429 const std::vector<OpDef::AttrDef>& defs) {
431 for (const OpDef::AttrDef& def : defs) {
428 Rep( const std::vector<OpDef::AttrDef>& defs) argument
/external/mesa3d/src/compiler/nir/
H A Dnir_phi_builder.c65 /* Array of SSA defs, indexed by block. For each block, this array has has
76 * one of the defs provided by nir_phi_builder_value_set_blocK_def().
78 nir_ssa_def *defs[0]; member in struct:nir_phi_builder_value
109 unsigned bit_size, const BITSET_WORD *defs)
114 val = rzalloc_size(pb, sizeof(*val) + sizeof(val->defs[0]) * pb->num_blocks);
124 BITSET_FOREACH_SET(i, tmp, defs, pb->num_blocks) {
146 if (val->defs[next->index] == NULL) {
151 val->defs[next->index] = NEEDS_PHI;
168 val->defs[block->index] = def;
179 while (dom && val->defs[do
108 nir_phi_builder_add_value(struct nir_phi_builder *pb, unsigned num_components, unsigned bit_size, const BITSET_WORD *defs) argument
[all...]
H A Dnir_validate.c46 * equivalent to the uses and defs in nir_register, but built up by the
49 struct set *uses, *if_uses, *defs; member in struct:__anon15992
266 _mesa_set_add(reg_state->defs, dest);
865 list_validate(&reg->defs);
873 reg_state->defs = _mesa_set_create(reg_state, _mesa_hash_pointer,
920 struct set_entry *entry = _mesa_set_search(reg_state->defs, src);
922 _mesa_set_remove(reg_state->defs, entry);
925 if (reg_state->defs->entries != 0) {
926 printf("extra entries in register defs:\n");
928 set_foreach(reg_state->defs, entr
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dcodegen.py113 defs = None
118 defs = self.write_toplevel()
144 if defs is not None:
145 for node in defs:
434 definitions for defs and/or name lookup within the
449 # collection of all defs available to us in this scope
450 comp_idents = dict([(c.funcname, c) for c in identifiers.defs])
919 # remove defs that are within the <%call> from the
994 # top level defs that are available
1020 # closure defs tha
1043 def defs(self): member in class:_Identifiers
[all...]
/external/protobuf/php/ext/google/protobuf/
H A Ddef.c166 upb_def **defs = emalloc(sizeof(upb_def *) * num); local
172 defs[i] = (upb_def *)desc->msgdef;
173 validate_msgdef((const upb_msgdef *)defs[i++]);
176 CHECK_UPB(upb_symtab_add(self->symtab, (upb_def **)defs, num, NULL, &status),
177 "Unable to add defs to DescriptorPool");
186 FREE(defs);
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dprotobuf.h154 upb_def** defs; // used only while finalizing member in struct:Builder
518 // Global map from upb {msg,enum}defs to wrapper Descriptor/EnumDescriptor
/external/v8/tools/turbolizer/
H A Dgraph-view.js101 var defs = svg.append('svg:defs'); variable
102 defs.append('svg:marker')
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementDef.java50 * @param elements An array of allowed child element defs, or null.
51 * @param attributes An array of allowed attribute defs, or null.
78 * @param elements An array of allowed child element defs, or null.
79 * @param attributes An array of allowed attribute defs, or null.
109 * @param elements An array of allowed child element defs, or null.
110 * @param attributes An array of allowed attribute defs, or null.
133 * @param elements An array of allowed child element defs, or null.
134 * @param attributes An array of allowed attribute defs, or null.
161 * @param elements An array of allowed child element defs, or null.
162 * @param attributes An array of allowed attribute defs, o
431 setElements(XSLTElementDef[] defs) argument
[all...]
/external/annotation-tools/scene-lib/src/annotations/io/
H A DIndexFileParser.java104 private final HashMap<String, AnnotationDef> defs; field in class:IndexFileParser
506 AnnotationDef d = defs.get(name);
509 // System.err.printf(" defs contains %d entries%n", defs.size());
510 // for (Map.Entry<String,AnnotationDef> entry : defs.entrySet()) {
511 // System.err.printf(" defs entry: %s => %s%n", entry.getKey(), entry.getValue());
601 AnnotationDef ad = defs.get(name);
680 if (defs.containsKey(ad.name)) {
684 defs.put(ad.name, ad);
687 if (defs
[all...]
/external/libxkbcommon/xkbcommon/src/xkbcomp/
H A Dast-build.c512 XkbFileCreate(enum xkb_file_type type, char *name, ParseCommon *defs, argument
525 file->defs = defs;
542 ParseCommon *defs = NULL; local
555 defs = AppendStmt(defs, &file->common);
558 file = XkbFileCreate(FILE_TYPE_KEYMAP, NULL, defs, 0);
565 FreeXkbFile((XkbFile *) defs);
698 FreeXkbFile((XkbFile *) file->defs);
706 FreeStmt(file->defs);
[all...]
H A Dast.h343 ParseCommon *defs; member in struct:__anon13360
/external/ltp/testcases/network/stress/ns-tools/
H A Dns-traffic.h146 struct nd_neighbor_solicit defs; member in struct:neighbor_sol
152 struct nd_neighbor_advert defs; member in struct:neighbor_adv
158 struct nd_redirect defs; member in struct:neighbor_redirect
/external/mesa3d/src/gallium/tests/trivial/
H A Dcompute.c99 preprocess_prog(struct context *ctx, const char *src, const char *defs) argument
117 defs ? defs : "", tmp);
144 const char *src, const char *defs)
155 char *psrc = preprocess_prog(ctx, src, defs);
142 init_prog(struct context *ctx, unsigned local_sz, unsigned private_sz, unsigned input_sz, const char *src, const char *defs) argument
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineSpecConstantTests.cpp736 const CaseDefinition defs[] = local
798 for (int defNdx = 0; defNdx < DE_LENGTH_OF_ARRAY(defs); ++defNdx)
799 testGroup->addChild(new SpecConstantTest(testCtx, shaderStage, defs[defNdx]));
809 const CaseDefinition defs[] = local
895 for (int defNdx = 0; defNdx < DE_LENGTH_OF_ARRAY(defs); ++defNdx)
896 testGroup->addChild(new SpecConstantTest(testCtx, shaderStage, defs[defNdx]));
925 const CaseDefinition defs[] = local
1004 for (int defNdx = 0; defNdx < DE_LENGTH_OF_ARRAY(defs); ++defNdx)
1005 testGroup->addChild(new SpecConstantTest(testCtx, VK_SHADER_STAGE_COMPUTE_BIT, defs[defNdx]));
1015 const CaseDefinition defs[] local
1050 const CaseDefinition defs[] = local
[all...]

Completed in 1142 milliseconds

12