Home
last modified time | relevance | path

Searched full:generation (Results 1 – 25 of 10873) sorted by relevance

12345678910>>...435

/aosp_15_r20/external/perfmark/impl/src/main/java/io/perfmark/impl/
H A DMark.java33 private final long generation; field in Mark
45 public static Mark taskStart(long generation, long nanoTime, String name) { in taskStart() argument
46 return new Mark(nanoTime, N0, N0, name, S0, S0, generation, Operation.TASK_START_N1S1); in taskStart()
49 public static Mark taskStart(long generation, long nanoTime, String name, String subName) { in taskStart() argument
50 return new Mark(nanoTime, N0, N0, name, subName, S0, generation, Operation.TASK_START_N1S2); in taskStart()
53 public static Mark taskEnd(long generation, long nanoTime) { in taskEnd() argument
54 return new Mark(nanoTime, N0, N0, S0, S0, S0, generation, Operation.TASK_END_N1S0); in taskEnd()
57 public static Mark taskEnd(long generation, long nanoTime, String name) { in taskEnd() argument
58 return new Mark(nanoTime, N0, N0, name, S0, S0, generation, Operation.TASK_END_N1S1); in taskEnd()
61 public static Mark taskEnd(long generation, long nanoTime, String name, String subName) { in taskEnd() argument
[all …]
/aosp_15_r20/external/toolchain-utils/bestflags/
H A Dsteering.py4 """The framework stage that produces the next generation of tasks to run.
15 """The core method template that produces the next generation of tasks to run.
17 This method waits for the results of the tasks from the previous generation.
19 next generation of tasks.
21 The main logic of producing the next generation from previous generation is
25 in the concrete subclasses of the class Generation to produce the next
26 application-specific generation. The steering method invokes the 'Next'
27 method, produces the next generation and submits the tasks in this generation
43 # referenced to as ready tasks. Once there is no pending generation, the
53 for generation in generations:
[all …]
H A Dgeneration.py4 """A generation of a set of tasks.
8 This module contains the base generation class. This class contains the tasks of
9 this current generation. The generation will not evolve to the next generation
10 until all the tasks in this generation are done executing. It also contains a
11 set of tasks that could potentially be used to generate the next generation,
27 class Generation(object): class
28 """A generation of a framework run.
30 The base class of generation. Concrete subclasses, e.g., GAGeneration should
36 """Set up the tasks set of this generation.
41 next generation.
[all …]
H A Dsteering_test.py14 from generation import Generation
26 # The number of tasks to be put in each generation to be tested.
34 class MockGeneration(Generation):
35 """This class emulates an actual generation.
46 next_generations: A list of generations as the next generation of the
47 current generation.
49 Generation.__init__(self, tasks, None)
65 generation. The steering algorithm should send all the tasks to the next stage
66 and should terminate once there is no pending generation. A generation is
85 # Generate a sequence of generations to be tested. Each generation will
[all …]
/aosp_15_r20/external/python/cpython3/Doc/library/
Dgc.rst41 .. function:: collect(generation=2)
43 With no arguments, run a full collection. The optional argument *generation*
44 may be an integer specifying which generation to collect (from 0 to 2). A
45 :exc:`ValueError` is raised if the generation number is invalid. The number of
49 whenever a full collection or collection of the highest generation (2)
69 .. function:: get_objects(generation=None)
72 returned. If *generation* is not None, return only the objects tracked by
73 the collector that are in that generation.
76 New *generation* parameter.
78 .. audit-event:: gc.get_objects generation gc.get_objects
[all …]
/aosp_15_r20/external/coreboot/util/inteltool/
H A Dinteltool.c83 "0th generation (Nehalem family) Core Processor" },
85 "1st generation (Westmere family) Core Processor" },
87 "1st generation (Westmere family) Core Processor" },
89 "1st generation (Westmere family) Core Processor" },
91 "2nd generation (Sandy Bridge family) Core Processor (Desktop)" },
93 "2nd generation (Sandy Bridge family) Core Processor (Mobile)" },
95 "2nd generation (Sandy Bridge family) Core Processor (Xeon E3)" },
97 "3rd generation (Ivy Bridge family) Core Processor (Desktop)" },
99 "3rd generation (Ivy Bridge family) Core Processor (Mobile)" },
101 "3rd generation (Ivy Bridge family) Core Processor (Xeon E3 v2)" },
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/mls-rs/src/group/
Dsecret_tree.rs166 generation: u32, in message_key_generation()
172 .get_message_key(cipher_suite_provider, generation) in message_key_generation()
177 .get_message_key(cipher_suite_provider, generation) in message_key_generation()
293 generation: u32, in message_key_generation()
298 .message_key_generation(cipher_suite, generation, key_type) in message_key_generation()
328 pub(crate) generation: u32, field
336 .field("generation", &self.generation) in fmt()
355 /// Generation of this key within the key schedule.
357 pub fn generation(&self) -> u32 { in generation() method
358 self.generation in generation()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/sharded-slab/src/page/
Dslot.rs31 pub(crate) struct Generation<C = cfg::DefaultConfig> { struct
46 struct LifecycleGen<C>(Generation<C>); argument
56 impl<C: cfg::Config> Pack<C> for Generation<C> { implementation
57 /// Use all the remaining bits in the word for the generation counter, minus
75 impl<C: cfg::Config> Generation<C> { impl
107 pub(crate) fn get(&self, gen: Generation<C>) -> Option<Guard<T, C>> { in get()
124 // Is it okay to access this slot? The accessed generation must be in get()
127 // generation, return `None`. in get()
151 // Since the new state may mean that the accessed generation in get()
167 fn mark_release(&self, gen: Generation<C>) -> Option<bool> { in mark_release()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/
Dtrace.go16 // - traceAdvance cannot return until the previous generation's buffers are all flushed.
54 readerGen atomic.Uintptr // the generation the reader is currently reading for
55 flushedGen atomic.Uintptr // the last completed generation
59 // it notifies traceAdvance that the reader is done with a generation.
118 // Trace generation counter.
169 // Compute the first generation for this StartTrace.
171 // Note: we start from the last non-zero generation rather than 1 so we
321 // traceAdvance moves tracing to the next generation, and cleans up the current generation,
323 // altogether instead of advancing to the next generation.
334 // about the generation we're advancing _into_ since we'll do all the cleanup in this
[all …]
/aosp_15_r20/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/
Dtel_lookup_tables.py25 return _TelTables.technology_tbl[rat_type]['generation']
28 def network_preference_for_generation(generation, operator, phone_type=None): argument
30 return _TelTables.operator_network_tbl[operator][generation][
34 generation]['network_preference']
42 def rat_family_for_generation(generation, operator, phone_type=None): argument
44 return _TelTables.operator_network_tbl[operator][generation][
48 generation]['rat_family']
327 'generation': tel_defines.GEN_3G,
334 'generation': tel_defines.GEN_2G,
341 'generation': tel_defines.GEN_2G,
[all …]
/aosp_15_r20/external/python/cpython3/Modules/clinic/
Dgcmodule.c.h70 "collect($module, /, generation=2)\n"
76 "may be an integer specifying which generation to collect. A ValueError\n"
77 "is raised if the generation number is invalid.\n"
85 gc_collect_impl(PyObject *module, int generation);
91 static const char * const _keywords[] = {"generation", NULL}; in gc_collect()
95 int generation = NUM_GENERATIONS - 1; in gc_collect() local
105 generation = _PyLong_AsInt(args[0]); in gc_collect()
106 if (generation == -1 && PyErr_Occurred()) { in gc_collect()
110 _return_value = gc_collect_impl(module, generation); in gc_collect()
224 "get_objects($module, /, generation=None)\n"
[all …]
/aosp_15_r20/frameworks/av/media/codec2/tests/aidl/
H A DGraphicsTracker_test.cpp107 uint32_t generation) : BnProducerListener(), in TestProducerListener()
108 mTracker(tracker), mStat(stat), mGeneration(generation) {} in TestProducerListener()
315 uint32_t generation = 1; in TEST_F() local
319 ASSERT_TRUE(configure(new TestProducerListener(mTracker, mBqStat, generation), in TEST_F()
322 ASSERT_EQ(OK, mProducer->setGenerationNumber(generation)); in TEST_F()
323 c2_status_t ret = mTracker->configureGraphics(mProducer, generation); in TEST_F()
355 uint32_t generation = 1; in TEST_F() local
359 ASSERT_TRUE(configure(new TestProducerListener(mTracker, mBqStat, generation), in TEST_F()
362 ASSERT_EQ(OK, mProducer->setGenerationNumber(generation)); in TEST_F()
363 c2_status_t ret = mTracker->configureGraphics(mProducer, generation); in TEST_F()
[all …]
/aosp_15_r20/external/tcpdump/tests/
H A Dpimv2_sm-v.out5 Generation ID Option (20), length 4, Value: 0xd76fc4dc
12 Generation ID Option (20), length 4, Value: 0xd77051ab
25 Generation ID Option (20), length 4, Value: 0xd76fc4dc
32 Generation ID Option (20), length 4, Value: 0xd77051ab
39 Generation ID Option (20), length 4, Value: 0xd76fc4dc
46 Generation ID Option (20), length 4, Value: 0xd77051ab
59 Generation ID Option (20), length 4, Value: 0xd76fc4dc
66 Generation ID Option (20), length 4, Value: 0xd77051ab
75 Generation ID Option (20), length 4, Value: 0xd76fc4dc
82 Generation ID Option (20), length 4, Value: 0xd77051ab
[all …]
H A Dpimv2_dm-v.out5 Generation ID Option (20), length 4, Value: 0xd76852f6
12 Generation ID Option (20), length 4, Value: 0xd767b714
27 Generation ID Option (20), length 4, Value: 0xd76852f6
34 Generation ID Option (20), length 4, Value: 0xd767b714
41 Generation ID Option (20), length 4, Value: 0xd76852f6
48 Generation ID Option (20), length 4, Value: 0xd767b714
55 Generation ID Option (20), length 4, Value: 0xd76852f6
62 Generation ID Option (20), length 4, Value: 0xd767b714
69 Generation ID Option (20), length 4, Value: 0xd76852f6
76 Generation ID Option (20), length 4, Value: 0xd767b714
[all …]
/aosp_15_r20/external/python/cpython3/Modules/
Dgcmodule.c50 // update_refs() set this bit for all objects in current generation.
193 to gc_refs, for each object in the generation being collected.
195 times an object is referenced directly from outside the generation
199 Objects in generation being collected are marked PREV_MASK_COLLECTING in
218 indirectly) from outside the generation into an "unreachable" set and
455 * generation being collected, which can be recognized in visit_decref()
495 // Ignore objects in other generation. in visit_reachable()
748 * weakrefs with callbacks may be moved into the `old` generation. Objects
832 * outside the current generation, CT may be reachable from the in handle_weakrefs()
843 * root to this generation, and therefore its callback did too. So in handle_weakrefs()
[all …]
/aosp_15_r20/prebuilts/vndk/v33/x86_64/include/generated-headers/hardware/interfaces/wifi/hostapd/aidl/android.hardware.wifi.hostapd-V1-ndk-source/gen/include/aidl/android/hardware/wifi/hostapd/
DGeneration.h19 enum class Generation : int32_t { enum
39 [[nodiscard]] static inline std::string toString(Generation val) { in toString()
41 case Generation::WIFI_STANDARD_UNKNOWN: in toString()
43 case Generation::WIFI_STANDARD_LEGACY: in toString()
45 case Generation::WIFI_STANDARD_11N: in toString()
47 case Generation::WIFI_STANDARD_11AC: in toString()
49 case Generation::WIFI_STANDARD_11AD: in toString()
51 case Generation::WIFI_STANDARD_11AX: in toString()
53 case Generation::WIFI_STANDARD_11BE: in toString()
69 …dl::android::hardware::wifi::hostapd::Generation, 7> enum_values<aidl::android::hardware::wifi::ho…
[all …]
DApInfo.h12 #include <aidl/android/hardware/wifi/hostapd/Generation.h>
31 …dl::android::hardware::wifi::hostapd::Generation generation = ::aidl::android::hardware::wifi::hos…
38 …dwidth, generation, apIfaceInstanceMacAddress) != std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
41 …ndwidth, generation, apIfaceInstanceMacAddress) < std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
44 …dwidth, generation, apIfaceInstanceMacAddress) <= std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
47 …dwidth, generation, apIfaceInstanceMacAddress) == std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
50 …ndwidth, generation, apIfaceInstanceMacAddress) > std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
53 …dwidth, generation, apIfaceInstanceMacAddress) >= std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
64 os << ", generation: " << ::android::internal::ToString(generation); in toString()
/aosp_15_r20/prebuilts/vndk/v33/arm64/include/generated-headers/hardware/interfaces/wifi/hostapd/aidl/android.hardware.wifi.hostapd-V1-ndk-source/gen/include/aidl/android/hardware/wifi/hostapd/
DGeneration.h19 enum class Generation : int32_t { enum
39 [[nodiscard]] static inline std::string toString(Generation val) { in toString()
41 case Generation::WIFI_STANDARD_UNKNOWN: in toString()
43 case Generation::WIFI_STANDARD_LEGACY: in toString()
45 case Generation::WIFI_STANDARD_11N: in toString()
47 case Generation::WIFI_STANDARD_11AC: in toString()
49 case Generation::WIFI_STANDARD_11AD: in toString()
51 case Generation::WIFI_STANDARD_11AX: in toString()
53 case Generation::WIFI_STANDARD_11BE: in toString()
69 …dl::android::hardware::wifi::hostapd::Generation, 7> enum_values<aidl::android::hardware::wifi::ho…
[all …]
DApInfo.h12 #include <aidl/android/hardware/wifi/hostapd/Generation.h>
31 …dl::android::hardware::wifi::hostapd::Generation generation = ::aidl::android::hardware::wifi::hos…
38 …dwidth, generation, apIfaceInstanceMacAddress) != std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
41 …ndwidth, generation, apIfaceInstanceMacAddress) < std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
44 …dwidth, generation, apIfaceInstanceMacAddress) <= std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
47 …dwidth, generation, apIfaceInstanceMacAddress) == std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
50 …ndwidth, generation, apIfaceInstanceMacAddress) > std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
53 …dwidth, generation, apIfaceInstanceMacAddress) >= std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
64 os << ", generation: " << ::android::internal::ToString(generation); in toString()
/aosp_15_r20/prebuilts/vndk/v33/x86/include/generated-headers/hardware/interfaces/wifi/hostapd/aidl/android.hardware.wifi.hostapd-V1-ndk-source/gen/include/aidl/android/hardware/wifi/hostapd/
DGeneration.h19 enum class Generation : int32_t { enum
39 [[nodiscard]] static inline std::string toString(Generation val) { in toString()
41 case Generation::WIFI_STANDARD_UNKNOWN: in toString()
43 case Generation::WIFI_STANDARD_LEGACY: in toString()
45 case Generation::WIFI_STANDARD_11N: in toString()
47 case Generation::WIFI_STANDARD_11AC: in toString()
49 case Generation::WIFI_STANDARD_11AD: in toString()
51 case Generation::WIFI_STANDARD_11AX: in toString()
53 case Generation::WIFI_STANDARD_11BE: in toString()
69 …dl::android::hardware::wifi::hostapd::Generation, 7> enum_values<aidl::android::hardware::wifi::ho…
[all …]
DApInfo.h12 #include <aidl/android/hardware/wifi/hostapd/Generation.h>
31 …dl::android::hardware::wifi::hostapd::Generation generation = ::aidl::android::hardware::wifi::hos…
38 …dwidth, generation, apIfaceInstanceMacAddress) != std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
41 …ndwidth, generation, apIfaceInstanceMacAddress) < std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
44 …dwidth, generation, apIfaceInstanceMacAddress) <= std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
47 …dwidth, generation, apIfaceInstanceMacAddress) == std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
50 …ndwidth, generation, apIfaceInstanceMacAddress) > std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
53 …dwidth, generation, apIfaceInstanceMacAddress) >= std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
64 os << ", generation: " << ::android::internal::ToString(generation); in toString()
/aosp_15_r20/prebuilts/vndk/v33/arm/include/generated-headers/hardware/interfaces/wifi/hostapd/aidl/android.hardware.wifi.hostapd-V1-ndk-source/gen/include/aidl/android/hardware/wifi/hostapd/
DGeneration.h19 enum class Generation : int32_t { enum
39 [[nodiscard]] static inline std::string toString(Generation val) { in toString()
41 case Generation::WIFI_STANDARD_UNKNOWN: in toString()
43 case Generation::WIFI_STANDARD_LEGACY: in toString()
45 case Generation::WIFI_STANDARD_11N: in toString()
47 case Generation::WIFI_STANDARD_11AC: in toString()
49 case Generation::WIFI_STANDARD_11AD: in toString()
51 case Generation::WIFI_STANDARD_11AX: in toString()
53 case Generation::WIFI_STANDARD_11BE: in toString()
69 …dl::android::hardware::wifi::hostapd::Generation, 7> enum_values<aidl::android::hardware::wifi::ho…
[all …]
DApInfo.h12 #include <aidl/android/hardware/wifi/hostapd/Generation.h>
31 …dl::android::hardware::wifi::hostapd::Generation generation = ::aidl::android::hardware::wifi::hos…
38 …dwidth, generation, apIfaceInstanceMacAddress) != std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
41 …ndwidth, generation, apIfaceInstanceMacAddress) < std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
44 …dwidth, generation, apIfaceInstanceMacAddress) <= std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
47 …dwidth, generation, apIfaceInstanceMacAddress) == std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
50 …ndwidth, generation, apIfaceInstanceMacAddress) > std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
53 …dwidth, generation, apIfaceInstanceMacAddress) >= std::tie(rhs.ifaceName, rhs.apIfaceInstance, rhs…
64 os << ", generation: " << ::android::internal::ToString(generation); in toString()
/aosp_15_r20/external/rust/android-crates-io/crates/managed/src/
Dslotmap.rs59 /// The source of generation ids.
60 /// Generation ids are a positive, non-zero value.
61 generation: Generation, field
83 generation: Generation, field
93 /// The generation counter.
97 struct Generation(isize); struct
118 .generation().ok()?; in get()
120 if slot_generation != index.generation { in get()
132 .generation().ok()?; in get_mut()
134 if slot_generation != index.generation { in get_mut()
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dstorage_v1.objects.html87 …<code><a href="#delete">delete(bucket, object, generation=None, ifGenerationMatch=None, ifGenerati…
88 …s are permanent if versioning is not enabled for the bucket, or if the generation parameter is use…
90 …<code><a href="#get">get(bucket, object, generation=None, ifGenerationMatch=None, ifGenerationNotM…
93 …<code><a href="#getIamPolicy">getIamPolicy(bucket, object, generation=None, provisionalUserProject…
96 …<code><a href="#get_media">get_media(bucket, object, generation=None, ifGenerationMatch=None, ifGe…
108 …<code><a href="#patch">patch(bucket, object, body=None, generation=None, ifGenerationMatch=None, i…
114 …<code><a href="#setIamPolicy">setIamPolicy(bucket, object, body=None, generation=None, provisional…
117 …<code><a href="#testIamPermissions">testIamPermissions(bucket, object, permissions, generation=Non…
120 …<code><a href="#update">update(bucket, object, body=None, generation=None, ifGenerationMatch=None,…
162 …&quot;generation&quot;: &quot;A String&quot;, # The content generation of the object, if applied t…
[all …]

12345678910>>...435