Home
last modified time | relevance | path

Searched refs:typespec (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/clang/utils/
Dconvert_arm_neon.py52 def typespec_elt_size(typespec): argument
53 if 'c' in typespec:
55 elif 's' in typespec or 'h' in typespec:
57 elif 'i' in typespec or 'f' in typespec:
59 elif 'l' in typespec or 'd' in typespec:
61 elif 'k' in typespec:
75 def remap_protocol(proto, typespec, name): argument
81 default_width = typespec_elt_size(typespec)
83 for elt in typespec:
/external/tensorflow/tensorflow/python/ops/structured/
Dstructured_tensor.py824 def from_pyval(cls, pyval, typespec=None): argument
849 return cls._from_pydict(pyval, typespec)
854 return cls._from_pylist_of_dict(pyval, keys, rank, typespec)
856 return cls._from_pylist_of_value(pyval, typespec)
858 return cls._from_pyscalar(pyval, typespec)
861 def _from_pydict(cls, pyval, typespec): argument
863 if typespec is None:
866 spec_shape = typespec._shape # pylint: disable=protected-access
867 field_specs = typespec._field_specs # pylint: disable=protected-access
868 if not (isinstance(typespec, StructuredTensorSpec) and
[all …]
/external/python/cpython3/Modules/_decimal/tests/
Dformathelper.py238 def rand_format(fill, typespec='EeGgFfn%'): argument
259 if 4 in active: c = typespec.replace('n', '')
260 else: c = typespec
/external/python/jinja/src/jinja2/
Dsandbox.py172 for typespec, unsafe in _mutable_spec:
173 if isinstance(obj, typespec):
/external/libchrome/third_party/jinja2/
Dsandbox.py229 for typespec, unsafe in _mutable_spec:
230 if isinstance(obj, typespec):
/external/llvm-project/clang/include/clang/Basic/
Darm_neon_incl.td193 // A typespec is a sequence of uppercase characters (modifiers) followed by one
194 // lowercase character. A typespec encodes a particular "base type" of the
197 // An example typespec is "Qs" - quad-size short - uint16x8_t. The available
198 // typespec codes are given below.
201 // is instantiated for every typespec in the sequence. For example "sdQsQd".
Darm_sve.td25 // A typespec is a sequence of uppercase characters (modifiers) followed by one
26 // lowercase character. A typespec encodes a particular "base type" of the
29 // An example typespec is "Us" - unsigned short - svuint16_t. The available
30 // typespec codes are given below.
33 // is instantiated for every typespec in the sequence. For example "sdUsUd".
/external/clang/include/clang/Basic/
Darm_neon.td184 // A typespec is a sequence of uppercase characters (modifiers) followed by one
185 // lowercase character. A typespec encodes a particular "base type" of the
188 // An example typespec is "Qs" - quad-size short - uint16x8_t. The available
189 // typespec codes are given below.
192 // is instantiated for every typespec in the sequence. For example "sdQsQd".