Searched defs:def (Results 26 - 50 of 340) sorted by relevance

1234567891011>>

/external/one-true-awk/
H A Dmaketab.c119 char buf[200], name[200], def[200]; local
134 n = sscanf(buf, "%1c %s %s %d", &c, def, name, &tok);
135 if (c != '#' || (n != 4 && strcmp(def,"define") != 0)) /* not a valid #define */
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dprotobuf.c38 // This is a hash table from def objects (encoded by converting pointers to
45 void add_def_obj(const void* def, VALUE value) { argument
46 rb_hash_aset(upb_def_to_ruby_obj_map, ULL2NUM((intptr_t)def), value);
49 VALUE get_def_obj(const void* def) { argument
50 return rb_hash_aref(upb_def_to_ruby_obj_map, ULL2NUM((intptr_t)def));
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowSystemProperties.java23 public static String native_get(String key, String def) { argument
25 return value == null ? def : value;
29 public static int native_get_int(String key, int def) { argument
31 return stringValue == null ? def : Integer.parseInt(stringValue);
35 public static long native_get_long(String key, long def) { argument
37 return stringValue == null ? def : Long.parseLong(stringValue);
41 public static boolean native_get_boolean(String key, boolean def) { argument
44 return def;
/external/skqp/tools/bookmaker/
H A DfiddleParser.cpp10 static Definition* find_fiddle(Definition* def, const string& name) { argument
11 if (MarkType::kExample == def->fMarkType && name == def->fFiddle) {
12 return def;
14 for (auto& child : def->fChildren) {
28 Definition* def = find_fiddle(topic.second, name); local
29 if (def) {
30 return def;
H A Dcataloger.cpp121 bool Catalog::textOut(Definition* def, const char* stdOutStart, argument
124 if (!def->exampleToScript(&result, Definition::ExampleOptions::kText)) {
141 const Definition* stdOut = def->hasChild(MarkType::kStdOut);
/external/syslinux/com32/chain/
H A Doptions.c46 addr_t def)
53 offval = def;
54 ipval = def;
173 opt.sect = true; /* by def. load sector */
174 opt.maps = true; /* by def. map sector */
175 opt.hand = true; /* by def. prepare handover */
176 opt.brkchain = false; /* by def. do chainload */
177 opt.piflags = PIF_STRICT; /* by def. be strict, but ignore disk sizes */
42 soi_s2n(char *ptr, addr_t *seg, addr_t *off, addr_t *ip, addr_t def) argument
/external/tensorflow/tensorflow/core/framework/
H A Dop_def_builder.h40 OpRegistrationData(const OpDef& def) : op_def(def) {} argument
41 OpRegistrationData(const OpDef& def, const OpShapeInferenceFn& fn, argument
43 : op_def(def), shape_inference_fn(fn), is_function_op(is_function) {}
H A Dop_def_builder_test.cc31 static void CanonicalizeAttrTypeListOrder(OpDef* def) { argument
32 for (int i = 0; i < def->attr_size(); i++) {
33 AttrValue* a = def->mutable_attr(i)->mutable_allowed_values();
/external/tensorflow/tensorflow/core/profiler/internal/advisor/
H A Dtfprof_advisor_test.cc44 NodeDef* def = node_defs_.back().get(); local
46 def->set_name(name);
47 def->set_op(type);
49 (*def->mutable_attr())[attr.first].set_s(attr.second);
51 std::unique_ptr<TFGraphNode> node(new TFGraphNode(def, -1, nullptr));
/external/testng/src/main/java/org/testng/internal/
H A DTestNGProperty.java16 public TestNGProperty(String clName, String name, String doc, String def) { argument
17 init(clName, name, doc, def);
20 public TestNGProperty(String name, String doc, String def) { argument
21 init(name, name, doc, def);
24 private void init(String clName, String name, String doc, String def) { argument
28 m_default = def;
/external/v8/src/zone/
H A Dzone-containers.h36 // having the value {def}.
37 ZoneVector(size_t size, T def, Zone* zone) argument
38 : std::vector<T, zone_allocator<T>>(size, def, zone_allocator<T>(zone)) {}
/external/zlib/src/examples/
H A Dzpipe.c31 def() returns Z_OK on success, Z_MEM_ERROR if memory could not be
36 int def(FILE *source, FILE *dest, int level) function
186 ret = def(stdin, stdout, Z_DEFAULT_COMPRESSION);
/external/annotation-tools/scene-lib/src/annotations/
H A DAnnotationBuilder.java31 AnnotationDef def; field in class:AnnotationBuilder
48 if (def != null) {
49 return def.name;
56 if (def != null) {
57 return def.fieldTypes;
130 if (def == null) {
152 if (def == null) {
158 def.name, fieldName, def));
180 if (def
211 AnnotationBuilder(AnnotationDef def) argument
[all...]
/external/clang/test/Analysis/inlining/
H A Dinline-defensive-checks.cpp45 inline void radar13224271_callee(Ty def, Ty& result ) { argument
46 result = def;
47 // Clearly indicates that result cannot be 0 if def is not NULL.
48 assert( (result != 0) || (def == 0) );
/external/clang/test/PCH/
H A Dcxx1y-variable-templates.cpp45 template<typename T> extern T def;
95 template<typename T> extern T def;
140 template<typename T> T def = T(); member in namespace:join::diff_types
/external/freetype/include/freetype/
H A Dftmm.h129 /* def :: The axis's default design coordinate. */
145 /* The fields `minimum', `def', and `maximum' are 16.16 fractional */
154 FT_Fixed def; member in struct:FT_Var_Axis_
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/
H A D2-2.c169 char *def = "Default"; local
175 stri = def;
181 strj = def;
/external/mesa3d/src/compiler/nir/
H A Dnir_repair_ssa.c68 repair_ssa_def(nir_ssa_def *def, void *void_state) argument
73 nir_foreach_use(src, def) {
74 if (!nir_block_dominates(def->parent_instr->block, get_src_block(src))) {
85 BITSET_SET(state->def_set, def->parent_instr->block->index);
88 nir_phi_builder_add_value(pb, def->num_components, def->bit_size,
91 nir_phi_builder_value_set_block_def(val, def->parent_instr->block, def);
93 nir_foreach_use_safe(src, def) {
95 if (!nir_block_dominates(def
[all...]
H A Dnir_to_lcssa.c85 convert_loop_exit_for_ssa(nir_ssa_def *def, void *void_state) argument
93 nir_foreach_use(use, def) {
104 nir_foreach_if_use(use, def) {
117 def->num_components, def->bit_size, "LCSSA-phi");
125 phi_src->src = nir_src_for_ssa(def);
134 * the phi instead of pointing to the ssa-def.
136 nir_foreach_use_safe(use, def) {
148 nir_foreach_if_use_safe(use, def) {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h42 BITSET_WORD *def; member in struct:brw::block_data
H A Dbrw_vec4_live_variables.h40 BITSET_WORD *def; member in struct:brw::block_data
/external/mesa3d/src/mesa/state_tracker/
H A Dst_nir_lower_builtin.c200 nir_ssa_def *def = nir_load_var(b, new_var); local
208 def = nir_swizzle(b, def, swiz, intrin->num_components, true);
212 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(def));
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyDescriptorPool.java111 protected void addToSymtab(ThreadContext context, RubyDescriptor def) { argument
112 symtab.put(def.getName(context), def);
113 this.builder.addMessageType(def.getBuilder());
116 protected void addToSymtab(ThreadContext context, RubyEnumDescriptor def) { argument
117 symtab.put(def.getName(context), def);
118 this.builder.addEnumType(def.getBuilder());
/external/python/cpython3/Python/
H A Dimportdl.c99 PyModuleDef *def; local
203 def = PyModule_GetDef(m);
204 if (def == NULL) {
210 def->m_base.m_init = p0;
/external/skia/tools/bookmaker/
H A Dcataloger.cpp121 bool Catalog::textOut(Definition* def, const char* stdOutStart, argument
124 if (!def->exampleToScript(&result, Definition::ExampleOptions::kText)) {
141 const Definition* stdOut = def->hasChild(MarkType::kStdOut);

Completed in 1801 milliseconds

1234567891011>>