Home
last modified time | relevance | path

Searched refs:hierarchy (Results 1 – 25 of 196) sorted by relevance

12345678

/external/tpm2/
DTicket.c53 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy constant for ticket in TicketComputeVerified() argument
63 ticket->hierarchy = hierarchy; in TicketComputeVerified()
65 proof = HierarchyGetProof(hierarchy); in TicketComputeVerified()
88 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy constant for ticket in TicketComputeAuth() argument
99 proof = HierarchyGetProof(hierarchy); in TicketComputeAuth()
102 ticket->hierarchy = hierarchy; in TicketComputeAuth()
128 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy constant for ticket in TicketComputeHashCheck() argument
138 proof = HierarchyGetProof(hierarchy); in TicketComputeHashCheck()
141 ticket->hierarchy = hierarchy; in TicketComputeHashCheck()
163 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy for ticket in TicketComputeCreation() argument
[all …]
DHash.c30 out->validation.hierarchy = in->hierarchy; in TPM2_Hash()
32 if(in->hierarchy == TPM_RH_NULL) in TPM2_Hash()
35 out->validation.hierarchy = TPM_RH_NULL; in TPM2_Hash()
42 out->validation.hierarchy = TPM_RH_NULL; in TPM2_Hash()
48 TicketComputeHashCheck(in->hierarchy, in->hashAlg, in TPM2_Hash()
DVerifySignature.c29 TPMI_RH_HIERARCHY hierarchy; in TPM2_VerifySignature() local
48 hierarchy = ObjectGetHierarchy(in->keyHandle); in TPM2_VerifySignature()
49 if( hierarchy == TPM_RH_NULL in TPM2_VerifySignature()
55 out->validation.hierarchy = TPM_RH_NULL; in TPM2_VerifySignature()
63 TicketComputeVerified(hierarchy, &in->digest, &name, &out->validation); in TPM2_VerifySignature()
DSequenceComplete.c66 out->validation.hierarchy = in->hierarchy; in TPM2_SequenceComplete()
68 if(in->hierarchy == TPM_RH_NULL) in TPM2_SequenceComplete()
76 out->validation.hierarchy = TPM_RH_NULL; in TPM2_SequenceComplete()
82 TicketComputeHashCheck(out->validation.hierarchy, hashAlg, in TPM2_SequenceComplete()
100 out->validation.hierarchy = TPM_RH_NULL; in TPM2_SequenceComplete()
DTicket_fp.h12 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy constant for ticket
20 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy for ticket
26 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy constant for ticket
32 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy constant for ticket
DHierarchy.c110 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy constant in HierarchyGetProof() argument
114 switch(hierarchy) in HierarchyGetProof()
146 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy in HierarchyGetPrimarySeed() argument
150 switch(hierarchy) in HierarchyGetPrimarySeed()
185 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy in HierarchyIsEnabled() argument
189 switch(hierarchy) in HierarchyIsEnabled()
DHierarchy_fp.h11 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy
14 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy constant
16 BOOL HierarchyIsEnabled(TPMI_RH_HIERARCHY hierarchy // IN: hierarchy
DLoad.c40 TPMI_RH_HIERARCHY hierarchy; in TPM2_Load() local
91 hierarchy = ObjectGetHierarchy(in->parentHandle); in TPM2_Load()
96 result = ObjectLoad(hierarchy, &in->inPublic.t.publicArea, &sensitive, in TPM2_Load()
DLoadExternal.c44 if(!HierarchyIsEnabled(in->hierarchy)) in TPM2_LoadExternal()
57 if(in->hierarchy != TPM_RH_NULL) in TPM2_LoadExternal()
87 result = ObjectLoad(in->hierarchy, &in->inPublic.t.publicArea, in TPM2_LoadExternal()
DObject_fp.h66 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy to be flush
84 TPMI_RH_HIERARCHY hierarchy, // IN: hierarchy to which the object belongs
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contours_hierarchy/
Dpy_contours_hierarchy.markdown7 This time, we learn about the hierarchy of contours, i.e. the parent-child relationship in Contours.
18 output which we named as **hierarchy** (Please checkout the codes in previous articles). But we
19 never used this hierarchy anywhere. Then what is this hierarchy and what is it for ? What is its
35 ![image](images/hierarchy.png)
40 Here, contours 0,1,2 are **external or outermost**. We can say, they are in **hierarchy-0** or
41 simply they are in **same hierarchy level**.
44 contour-2 is parent of contour-2a). So let it be in **hierarchy-1**. Similarly contour-3 is child of
45 contour-2 and it comes in next hierarchy. Finally contours 4,5 are the children of contour-3a, and
46 they come in the last hierarchy level. From the way I numbered the boxes, I would say contour-4 is
49 I mentioned these things to understand terms like **same hierarchy level**, **external contour**,
[all …]
/external/opencv3/samples/cpp/
Dsegment_objects.cpp26 vector<Vec4i> hierarchy; in refineSegments() local
34 findContours( temp, contours, hierarchy, RETR_CCOMP, CHAIN_APPROX_SIMPLE ); in refineSegments()
46 for( ; idx >= 0; idx = hierarchy[idx][0] ) in refineSegments()
57 drawContours( dst, contours, largestComp, color, FILLED, LINE_8, hierarchy ); in refineSegments()
Dwatershed.cpp87 vector<Vec4i> hierarchy; in main() local
89 findContours(markerMask, contours, hierarchy, RETR_CCOMP, CHAIN_APPROX_SIMPLE); in main()
96 for( ; idx >= 0; idx = hierarchy[idx][0], compCount++ ) in main()
97 … drawContours(markers, contours, idx, Scalar::all(compCount+1), -1, 8, hierarchy, INT_MAX); in main()
Dcontours2.cpp24 vector<Vec4i> hierarchy; variable
31 3, LINE_AA, hierarchy, std::abs(_levels) ); in on_trackbar()
81 findContours( img, contours0, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE); in main()
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
DPropertyConfigurator.java44 public void doConfigure(Properties properties, LoggerRepository hierarchy) { in doConfigure() argument
47 public void doConfigure(String configFileName, LoggerRepository hierarchy) { in doConfigure() argument
50 public void doConfigure(URL configURL, LoggerRepository hierarchy) { in doConfigure() argument
/external/eigen/unsupported/Eigen/
DBVH23 * \brief This module provides generic bounding volume hierarchy algorithms
31 …* A bounding volume hierarchy (BVH) can accelerate many geometric queries. This module provides a…
32 …ms over a BVH: intersection of a query object against all objects in the hierarchy and minimization
33 …* of a function over the objects in the hierarchy. It also provides intersection and minimization…
53 …* This implementation decouples the basic algorithms both from the type of hierarchy (and the type…
57 …* To be used in the algorithms, a hierarchy must implement the following traversal mechanism (see …
59 typedef Object //the type of object in the hierarchy
60 typedef Index //a reference to a node in the hierarchy--typically an int or a pointer
63 Index getRootIndex() const //returns the index of the hierarchy root
71 …* To use the hierarchy, call BVIntersect or BVMinimize, passing it a BVH (or two, for cartesian pr…
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
Dmoments_demo.cpp56 vector<Vec4i> hierarchy; in thresh_callback() local
61 findContours( canny_output, contours, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE, Point(0, 0) ); in thresh_callback()
78 drawContours( drawing, contours, (int)i, color, 2, 8, hierarchy, 0, Point() ); in thresh_callback()
92 drawContours( drawing, contours, (int)i, color, 2, 8, hierarchy, 0, Point() ); in thresh_callback()
DfindContours_demo.cpp61 vector<Vec4i> hierarchy; in thresh_callback() local
66 findContours( canny_output, contours, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE, Point(0, 0) ); in thresh_callback()
73 drawContours( drawing, contours, (int)i, color, 2, 8, hierarchy, 0, Point() ); in thresh_callback()
Dhull_demo.cpp57 vector<Vec4i> hierarchy; in thresh_callback() local
63 …findContours( threshold_output, contours, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE, Point(0, 0) ); in thresh_callback()
DgeneralContours_demo2.cpp56 vector<Vec4i> hierarchy; in thresh_callback() local
61 …findContours( threshold_output, contours, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE, Point(0, 0) ); in thresh_callback()
/external/guava/guava-tests/test/com/google/common/eventbus/
DEventBusTest.java203 Set<Class<?>> hierarchy = bus.flattenHierarchy(fixture.getClass()); in testFlattenHierarchy() local
205 assertEquals(5, hierarchy.size()); in testFlattenHierarchy()
206 assertContains(Object.class, hierarchy); in testFlattenHierarchy()
207 assertContains(HierarchyFixtureInterface.class, hierarchy); in testFlattenHierarchy()
208 assertContains(HierarchyFixtureSubinterface.class, hierarchy); in testFlattenHierarchy()
209 assertContains(HierarchyFixtureParent.class, hierarchy); in testFlattenHierarchy()
210 assertContains(HierarchyFixture.class, hierarchy); in testFlattenHierarchy()
/external/nist-sip/licenses/
DREADME.txt5 Applies to the classes under the hierarchy "gov.nist" and under the "tools"
6 and "test" hierarchy.
/external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
Dintroduction_to_pca.cpp124 vector<Vec4i> hierarchy; in main() local
126 findContours(bw, contours, hierarchy, CV_RETR_LIST, CV_CHAIN_APPROX_NONE); in main()
136 drawContours(src, contours, static_cast<int>(i), Scalar(0, 0, 255), 2, 8, hierarchy, 0); in main()
/external/llvm/docs/
DHowToSetUpLLVMStyleRTTI.rst2 How to set up LLVM-style RTTI for your class hierarchy
17 hierarchy author to make LLVM-style RTTI available to your clients.
29 RTTI for this class hierarchy:
65 different concrete classes in the hierarchy, and stash the enum value
287 preorder traversal of the class hierarchy tree. With that arrangement, all
289 list the class hierarchy like a list of bullet points, you'll get the
303 (from) the hierarchy.
386 The ``Decl`` hierarchy is done very similarly to the example setup
407 is some ancestor in the inheritance hierarchy. The argument should
410 #. For each class in the hierarchy that has no children, implement a
[all …]
/external/doclava/res/assets/templates/
Dhierarchy.cs4 .jd-hierarchy-spacer {
7 .jd-hierarchy-data {

12345678