Home
last modified time | relevance | path

Searched defs:Element (Results 1 – 25 of 1397) sorted by relevance

12345678910>>...56

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/edwards25519/field/
Dfe.go23 type Element struct { struct
28 l0 uint64
29 l1 uint64
30 l2 uint64
31 l3 uint64
32 l4 uint64
40 func (v *Element) Zero() *Element {
48 func (v *Element) One() *Element {
54 func (v *Element) reduce() *Element {
87 func (v *Element) Add(a, b *Element) *Element {
[all …]
Dfe_amd64.go10 func feMul(out *Element, a *Element, b *Element)
15 func feSquare(out *Element, a *Element)
/aosp_15_r20/external/conscrypt/api-doclet/src/main/kotlin/org/conscrypt/doclet/
H A DElementUtils.kt28 fun Element.isType() = isClass() || isInterface() || isEnum() in <lambda>() method
29 fun Element.isClass() = this is TypeElement && kind == ElementKind.CLASS in <lambda>() method
30 fun Element.isEnum() = this is TypeElement && kind == ElementKind.ENUM in <lambda>() method
31 fun Element.isInterface() = this is TypeElement && kind == ElementKind.INTERFACE in <lambda>() method
32 fun Element.isExecutable() = this is ExecutableElement in <lambda>() method
33 fun Element.isField() = this is VariableElement in <lambda>() method
35 fun Element.isVisibleType() = isType() && isVisible() in <lambda>() method
36 fun Element.isVisibleMethod() = isExecutable() && isVisible() && kind == ElementKind.METHOD in <lambda>() method
37 fun Element.isVisibleConstructor() = isExecutable() && isVisible() && kind == ElementKind.CONSTRUCT… in <lambda>() method
38 fun Element.isVisibleField() = isField() && isVisible() in <lambda>() method
[all …]
H A DDocTreeUtils.kt86 fun Element.paramTags() = filterTags<ParamTree>() in filterTags() method
91 fun Element.returnTag(returnType: TypeMirror): List<Pair<String, String>> { in Element() method
103 fun Element.throwTags() = filterTags<ThrowsTree>() in Element() method
107 fun Element.docTree(): DocCommentTree? = docTrees.getDocCommentTree(this) in docTree() method
108 fun Element.commentTree() = docTree()?.let { renderDocTreeList(it.fullBody) } ?: "" in docTree() method
109 fun Element.tagTree() = docTree()?.let { renderBlockTagList(it.blockTags) } ?: "" in <lambda>() method
110 fun Element.commentsAndTagTrees() = commentTree() + tagTree() method
/aosp_15_r20/external/pigweed/pw_build_mcuxpresso/py/pw_build_mcuxpresso/
H A Dcomponents.py23 element: xml.etree.ElementTree.Element, device_core: str | None
46 root: xml.etree.ElementTree.Element,
80 root: xml.etree.ElementTree.Element,
108 def _parse_define(define: xml.etree.ElementTree.Element) -> str:
130 root: xml.etree.ElementTree.Element,
171 include_path: xml.etree.ElementTree.Element,
193 root: xml.etree.ElementTree.Element,
221 root: xml.etree.ElementTree.Element,
253 root: xml.etree.ElementTree.Element,
278 root: xml.etree.ElementTree.Element,
[all …]
/aosp_15_r20/external/pytorch/torch/csrc/jit/passes/utils/
H A Dmemory_dag.h30 struct Element { struct
49 MemoryLocations containedElements; argument
59 void makePointerTo(Element* from, Element* to); argument
76 // - Vertices (called "Elements") represent Values and argument
87 explicit MemoryDAG(std::vector<std::unique_ptr<Element>> indexToElementMap) in MemoryDAG() argument
/aosp_15_r20/tools/treble/split/
H A Dxml_diff.py20 Element = ET.Element variable
68 def element_string(e: Element) -> str:
72 def attribute_changes(e1: Element, e2: Element,
104 p1: Element,
105 p2: Element,
107 key_fn: Callable[[Element], str],
108 diff_fn: Callable[[Element, Element, Set[str]], Any]) -> ChangeMap:
H A Dmanifest_diff.py28 Element = ET.Element variable
101 def subelement_file_changes(tag: str, p1: Element, p2: Element) -> ChangeMap:
121 def project_changes(p1: Element, p2: Element,
139 def compare_single_node_elements(manifest_e1: Element, manifest_e2: Element,
168 def compare_remote_elements(manifest_e1: Element, manifest_e2: Element,
/aosp_15_r20/external/skia/src/core/
H A DSkClipStack.h69 Element() { in Element() function
76 Element(const SkRect& rect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function
80 Element(const SkRRect& rrect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function
84 Element(const SkPath& path, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function
88 Element(sk_sp<SkShader> shader) { in Element() function
92 Element(const SkRect& rect, bool doAA) { in Element() function
222 Element(int saveCount) { in Element() function
227 Element(int saveCount, const SkRRect& rrect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function
231 Element(int saveCount, const SkRect& rect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function
235 Element(int saveCount, const SkPath& path, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function
[all …]
/aosp_15_r20/external/grpc-grpc/src/core/lib/json/
H A Djson_object_loader.h458 struct Element { struct
461 Element(const char* name, bool optional, B A::*p, in Element() argument
470 const LoaderInterface* loader;
472 uint16_t member_offset;
474 bool optional;
476 const char* name;
478 const char* enable_key;
517 explicit FinishedJsonObjectLoader(const Vec<Element, kElemCount>& elements) in FinishedJsonObjectLoader()
535 explicit FinishedJsonObjectLoader(const Vec<Element, kElemCount>& elements) in FinishedJsonObjectLoader()
578 JsonObjectLoader(const Vec<Element, kElemCount - 1>& elements, in JsonObjectLoader()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/json/
Djson_object_loader.h459 struct Element { struct
462 Element(const char* name, bool optional, B A::*p, in Element() function
471 const LoaderInterface* loader;
473 uint16_t member_offset;
475 bool optional;
477 const char* name;
479 const char* enable_key;
518 explicit FinishedJsonObjectLoader(const Vec<Element, kElemCount>& elements) in FinishedJsonObjectLoader()
536 explicit FinishedJsonObjectLoader(const Vec<Element, kElemCount>& elements) in FinishedJsonObjectLoader()
579 JsonObjectLoader(const Vec<Element, kElemCount - 1>& elements, in JsonObjectLoader()
/aosp_15_r20/external/rust/android-crates-io/crates/linkme-impl/src/
Delement.rs12 pub struct Element { struct
23 impl Parse for Element { implementation
/aosp_15_r20/external/mesa3d/src/intel/genxml/
H A Dintel_genxml.py23 def get_filename(element: et.Element) -> str:
26 def get_name(element: et.Element) -> str:
29 def get_value(element: et.Element) -> int:
32 def get_start(element: et.Element) -> int:
52 def add_struct_refs(items: typing.OrderedDict[str, bool], node: et.Element) -> None:
65 def __init__(self, xml: et.Element):
77 def add_xml(self, items: typing.OrderedDict[str, et.Element]) -> None:
98 def node_validator(old: et.Element, new: et.Element) -> bool:
122 def process_attribs(elem: et.Element) -> None:
/aosp_15_r20/external/fmtlib/support/python/mkdocstrings_handlers/cxx/
H A D__init__.py18 node: Optional[ElementTree.Element] = None,
53 def doxyxml2html(nodes: List[ElementTree.Element]):
71 def convert_template_params(node: ElementTree.Element) -> Optional[List[Definition]]:
84 def get_description(node: ElementTree.Element) -> List[ElementTree.Element]:
94 def convert_type(type_: ElementTree.Element) -> Optional[str]:
106 def convert_params(func: ElementTree.Element) -> List[Definition]:
115 def convert_return_type(d: Definition, node: ElementTree.Element) -> None:
228 cls: List[ElementTree.Element]) -> Definition:
/aosp_15_r20/external/zucchini/
H A Dimage_utils.h185 struct Element : public BufferRegion { struct
187 constexpr Element(const BufferRegion& region_in, ExecutableType exe_type_in) in Element() function
189 constexpr explicit Element(const BufferRegion& region_in) in Element() argument
198 friend bool operator==(const Element& a, const Element& b) { argument
219 Element old_element; argument
/aosp_15_r20/external/zucchini/aosp/include/components/zucchini/
H A Dimage_utils.h185 struct Element : public BufferRegion { struct
187 constexpr Element(const BufferRegion& region_in, ExecutableType exe_type_in) in Element() argument
189 constexpr explicit Element(const BufferRegion& region_in) in Element() function
198 friend bool operator==(const Element& a, const Element& b) { argument
219 Element old_element; argument
/aosp_15_r20/frameworks/base/tools/bit/
H A Daapt.cpp50 struct Element { struct
51 Element* parent; argument
56 vector<Element*> children; argument
64 Element(); argument
72 Element::Element() in Element() function in Element
/aosp_15_r20/external/ComputeLibrary/arm_compute/runtime/
H A DISimpleLifetimeManager.h71 struct Element struct
77 void *id; /**< Element id */ argument
78 IMemory *handle; /**< Element's memory handle */ argument
79 size_t size; /**< Element's size */ argument
94 …std::map<void *, Element> _active_elements; /**< A map that contains th… argument
/aosp_15_r20/external/fonttools/Lib/fontTools/subset/
H A Dsvg.py39 def group_elements_by_id(tree: etree.Element) -> Dict[str, etree.Element]:
60 def iter_referenced_ids(tree: etree.Element) -> Iterator[str]:
91 elements: Dict[str, etree.Element], element_ids: Set[str]
108 def subset_elements(el: etree.Element, retained_ids: Set[str]) -> bool:
128 svg: etree.Element, glyph_index_map: Dict[int, int]
159 def href_local_target(el: etree.Element) -> Optional[str]:
167 def update_glyph_href_links(svg: etree.Element, id_map: Dict[str, str]) -> None:
/aosp_15_r20/prebuilts/go/linux-x86/src/container/list/
Dlist.go15 type Element struct { struct
21 next, prev *Element
24 list *List
27 Value any
31 func (e *Element) Next() *Element {
39 func (e *Element) Prev() *Element {
/aosp_15_r20/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h45 struct Element { struct
46 Element(unsigned Priority, const Function *Func, const Value *Data) in Element() argument
72 Element operator*() const; argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ExecutionEngine/Orc/
DExecutionUtils.h57 struct Element { struct
58 Element(unsigned Priority, Function *Func, Value *Data) in Element() function
84 Element operator*() const; argument
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h54 struct Element { struct
55 Element(unsigned Priority, Function *Func, Value *Data) in Element() argument
81 Element operator*() const; argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ExecutionEngine/Orc/
DExecutionUtils.h57 struct Element { struct
58 Element(unsigned Priority, Function *Func, Value *Data) in Element() argument
84 Element operator*() const; argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ExecutionEngine/Orc/
DExecutionUtils.h57 struct Element { struct
58 Element(unsigned Priority, Function *Func, Value *Data) in Element() argument
84 Element operator*() const; argument

12345678910>>...56