| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | chrono | 71 struct duration; 73 template<typename _Clock, typename _Dur = typename _Clock::duration> 77 // 20.11.4.3 specialization of common_type (for duration, sfinae-friendly) 97 using type = chrono::duration<__cr, typename __r::type>; 102 /// Specialization of common_type for chrono::duration types. 103 /// @relates duration 105 struct common_type<chrono::duration<_Rep1, _Period1>, 106 chrono::duration<_Rep2, _Period2>> 112 /// Specialization of common_type for two identical chrono::duration types. 113 /// @relates duration [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | chrono | 71 struct duration; 73 template<typename _Clock, typename _Dur = typename _Clock::duration> 77 // 20.11.4.3 specialization of common_type (for duration, sfinae-friendly) 97 using type = chrono::duration<__cr, typename __r::type>; 102 /// Specialization of common_type for chrono::duration types. 103 /// @relates duration 105 struct common_type<chrono::duration<_Rep1, _Period1>, 106 chrono::duration<_Rep2, _Period2>> 112 /// Specialization of common_type for two identical chrono::duration types. 113 /// @relates duration [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | chrono | 25 duration_cast(const duration<Rep, Period>& fd); 41 // duration 44 class duration 46 static_assert(!__is_duration<Rep>::value, "A duration representation can not be a duration"); 47 …static_assert(__is_ratio<Period>::value, "Second template parameter of duration must be a std::rat… 48 static_assert(Period::num > 0, "duration period must be positive"); 53 constexpr duration() = default; 55 constexpr explicit duration(const Rep2& r, 65 constexpr duration(const duration<Rep2, Period2>& d, 78 constexpr common_type<duration>::type operator+() const; [all …]
|
| H A D | condition_variable | 38 template <class Clock, class Duration> 41 const chrono::time_point<Clock, Duration>& abs_time); 43 template <class Clock, class Duration, class Predicate> 46 const chrono::time_point<Clock, Duration>& abs_time, 52 const chrono::duration<Rep, Period>& rel_time); 57 const chrono::duration<Rep, Period>& rel_time, 83 template <class Lock, class Clock, class Duration> 86 const chrono::time_point<Clock, Duration>& abs_time); 88 template <class Lock, class Clock, class Duration, class Predicate> 91 const chrono::time_point<Clock, Duration>& abs_time, [all …]
|
| H A D | shared_mutex | 58 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 59 template <class Clock, class Duration> 60 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 68 try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time); 69 template <class Clock, class Duration> 71 try_lock_shared_until(const chrono::time_point<Clock, Duration>& abs_time); 87 template <class Clock, class Duration> 89 const chrono::time_point<Clock, Duration>& abs_time); 92 const chrono::duration<Rep, Period>& rel_time); 104 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | chrono | 25 duration_cast(const duration<Rep, Period>& fd); 41 // duration 44 class duration 46 static_assert(!__is_duration<Rep>::value, "A duration representation can not be a duration"); 47 …static_assert(__is_ratio<Period>::value, "Second template parameter of duration must be a std::rat… 48 static_assert(Period::num > 0, "duration period must be positive"); 53 constexpr duration() = default; 55 constexpr explicit duration(const Rep2& r, 65 constexpr duration(const duration<Rep2, Period2>& d, 78 constexpr common_type<duration>::type operator+() const; [all …]
|
| H A D | condition_variable | 38 template <class Clock, class Duration> 41 const chrono::time_point<Clock, Duration>& abs_time); 43 template <class Clock, class Duration, class Predicate> 46 const chrono::time_point<Clock, Duration>& abs_time, 52 const chrono::duration<Rep, Period>& rel_time); 57 const chrono::duration<Rep, Period>& rel_time, 83 template <class Lock, class Clock, class Duration> 86 const chrono::time_point<Clock, Duration>& abs_time); 88 template <class Lock, class Clock, class Duration, class Predicate> 91 const chrono::time_point<Clock, Duration>& abs_time, [all …]
|
| H A D | shared_mutex | 58 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 59 template <class Clock, class Duration> 60 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 68 try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time); 69 template <class Clock, class Duration> 71 try_lock_shared_until(const chrono::time_point<Clock, Duration>& abs_time); 87 template <class Clock, class Duration> 89 const chrono::time_point<Clock, Duration>& abs_time); 92 const chrono::duration<Rep, Period>& rel_time); 104 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/leds/ |
| H A D | ledtrig-transient.rst | 68 This trigger exports three properties, activate, state, and duration. When 71 - duration allows setting timer value in msecs. The initial value is 0. 73 duration as needed. The initial and default value is 0. This will allow 74 duration to be set after trigger activation. 76 duration. 82 to allow duration to be set. 85 duration running. 89 duration 90 - one shot timer value. When activate is set, duration value 93 echo new_value > duration [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/rc/ |
| H A D | rc-core-priv.h | 182 static inline void decrease_duration(struct ir_raw_event *ev, unsigned duration) in decrease_duration() argument 184 if (duration > ev->duration) in decrease_duration() 185 ev->duration = 0; in decrease_duration() 187 ev->duration -= duration; in decrease_duration() 203 u32 duration) in init_ir_raw_event_duration() argument 206 .duration = duration, in init_ir_raw_event_duration() 213 * @leader_pulse: duration of leader pulse (if any) 0 if continuing 215 * @leader_space: duration of leader space (if any) 216 * @clock: duration of each pulse/space in ns 219 * @trailer_space: duration of trailer space in ns [all …]
|
| H A D | ir-xmp-decoder.c | 19 /* should be 80ms but not all duration supliers can go that high */ 46 data->state, data->count, ev.duration, TO_STR(ev.pulse)); in ir_xmp_decode() 54 if (eq_margin(ev.duration, XMP_LEADER, XMP_UNIT / 2)) { in ir_xmp_decode() 65 if (eq_margin(ev.duration, XMP_LEADER, XMP_UNIT / 2)) in ir_xmp_decode() 74 if (geq_margin(ev.duration, XMP_TRAILER_SPACE, XMP_NIBBLE_PREFIX)) { in ir_xmp_decode() 82 data->count, ev.duration); in ir_xmp_decode() 147 } else if (geq_margin(ev.duration, XMP_HALFFRAME_SPACE, XMP_NIBBLE_PREFIX)) { in ir_xmp_decode() 151 data->count, ev.duration); in ir_xmp_decode() 162 data->count, ev.duration); in ir_xmp_decode() 167 } else if (geq_margin(ev.duration, XMP_NIBBLE_PREFIX, XMP_UNIT)) { in ir_xmp_decode() [all …]
|
| /OK3568_Linux_fs/kernel/net/mac80211/ |
| H A D | airtime.c | 29 /* Transmit duration for the raw data part of an average sized packet */ 50 /* Transmit duration for the raw data part of an average sized packet */ 96 #define GROUP_SHIFT(duration) \ argument 97 _MAX(0, 16 - __builtin_clz(duration)) 103 .duration = { \ 134 .duration = { \ 176 .duration = { \ 213 u16 duration[MCS_GROUP_RATES]; member 390 u32 duration; in ieee80211_calc_legacy_rate_duration() local 393 duration = 144 + 48; /* preamble + PLCP */ in ieee80211_calc_legacy_rate_duration() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/ |
| H A D | transition_options.hpp | 11 optional<Duration> duration; member in mbgl::style::TransitionOptions 12 optional<Duration> delay; 14 TransitionOptions(optional<Duration> duration_ = {}, in TransitionOptions() 15 optional<Duration> delay_ = {}) 16 : duration(std::move(duration_)), 21 duration ? duration : defaults.duration, in reverseMerge() 27 return duration || delay; in isDefined()
|
| /OK3568_Linux_fs/external/xserver/xkb/ |
| H A D | ddxBeep.c | 123 int pitch, duration; in _XkbDDXBeepExpire() local 140 duration = oldDuration = ctrl->bell_duration; in _XkbDDXBeepExpire() 146 duration = 0; in _XkbDDXBeepExpire() 157 duration = SHORT_TONE; in _XkbDDXBeepExpire() 163 duration = SHORT_TONE; in _XkbDDXBeepExpire() 179 duration = VERY_LONG_TONE; in _XkbDDXBeepExpire() 185 duration = SHORT_TONE; in _XkbDDXBeepExpire() 195 duration = VERY_LONG_TONE; in _XkbDDXBeepExpire() 197 duration = SHORT_TONE; in _XkbDDXBeepExpire() 202 duration = SHORT_TONE; in _XkbDDXBeepExpire() [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/ |
| H A D | global_data.c | 5 static void test_global_data_number(struct bpf_object *obj, __u32 duration) in test_global_data_number() argument 40 static void test_global_data_string(struct bpf_object *obj, __u32 duration) in test_global_data_string() argument 75 static void test_global_data_struct(struct bpf_object *obj, __u32 duration) in test_global_data_struct() argument 103 static void test_global_data_rdonly(struct bpf_object *obj, __u32 duration) in test_global_data_rdonly() argument 128 __u32 duration = 0, retval; in test_global_data() local 137 NULL, NULL, &retval, &duration); in test_global_data() 139 "err %d errno %d retval %d duration %d\n", in test_global_data() 140 err, errno, retval, duration); in test_global_data() 142 test_global_data_number(obj, duration); in test_global_data() 143 test_global_data_string(obj, duration); in test_global_data() [all …]
|
| H A D | tailcalls.c | 15 __u32 retval, duration; in test_tailcall_1() local 58 &duration, &retval, NULL); in test_tailcall_1() 68 &duration, &retval, NULL); in test_tailcall_1() 89 &duration, &retval, NULL); in test_tailcall_1() 114 &duration, &retval, NULL); in test_tailcall_1() 124 &duration, &retval, NULL); in test_tailcall_1() 134 &duration, &retval, NULL); in test_tailcall_1() 153 __u32 retval, duration; in test_tailcall_2() local 195 &duration, &retval, NULL); in test_tailcall_2() 205 &duration, &retval, NULL); in test_tailcall_2() [all …]
|
| H A D | pkt_access.c | 9 __u32 duration, retval; in test_pkt_access() local 17 NULL, NULL, &retval, &duration); in test_pkt_access() 19 "err %d errno %d retval %d duration %d\n", in test_pkt_access() 20 err, errno, retval, duration); in test_pkt_access() 23 NULL, NULL, &retval, &duration); in test_pkt_access() 25 "err %d errno %d retval %d duration %d\n", in test_pkt_access() 26 err, errno, retval, duration); in test_pkt_access()
|
| /OK3568_Linux_fs/kernel/drivers/char/tpm/ |
| H A D | tpm1-cmd.c | 282 * tpm1_calc_ordinal_duration() - calculate the maximum command duration 289 * Return: A maximal duration time for an ordinal in jiffies. 294 int duration = 0; in tpm1_calc_ordinal_duration() local 297 * We only have a duration table for protected commands, where the upper in tpm1_calc_ordinal_duration() 304 duration = chip->duration[duration_idx]; in tpm1_calc_ordinal_duration() 305 if (duration <= 0) in tpm1_calc_ordinal_duration() 308 return duration; in tpm1_calc_ordinal_duration() 419 sizeof(cap.duration)); in tpm1_get_timeouts() 423 chip->duration[TPM_SHORT] = in tpm1_get_timeouts() 424 usecs_to_jiffies(be32_to_cpu(cap.duration.tpm_short)); in tpm1_get_timeouts() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/cpuidle/governors/ |
| H A D | teo.c | 20 * idle duration values greater than the time till the closest timer, as the 35 * duration in the past more often than it matched the sleep length alone 36 * (i.e. the observed idle duration was significantly shorter than the sleep 42 * - If the majority of the most recent idle duration values are below the 44 * compute the new expected idle duration and find an idle state matching it 62 * Number of the most recent idle duration values to take into consideration for 73 * A CPU wakeup is "matched" by a given idle state if the idle duration measured 76 * "matches" a CPU wakeup when the measured idle duration is at least equal to 100 * @intervals: Saved idle duration values. 136 * duration fall into the same "bin", so use last_residency_ns in teo_update() [all …]
|
| /OK3568_Linux_fs/kernel/tools/power/cpupower/utils/ |
| H A D | cpufreq-info.c | 124 static void print_duration(unsigned long duration) in print_duration() argument 129 if (duration > 1000000) in print_duration() 130 printf("%u.%06u ms", ((unsigned int) duration/1000000), in print_duration() 131 ((unsigned int) duration%1000000)); in print_duration() 132 else if (duration > 100000) in print_duration() 133 printf("%u us", ((unsigned int) duration/1000)); in print_duration() 134 else if (duration > 1000) in print_duration() 135 printf("%u.%03u us", ((unsigned int) duration/1000), in print_duration() 136 ((unsigned int) duration%1000)); in print_duration() 138 printf("%lu ns", duration); in print_duration() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/intel/iwlwifi/mvm/ |
| H A D | time-event.h | 77 * and for a certain duration, the driver needs to issue a time event. 89 * time and for a certain duration, it sends a Time Event. The flow against the 98 * What is the duration of the event? 122 * @duration: the duration of the session in TU. 138 u32 duration, u32 min_duration, 165 * @duration: the requested duration in millisecond for the fw to be on the 170 * which means that the fw will stay in the channel for the request %duration 178 int duration, enum ieee80211_roc_type type); 226 * @duration: the duration of the NoA in TU. 234 u32 duration, u32 apply_time); [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188eu/hal/phydm/txbf/ |
| H A D | haltxbfinterface.c | 154 u16 duration = 0; local 171 duration = 2 * a_SifsTime + 40; 174 duration += 87; 176 duration += 180; 178 SET_80211_HDR_DURATION(buffer, duration); 311 u16 duration = 0; local 330 duration = 2 * a_SifsTime + 44; 333 duration += 40; 335 duration += 87; 337 duration += 180; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188fu/hal/phydm/txbf/ |
| H A D | haltxbfinterface.c | 154 u16 duration = 0; local 171 duration = 2 * a_SifsTime + 40; 174 duration += 87; 176 duration += 180; 178 SET_80211_HDR_DURATION(buffer, duration); 311 u16 duration = 0; local 330 duration = 2 * a_SifsTime + 44; 333 duration += 40; 335 duration += 87; 337 duration += 180; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/hal/phydm/txbf/ |
| H A D | haltxbfinterface.c | 154 u16 duration = 0; local 171 duration = 2 * a_SifsTime + 40; 174 duration += 87; 176 duration += 180; 178 SET_80211_HDR_DURATION(buffer, duration); 311 u16 duration = 0; local 330 duration = 2 * a_SifsTime + 44; 333 duration += 40; 335 duration += 87; 337 duration += 180; [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/hal/phydm/txbf/ |
| H A D | haltxbfinterface.c | 153 u16 duration = 0; local 170 duration = 2 * a_SifsTime + 40; 173 duration += 87; 175 duration += 180; 177 SET_80211_HDR_DURATION(buffer, duration); 310 u16 duration = 0; local 329 duration = 2 * a_SifsTime + 44; 332 duration += 40; 334 duration += 87; 336 duration += 180; [all …]
|