Home
last modified time | relevance | path

Searched full:meet (Results 1 – 25 of 2146) sorted by relevance

12345678910>>...86

/external/autotest/server/site_tests/platform_MTBF/
Dspera_config.json5 "name": "meet-basic-2",
11 "name": "meet-basic-small",
17 "name": "meet-basic-large",
23 "name": "meet-basic-class",
29 "name": "meet-plus-large",
36 "name": "meet-plus-class",
43 "name": "meet-premium-large",
121 "name": "extended-display-meet",
227 {"test": "meet-basic-2", "repeats": 1},
228 {"test": "meet-basic-small", "repeats": 1},
[all …]
Dgenerate_performance_cuj.py39 'test': 'Google Meet Basic 2',
43 'test': 'Google Meet Basic Small',
47 'test': 'Google Meet Basic Large',
51 'test': 'Google Meet Basic Class',
55 'test': 'Google Meet Plus Large',
59 'test': 'Google Meet Plus Class',
63 'test': 'Google Meet Premium Large',
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dccp_pass.h61 // Visits an OpPhi instruction |phi|. This applies the meet operator for the
95 // Returns a new value for |instr| by computing the meet operation between
98 // Given two values val1 and val2, the meet operation in the constant
101 // meet(val1, UNDEFINED) = val1
102 // meet(val1, VARYING) = VARYING
103 // meet(val1, val2) = val1 if val1 == val2
104 // meet(val1, val2) = VARYING if val1 != val2
106 // When two different values meet, the result is always varying because CCP
Dccp_pass.cpp50 // Implement the lattice meet operation. The result of this Phi instruction is in VisitPhi()
51 // interesting only if the meet operation over arguments coming through in VisitPhi()
61 // We found an argument with a constant value. Apply the meet operation in VisitPhi()
77 // from the previous computed meet value. This Phi will never be in VisitPhi()
89 // If there are no incoming executable edges, the meet ID will still be 0. In in VisitPhi()
102 // Given two values val1 and val2, the meet operation in the constant in ComputeLatticeMeet()
105 // meet(val1, UNDEFINED) = val1 in ComputeLatticeMeet()
106 // meet(val1, VARYING) = VARYING in ComputeLatticeMeet()
107 // meet(val1, val2) = val1 if val1 == val2 in ComputeLatticeMeet()
108 // meet(val1, val2) = VARYING if val1 != val2 in ComputeLatticeMeet()
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dccp_pass.h61 // Visits an OpPhi instruction |phi|. This applies the meet operator for the
95 // Returns a new value for |instr| by computing the meet operation between
98 // Given two values val1 and val2, the meet operation in the constant
101 // meet(val1, UNDEFINED) = val1
102 // meet(val1, VARYING) = VARYING
103 // meet(val1, val2) = val1 if val1 == val2
104 // meet(val1, val2) = VARYING if val1 != val2
106 // When two different values meet, the result is always varying because CCP
Dccp_pass.cpp54 // Implement the lattice meet operation. The result of this Phi instruction is in VisitPhi()
55 // interesting only if the meet operation over arguments coming through in VisitPhi()
65 // We found an argument with a constant value. Apply the meet operation in VisitPhi()
81 // from the previous computed meet value. This Phi will never be in VisitPhi()
93 // If there are no incoming executable edges, the meet ID will still be 0. In in VisitPhi()
106 // Given two values val1 and val2, the meet operation in the constant in ComputeLatticeMeet()
109 // meet(val1, UNDEFINED) = val1 in ComputeLatticeMeet()
110 // meet(val1, VARYING) = VARYING in ComputeLatticeMeet()
111 // meet(val1, val2) = val1 if val1 == val2 in ComputeLatticeMeet()
112 // meet(val1, val2) = VARYING if val1 != val2 in ComputeLatticeMeet()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dccp_pass.h61 // Visits an OpPhi instruction |phi|. This applies the meet operator for the
95 // Returns a new value for |instr| by computing the meet operation between
98 // Given two values val1 and val2, the meet operation in the constant
101 // meet(val1, UNDEFINED) = val1
102 // meet(val1, VARYING) = VARYING
103 // meet(val1, val2) = val1 if val1 == val2
104 // meet(val1, val2) = VARYING if val1 != val2
106 // When two different values meet, the result is always varying because CCP
Dccp_pass.cpp51 // Implement the lattice meet operation. The result of this Phi instruction is in VisitPhi()
52 // interesting only if the meet operation over arguments coming through in VisitPhi()
62 // We found an argument with a constant value. Apply the meet operation in VisitPhi()
78 // from the previous computed meet value. This Phi will never be in VisitPhi()
90 // If there are no incoming executable edges, the meet ID will still be 0. In in VisitPhi()
103 // Given two values val1 and val2, the meet operation in the constant in ComputeLatticeMeet()
106 // meet(val1, UNDEFINED) = val1 in ComputeLatticeMeet()
107 // meet(val1, VARYING) = VARYING in ComputeLatticeMeet()
108 // meet(val1, val2) = val1 if val1 == val2 in ComputeLatticeMeet()
109 // meet(val1, val2) = VARYING if val1 != val2 in ComputeLatticeMeet()
[all …]
/external/autotest/client/common_lib/cros/manual/
Dmeet_helper.py19 @param is_meeting: True, None if CfM running MEET mode,
39 @param is_meeting: True, None if CfM running MEET mode,
47 logging.info('+++Start meet meeting')
57 errmsg = 'Meeting code is required for hangout meet.'
71 @param is_meeting: True, None if CfM running MEET mode,
86 logging.info('+++meet ended')
/external/llvm/lib/Target/Hexagon/
DBitTracker.h121 // Since we do not store the "Self" bit and register number, the meet
164 // The "meet" operation is the "." operation in a semilattice (L, ., T, B):
171 // This "meet" function will update the value of the "*this" object with
177 // defines a partial order (i.e. that "meet" is same as "infimum").
178 bool meet(const BitValue &V, const BitRef &Self) { in meet() function
180 if (Type == Ref && RefI == Self) // Bottom.meet(V) = Bottom (i.e. This) in meet()
182 if (V.Type == Top) // This.meet(Top) = This in meet()
184 if (*this == V) // This.meet(This) = This in meet()
264 bool meet(const RegisterCell &RC, unsigned SelfR);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DBitTracker.h170 // Since we do not store the "Self" bit and register number, the meet
214 // The "meet" operation is the "." operation in a semilattice (L, ., T, B):
221 // This "meet" function will update the value of the "*this" object with
227 // defines a partial order (i.e. that "meet" is same as "infimum").
228 bool meet(const BitValue &V, const BitRef &Self) { in meet() function
230 if (Type == Ref && RefI == Self) // Bottom.meet(V) = Bottom (i.e. This) in meet()
232 if (V.Type == Top) // This.meet(Top) = This in meet()
234 if (*this == V) // This.meet(This) = This in meet()
315 bool meet(const RegisterCell &RC, unsigned SelfR);
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/containers/unord/unord.set/
Dmissing_hash_specialization.fail.cpp49 … Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}} in main()
59 … Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}} in main()
63 … Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}} in main()
/external/libcxx/test/libcxx/containers/unord/unord.set/
Dmissing_hash_specialization.fail.cpp50 … Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}} in main()
60 … Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}} in main()
64 … Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}} in main()
/external/python/google-api-python-client/docs/dyn/
Druntimeconfig_v1beta1.projects.configs.waiters.html126 …foo` and the number of paths is set to `2`, the following variables would meet the condition in a …
127 …"number": 42, # The number variables under the `path` that must exist to meet this condi…
133 …foo` and the number of paths is set to `2`, the following variables would meet the condition in a …
134 …"number": 42, # The number variables under the `path` that must exist to meet this condi…
216 …foo` and the number of paths is set to `2`, the following variables would meet the condition in a …
217 …"number": 42, # The number variables under the `path` that must exist to meet this condi…
223 …foo` and the number of paths is set to `2`, the following variables would meet the condition in a …
224 …"number": 42, # The number variables under the `path` that must exist to meet this condi…
264 …foo` and the number of paths is set to `2`, the following variables would meet the condition in a …
265 …"number": 42, # The number variables under the `path` that must exist to meet this condi…
[all …]
Dgkehub_v1alpha.projects.locations.fleets.html111 …"fleetName": "A String", # The name for the fleet. The name must meet the foll…
129 …"fleetName": "A String", # The name for the fleet. The name must meet the foll…
172 …"fleetName": "A String", # The name for the fleet. The name must meet the foll…
192 …"fleetName": "A String", # The name for the fleet. The name must meet the foll…
211 …"fleetName": "A String", # The name for the fleet. The name must meet the foll…
Dcalendar_v3.events.html194 …uot;: { # The conference-related information, such as details of a Google Meet conference. To crea…
202 "conferenceSolution": { # The conference solution, such as Google Meet.
212 # - "hangoutsMeet" for Google Meet (http://meet.google.com)
219 … "conferenceSolutionKey": { # The conference solution, such as Hangouts or Google Meet.
225 # - "hangoutsMeet" for Google Meet (http://meet.google.com)
256 # - for video: meet.google.com/aaa-bbbb-ccc
460 …uot;: { # The conference-related information, such as details of a Google Meet conference. To crea…
468 "conferenceSolution": { # The conference solution, such as Google Meet.
478 # - "hangoutsMeet" for Google Meet (http://meet.google.com)
485 … "conferenceSolutionKey": { # The conference solution, such as Hangouts or Google Meet.
[all …]
Dservicedirectory_v1.projects.locations.namespaces.services.endpoints.html115 …53 characters in total, followed by a slash (/) Annotations that fails to meet these requirements …
133 …53 characters in total, followed by a slash (/) Annotations that fails to meet these requirements …
175 …53 characters in total, followed by a slash (/) Annotations that fails to meet these requirements …
205 …53 characters in total, followed by a slash (/) Annotations that fails to meet these requirements …
241 …53 characters in total, followed by a slash (/) Annotations that fails to meet these requirements …
259 …53 characters in total, followed by a slash (/) Annotations that fails to meet these requirements …
/external/autotest/client/common_lib/cros/
Dpower_load_util.py55 """Returns username for meet testing."""
60 """Returns password for meet testing."""
/external/curl/tests/data/
Dtest80537 Hello Joe, do you think we can meet at 3:30 tomorrow?
59 Hello Joe, do you think we can meet at 3:30 tomorrow?
/external/llvm/unittests/ADT/
DSCCIteratorTest.cpp89 /// Meet - Return the intersection of this subset and the given one.
90 NodeSubset Meet(const NodeSubset &other) const { in Meet() function in llvm::Graph::NodeSubset
303 NodesReachableFromSCC.Meet(NodesInThisSCC.Complement()); in TEST()
307 EXPECT_TRUE(G.NodesReachableFrom(j).Meet(NodesInThisSCC).isEmpty()); in TEST()
318 EXPECT_TRUE(NodesInSomeSCC.Meet(NodesInThisSCC).isEmpty()); in TEST()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/sequences/vector/vector.modifiers/
Dresize_not_move_insertable.fail.cpp14 // delete their move constructor. Such types don't meet the Cpp17CopyInsertable
32 // expected-error@* 2 {{The specified type does not meet the requirements of Cpp17MoveInsertable}} in main()
/external/licenseclassifier/v2/assets/License/SISSL-1.2/
Dlicense.txt101 the Modifications do not meet such requirements, You agree to publish either
108 the event that the Modifications you create do not meet the requirements set
242 2.1 Naming Conventions. If any of your Modifications do not meet the
247 2.2 Compliance Claims. If any of your Modifications do not meet the
/external/licenseclassifier/licenses/
DSISSL-1.2.txt101 the Modifications do not meet such requirements, You agree to publish either
108 the event that the Modifications you create do not meet the requirements set
242 2.1 Naming Conventions. If any of your Modifications do not meet the
247 2.2 Compliance Claims. If any of your Modifications do not meet the
/external/cronet/buildtools/third_party/libc++/trunk/include/__algorithm/
Duniform_random_bit_generator_adaptor.h29 // Classic algorithms require the given generator to meet the uniform random bit generator requirem…
33 // To be able to reuse classic implementations, make the given generator meet the classic requireme…
/external/parameter-framework/asio-1.10.6/include/asio/impl/
Dconnect.hpp324 // not meet the documented type requirements for a ComposedConnectHandler. in ASIO_INITFN_RESULT_TYPE()
350 // not meet the documented type requirements for a ComposedConnectHandler. in ASIO_INITFN_RESULT_TYPE()
376 // not meet the documented type requirements for a ComposedConnectHandler. in ASIO_INITFN_RESULT_TYPE()
402 // not meet the documented type requirements for a ComposedConnectHandler. in ASIO_INITFN_RESULT_TYPE()

12345678910>>...86