Searched refs:short_name (Results 1 - 25 of 63) sorted by relevance

123

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_table.py128 print 'util_format_%s_description = {' % (format.short_name(),)
131 print " \"%s\"," % (format.short_name(),)
144 if format.layout == 'etc' and format.short_name() != 'etc1_rgb8':
147 print " &util_format_%s_unpack_rgba_8unorm," % format.short_name()
148 print " &util_format_%s_pack_rgba_8unorm," % format.short_name()
150 print " &util_format_%s_fetch_rgba_8unorm," % format.short_name()
153 print " &util_format_%s_unpack_rgba_float," % format.short_name()
154 print " &util_format_%s_pack_rgba_float," % format.short_name()
155 print " &util_format_%s_fetch_rgba_float," % format.short_name()
164 print " &util_format_%s_unpack_z_32unorm," % format.short_name()
[all...]
H A Du_format_pack.py109 print 'union util_format_%s {' % format.short_name()
510 print ' union util_format_%s pixel;' % format.short_name()
588 print ' union util_format_%s pixel;' % format.short_name()
617 name = format.short_name()
646 name = format.short_name()
675 name = format.short_name()
/external/mesa3d/src/gallium/tests/unit/
H A Du_format_compatible_test.c60 printf("%s -> %s\n", src_format_desc->short_name, dst_format_desc->short_name);
/external/toolchain-utils/crosperf/
H A Dresults_report_templates.py43 <div id='${short_name}-html'>$html_table</div>
44 <div id='${short_name}-text'><pre>$text_table</pre></div>
45 <div id='${short_name}-tsv'><pre>$tsv_table</pre></div>
54 short_name = first_word.lower()
60 tab_menu=_GetTabMenuHTML(short_name),
61 short_name=short_name)
/external/e2fsprogs/lib/e2p/
H A Dpf.c26 const char *short_name; member in struct:flags_name
68 fputs(fp->short_name, f);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_profile_printer_data.proto28 string short_name = 2;
H A Dhuman_readable_profile_builder.h46 tensorflow::StringPiece short_name,
51 {op_name.ToString(), short_name.ToString(), category.ToString(), cycles,
61 string short_name; member in struct:xla::HumanReadableProfileBuilder::OpInfo
45 AddOp(tensorflow::StringPiece op_name, tensorflow::StringPiece short_name, tensorflow::StringPiece category, int64 cycles, int64 flop_count, int64 transcendental_count, int64 bytes_accessed, float optimal_seconds) argument
H A Dhlo_profile_printer.cc50 /*short_name=*/instruction_info.short_name(),
H A Dhuman_readable_profile_builder.cc116 entry.short_text = op.short_name;
134 entry.short_text = op.short_name;
/external/boringssl/include/openssl/
H A Dobj.h111 // OBJ_sn2nid returns the nid corresponding to |short_name|, or |NID_undef| if
113 OPENSSL_EXPORT int OBJ_sn2nid(const char *short_name);
168 OPENSSL_EXPORT int OBJ_create(const char *oid, const char *short_name,
/external/boringssl/src/include/openssl/
H A Dobj.h111 // OBJ_sn2nid returns the nid corresponding to |short_name|, or |NID_undef| if
113 OPENSSL_EXPORT int OBJ_sn2nid(const char *short_name);
168 OPENSSL_EXPORT int OBJ_create(const char *oid, const char *short_name,
/external/libvpx/libvpx/
H A Dargs.c43 if (def->short_name && strlen(arg.argv[0]) == strlen(def->short_name) + 1 &&
44 !strcmp(arg.argv[0] + 1, def->short_name)) {
98 if (def->short_name && def->long_name) {
101 snprintf(option_text, 37, "-%s%s%s --%s%6s", def->short_name, short_val,
103 } else if (def->short_name)
104 snprintf(option_text, 37, "-%s%s", def->short_name, short_val);
H A Dargs.h35 const char *short_name; member in struct:arg_def
/external/mesa3d/src/amd/vulkan/
H A Dvk_format_table.py130 print 'vk_format_%s_description = {' % (format.short_name(),)
133 print " \"%s\"," % (format.short_name(),)
156 print " return &vk_format_%s_description;" % (format.short_name(),)
/external/tensorflow/tensorflow/tools/docs/
H A Dparser.py768 '_LinkInfo', ['short_name', 'full_name', 'obj', 'doc', 'url'])):
778 ['short_name', 'full_name', 'obj', 'doc'])):
787 '_PropertyInfo', ['short_name', 'full_name', 'obj', 'doc'])
790 'short_name', 'full_name', 'obj', 'doc', 'signature', 'decorators'
821 def short_name(self): member in class:_FunctionPageInfo
885 short_name: The last component of the `full_name`. For example: `sigmoid`.
935 def short_name(self): member in class:_ClassPageInfo
1019 link_info = _LinkInfo(short_name=base_full_name.split('.')[-1],
1031 def _add_property(self, short_name, full_name, obj, doc):
1035 short_name
1235 def short_name(self): member in class:_ModulePageInfo
[all...]
H A Dpretty_docs.py102 link_template = '[`{short_name}`]({url})'
127 link_template = ('[`class {class_info.short_name}`]'
138 h3 = '<h3 id="{short_name}"><code>{short_name}</code></h3>\n\n'
139 parts.append(h3.format(short_name=prop_info.short_name))
154 if method.short_name in constructors]
156 if method.short_name not in constructors]
159 h3 = ('<h3 id="{short_name}">'
160 '<code>{short_name}</cod
[all...]
/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_enum.cc138 string short_name(EnumValueShortName(all_values_[i]));
139 text_blob += short_name + '\0';
140 if (UnCamelCaseEnumShortName(short_name) != all_values_[i]->name()) {
141 text_format_decode_data.AddString(enum_value_description_key, short_name,
/external/boringssl/src/crypto/digest_extra/
H A Ddigest_extra.c71 const char *short_name; member in struct:nid_to_digest
231 const char *short_name = nid_to_digest_mapping[i].short_name; local
233 if ((short_name && strcmp(short_name, name) == 0) ||
/external/boringssl/src/crypto/obj/
H A Dobj.c262 int OBJ_sn2nid(const char *short_name) { argument
269 template.sn = short_name;
278 nid_ptr = bsearch(short_name, kNIDsInShortNameOrder,
394 const char *short_name,
408 len, short_name, long_name);
546 int OBJ_create(const char *oid, const char *short_name, const char *long_name) { argument
548 create_object_with_text_oid(obj_next_nid, oid, short_name, long_name);
392 create_object_with_text_oid(int (*get_nid)(void), const char *oid, const char *short_name, const char *long_name) argument
/external/autotest/client/cros/bluetooth/
H A Dbluetooth_tester_xmlrpc_server.py92 name, short_name ) = self._control.read_info(self.index)
216 name, short_name ) = self._control.read_info(self.index)
227 elif short_name != profile_short_name:
229 short_name, profile_short_name)
270 name, short_name )
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
H A Dcommands.py50 def add_option(command, long_name, help_text, short_name=None, default=None,
61 opt = (long_name, short_name, help_text)
75 i_inherit, long_name, help_text, short_name, default
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
H A Dcommands.py49 def add_option(command, long_name, help_text, short_name=None, default=None,
60 opt = (long_name, short_name, help_text)
74 i_inherit, long_name, help_text, short_name, default
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
H A Dcommands.py50 def add_option(command, long_name, help_text, short_name=None, default=None,
61 opt = (long_name, short_name, help_text)
75 i_inherit, long_name, help_text, short_name, default
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
H A Dcommands.py49 def add_option(command, long_name, help_text, short_name=None, default=None,
60 opt = (long_name, short_name, help_text)
74 i_inherit, long_name, help_text, short_name, default
/external/tensorflow/tensorflow/contrib/model_pruning/python/layers/
H A Dlayers.py52 short_name = name.split('/')[-1]
53 if rename and short_name in rename:
55 name_components[-1] = rename[short_name]

Completed in 2562 milliseconds

123