Lines Matching full:point

266 struct atomic<floating-point-type> {  // since C++20
267 using value_type = floating-point-type;
275 constexpr atomic(floating-point-type) noexcept;
280 void store(floating-point-type, memory_order = memory_order::seq_cst) volatile noexcept;
281 void store(floating-point-type, memory_order = memory_order::seq_cst) noexcept;
282 floating-point-type operator=(floating-point-type) volatile noexcept;
283 floating-point-type operator=(floating-point-type) noexcept;
284 floating-point-type load(memory_order = memory_order::seq_cst) volatile noexcept;
285 floating-point-type load(memory_order = memory_order::seq_cst) noexcept;
286 operator floating-point-type() volatile noexcept;
287 operator floating-point-type() noexcept;
289 floating-point-type exchange(floating-point-type,
291 floating-point-type exchange(floating-point-type,
293 bool compare_exchange_weak(floating-point-type&, floating-point-type,
295 bool compare_exchange_weak(floating-point-type&, floating-point-type,
297 bool compare_exchange_strong(floating-point-type&, floating-point-type,
299 bool compare_exchange_strong(floating-point-type&, floating-point-type,
301 bool compare_exchange_weak(floating-point-type&, floating-point-type,
303 bool compare_exchange_weak(floating-point-type&, floating-point-type,
305 bool compare_exchange_strong(floating-point-type&, floating-point-type,
307 bool compare_exchange_strong(floating-point-type&, floating-point-type,
310 floating-point-type fetch_add(floating-point-type,
312 floating-point-type fetch_add(floating-point-type,
314 floating-point-type fetch_sub(floating-point-type,
316 floating-point-type fetch_sub(floating-point-type,
319 floating-point-type operator+=(floating-point-type) volatile noexcept;
320 floating-point-type operator+=(floating-point-type) noexcept;
321 floating-point-type operator-=(floating-point-type) volatile noexcept;
322 floating-point-type operator-=(floating-point-type) noexcept;
324 void wait(floating-point-type, memory_order = memory_order::seq_cst) const volatile noexcept;
325 void wait(floating-point-type, memory_order = memory_order::seq_cst) const noexcept;