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

1234567891011>>

/external/tensorflow/tensorflow/core/framework/
H A Dkernel_def_builder_test.cc26 const KernelDef* def = KernelDefBuilder("A").Device(DEVICE_CPU).Build(); local
30 EXPECT_EQ(def->DebugString(), expected.DebugString());
31 delete def;
35 const KernelDef* def = KernelDefBuilder("B") local
45 EXPECT_EQ(def->DebugString(), expected.DebugString());
46 delete def;
48 def = KernelDefBuilder("C")
59 EXPECT_EQ(def->DebugString(), expected.DebugString());
60 delete def;
62 def
76 const KernelDef* def = KernelDefBuilder("E") local
[all...]
H A Dop_segment_test.cc40 NodeDef def; local
44 .Finalize(&def));
45 int32_nodedefs_.push_back(def);
49 .Finalize(&def));
50 float_nodedefs_.push_back(def);
56 EXPECT_EQ(expected.DebugString(), op->def().DebugString());
117 NodeDef def = float_nodedefs_[0]; local
118 Status s = opseg.FindOrCreate("A", def.name(), &op, GetFn(&def));
125 NodeDef def local
[all...]
/external/valgrind/memcheck/tests/
H A Ddemangle.cpp5 class def { class in namespace:abc
19 return (new abc::def<int,typeof(*this)>)->xyzzy(p, 0);
/external/annotation-tools/scene-lib/src/annotations/
H A DAnnotationFactory.java31 public AnnotationBuilder beginAnnotation(AnnotationDef def) { argument
32 return new AnnotationBuilder(def);
40 AnnotationDef def = AnnotationDef.fromClass(a.getClass(), adefs);
41 return new AnnotationBuilder(def);
H A DAnnotation.java30 public final AnnotationDef def; field in class:Annotation
41 assert def != null;
42 assert def.fieldTypes != null;
43 assert def.fieldTypes.keySet() != null;
44 if (! fieldValues.keySet().equals(def.fieldTypes.keySet())) {
46 assert def.fieldTypes.containsKey(s)
47 : String.format("Annotation contains field %s but AnnotationDef does not%n annotation: %s%n def: %s%n", s, this, this.def);
50 // for (String s : def.fieldTypes.keySet()) {
58 AnnotationFieldType aft = def
96 Annotation(AnnotationDef def, Map<String, ? extends Object> fields) argument
181 public final AnnotationDef def() { method in class:Annotation
[all...]
/external/flatbuffers/tests/FlatBuffers.Test/
H A DTestTable.cs32 public bool GetSlot(int slot, bool def) argument
38 return def;
43 public sbyte GetSlot(int slot, sbyte def) argument
49 return def;
54 public byte GetSlot(int slot, byte def) argument
60 return def;
65 public short GetSlot(int slot, short def) argument
71 return def;
76 public ushort GetSlot(int slot, ushort def) argument
82 return def;
87 GetSlot(int slot, int def) argument
98 GetSlot(int slot, uint def) argument
109 GetSlot(int slot, long def) argument
120 GetSlot(int slot, ulong def) argument
131 GetSlot(int slot, float def) argument
142 GetSlot(int slot, double def) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUConfig.java58 * @param def The default value
60 * exist, <code>def</code> is returned.
62 public static String get(String name, String def) { argument
82 val = CONFIG_PROPS.getProperty(name, def);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUConfig.java56 * @param def The default value
58 * exist, <code>def</code> is returned.
60 public static String get(String name, String def) { argument
80 val = CONFIG_PROPS.getProperty(name, def);
/external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/wiki_samples/
H A DTestFile.java12 public int def() { method in class:TestFile
/external/mesa3d/src/compiler/nir/
H A Dnir_lower_passthrough_edgeflags.c33 nir_ssa_def *def; local
46 def = nir_load_var(&b, in);
47 nir_store_var(&b, out, def, 0xf);
H A Dnir_move_vec_src_uses_to_dest.c49 /* Returns true if the given SSA def dominates the instruction. An SSA def is
53 ssa_def_dominates_instr(nir_ssa_def *def, nir_instr *instr) argument
55 if (instr->index <= def->parent_instr->index) {
57 } else if (def->parent_instr->block == instr->block) {
58 return def->parent_instr->index < instr->index;
60 return nir_block_dominates(def->parent_instr->block, instr->block);
H A Dnir_opt_remove_phis.c77 nir_ssa_def *def = NULL; local
98 if (def == NULL) {
99 def = src->src.ssa;
100 mov = get_parent_mov(def);
102 if (src->src.ssa != def && !matching_mov(mov, src->src.ssa)) {
115 assert(def != NULL);
127 def = mov->op == nir_op_imov ?
128 nir_imov_alu(b, mov->src[0], def->num_components) :
129 nir_fmov_alu(b, mov->src[0], def->num_components);
133 nir_ssa_def_rewrite_uses(&phi->dest.ssa, nir_src_for_ssa(def));
[all...]
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qir_validate.c50 struct qinst *def = c->defs[i]; local
52 if (def && def->cond != QPU_COND_ALWAYS)
53 fail_instr(c, def, "SSA def with condition");
/external/clang/test/CodeGen/
H A D2002-02-17-ArgumentAddress.c8 int def(int Y, int Z) { function
/external/libbrillo/brillo/
H A Dmap_utils.h62 const typename T::mapped_type& def) {
65 return def;
59 GetOrDefault( const T& map, typename T::key_type key, const typename T::mapped_type& def) argument
/external/protobuf/php/ext/google/protobuf/
H A Dprotobuf.c14 void add_def_obj(const void* def, zval* value) { argument
15 uint nIndex = (ulong)def & PROTOBUF_G(upb_def_to_php_obj_map).nTableMask;
19 zend_hash_index_update(&PROTOBUF_G(upb_def_to_php_obj_map), (zend_ulong)def,
23 zval* get_def_obj(const void* def) { argument
25 if (zend_hash_index_find(&PROTOBUF_G(upb_def_to_php_obj_map), (zend_ulong)def,
/external/squashfs-tools/squashfs-tools/
H A Dread_file.c48 char *def, *err, *line = NULL; local
127 for(def = line; isspace(*def); def ++);
130 if(*def == '\0')
134 if(*def == '#')
137 res = parse_line(def);
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetSubtargetInfo.h62 virtual void adjustSchedDependency(SUnit *def, SUnit *use, argument
/external/tensorflow/tensorflow/core/common_runtime/
H A Dfunction_testlib.cc52 // Attr def
61 NodeDef def; local
67 TF_CHECK_OK(builder.Finalize(&def));
69 Node* n = scope->graph()->AddNode(def, &status);
/external/tensorflow/tensorflow/core/grappler/optimizers/
H A Dgraph_rewriter.h82 const NodeDef* def; member in struct:tensorflow::grappler::GraphRewriter::NodeInfo
/external/testng/src/main/java/org/testng/internal/annotations/
H A DConverter.java18 public static boolean getBoolean(String tagValue, boolean def) { argument
19 boolean result = def;
26 public static int getInt(String tagValue, int def) { argument
27 int result = def;
34 public static String getString(String tagValue, String def) { argument
35 String result = def;
42 public static long getLong(String tagValue, long def) { argument
43 long result = def;
50 public static String[] getStringArray(String tagValue, String[] def) { argument
51 String[] result = def;
59 getClassArray(String tagValue, Class[] def) argument
[all...]
/external/testng/src/main/java/org/testng/xml/
H A DXmlUtils.java14 public static void setProperty(Properties p, String name, String value, String def) { argument
15 if (! def.equals(value) && value != null) {
/external/fsck_msdos/
H A Dmain.c132 ask(int def, const char *fmt, ...) argument
141 def = 0;
142 if (def)
144 return def;
/external/libvpx/libvpx/
H A Dargs.h24 const struct arg_def *def; member in struct:arg
49 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/
H A D5-2.c169 char *def = "Default"; local
174 stri = def;

Completed in 571 milliseconds

1234567891011>>