Home
last modified time | relevance | path

Searched refs:_v (Results 1 – 25 of 125) sorted by relevance

12345

/third_party/mesa3d/src/util/
Du_atomic.h43 #define p_atomic_set(_v, _i) __atomic_store_n((_v), (_i), __ATOMIC_RELEASE) argument
44 #define p_atomic_read(_v) __atomic_load_n((_v), __ATOMIC_ACQUIRE) argument
45 #define p_atomic_read_relaxed(_v) __atomic_load_n((_v), __ATOMIC_RELAXED) argument
58 #define p_atomic_set(_v, _i) (*(_v) = (_i)) argument
59 #define p_atomic_read(_v) (*(_v)) argument
60 #define p_atomic_read_relaxed(_v) (*(_v)) argument
89 #define p_atomic_set(_v, _i) (*(_v) = (_i)) argument
90 #define p_atomic_read(_v) (*(_v)) argument
91 #define p_atomic_read_relaxed(_v) (*(_v)) argument
92 #define p_atomic_dec_zero(_v) (p_atomic_dec_return(_v) == 0) argument
[all …]
/third_party/libwebsockets/include/libwebsockets/
Dlws-logs.h170 #define lwsl_vhost(_v, _fil, ...) \ argument
171 _lws_log_cx(lwsl_vhost_get_cx(_v), lws_log_prepend_vhost, _v, \
184 #define lwsl_hexdump_vhost(_v, _fil, _buf, _len) \ argument
185 lwsl_hexdump_level_cx(lwsl_vhost_get_cx(_v), \
187 _v, _fil, _buf, _len)
418 #define lwsl_vhost_err(_v, ...) lwsl_vhost(_v, LLL_ERR, __VA_ARGS__) argument
420 #define lwsl_vhost_err(_v, ...) do {} while(0) argument
424 #define lwsl_vhost_warn(_v, ...) lwsl_vhost(_v, LLL_WARN, __VA_ARGS__) argument
426 #define lwsl_vhost_warn(_v, ...) do {} while(0) argument
430 #define lwsl_vhost_notice(_v, ...) lwsl_vhost(_v, LLL_NOTICE, __VA_ARGS__) argument
[all …]
Dlws-secure-streams-client.h167 #define lwsl_hexdump_sspc_err(_v, ...) lwsl_hexdump_sspc(_v, LLL_ERR, __VA_ARGS__) argument
168 #define lwsl_hexdump_sspc_warn(_v, ...) lwsl_hexdump_sspc(_v, LLL_WARN, __VA_ARGS__) argument
169 #define lwsl_hexdump_sspc_notice(_v, ...) lwsl_hexdump_sspc(_v, LLL_NOTICE, __VA_ARGS__) argument
170 #define lwsl_hexdump_sspc_info(_v, ...) lwsl_hexdump_sspc(_v, LLL_INFO, __VA_ARGS__) argument
171 #define lwsl_hexdump_sspc_debug(_v, ...) lwsl_hexdump_sspc(_v, LLL_DEBUG, __VA_ARGS__) argument
/third_party/boost/libs/outcome/test/tests/
Dissue0010.cpp40 const char *_v{nullptr}; member
42 constexpr explicit udt1(const char *v) noexcept : _v(v) {} in udt1()
43 constexpr udt1(udt1 &&o) noexcept : _v(o._v) { o._v = nullptr; } in udt1()
47 _v = o._v; in operator =()
48 o._v = nullptr; in operator =()
52 constexpr const char *operator*() const noexcept { return _v; } in operator *()
56 const char *_v{nullptr}; member
58 constexpr explicit udt2(const char *v) noexcept : _v(v) {} in udt2()
59 constexpr udt2(udt2 &&o) noexcept : _v(o._v) { o._v = nullptr; } in udt2()
63 _v = o._v; in operator =()
[all …]
Dissue0061.cpp39 const char *_v{nullptr}; member
41 constexpr udt1(const char *v) noexcept : _v(v) {} // NOLINT in udt1()
47 constexpr const char *operator*() const noexcept { return _v; } in operator *()
51 const char *_v{nullptr}; member
53 constexpr explicit udt2(const char *v) noexcept : _v(v) {} in udt2()
59 constexpr const char *operator*() const noexcept { return _v; } in operator *()
60 bool operator==(const udt1 &o) const noexcept { return _v == *o; } in operator ==()
61 bool operator!=(const udt1 &o) const noexcept { return _v != *o; } in operator !=()
87 const char *_v{nullptr}; member
89 constexpr udt1(const char *v) noexcept : _v(v) {} // NOLINT in udt1()
[all …]
Dissue0016.cpp39 const char *_v{nullptr}; member
41 constexpr explicit udt(const char *v) noexcept : _v(v) {} in udt()
42 constexpr udt(udt &&o) noexcept : _v(o._v) { o._v = nullptr; } in udt()
46 _v = o._v; in operator =()
47 o._v = nullptr; in operator =()
52 constexpr const char *operator*() const noexcept { return _v; } in operator *()
Dissue0012.cpp40 const char *_v{nullptr}; member
42 constexpr explicit udt(const char *v) noexcept : _v(v) {} in udt()
43 constexpr udt(udt &&o) noexcept : _v(o._v) { o._v = nullptr; } in udt()
47 _v = o._v; in operator =()
48 o._v = nullptr; in operator =()
52 constexpr const char *operator*() const noexcept { return _v; } in operator *()
Dexperimental-core-result-status.cpp211 int _v{0}; member
213 udt(udt &&o) noexcept : _v(o._v) {} in udt()
215 : _v(o._v) in udt()
220 _v = o._v; in operator =()
225 _v = o._v; in operator =()
228 ~udt() { _v = 0; } in ~udt()
Dissue0059.cpp41 const char *_v{nullptr}; member
43 constexpr udt(const char *v) noexcept : _v(v) {} // NOLINT in udt()
49 constexpr const char *operator*() const noexcept { return _v; } in operator *()
Dcore-result.cpp224 int _v{0}; member
226 udt(udt &&o) noexcept : _v(o._v) {} in udt()
228 : _v(o._v) in udt()
233 _v = o._v; in operator =()
238 _v = o._v; in operator =()
241 ~udt() { _v = 0; } in ~udt()
/third_party/boost/boost/mp11/detail/
Dmp_plus.hpp27 static const auto _v = (T::value + ... + 0); member
28 using type = std::integral_constant<typename std::remove_const<decltype(_v)>::type, _v>;
44 …static const decltype(T1::value + mp_plus_impl<T...>::type::value) _v = T1::value + mp_plus_impl<T…
45 using type = std::integral_constant<typename std::remove_const<decltype(_v)>::type, _v>;
52_v = T1::value + T2::value + T3::value + T4::value + T5::value + T6::value + T7::value + T8::value…
53 using type = std::integral_constant<typename std::remove_const<decltype(_v)>::type, _v>;
60 static const auto _v = T1::value + mp_plus_impl<T...>::type::value;
61 using type = std::integral_constant<typename std::remove_const<decltype(_v)>::type, _v>;
66 …static const auto _v = T1::value + T2::value + T3::value + T4::value + T5::value + T6::value + T7:…
67 using type = std::integral_constant<typename std::remove_const<decltype(_v)>::type, _v>;
/third_party/toybox/tests/
Dlsattr.test27 _v="12345"
28 testing "-v file" "chattr -v $_v * && lsattr -v file" \
29 "$_v $_A file\n" "" ""
30 testing "-v file_path" "chattr -v $_v * && lsattr -v $_p/file" \
31 "$_v $_A $_p/file\n" "" ""
32 testing "-Radlv file1 file2" "chattr -v $_v * &&
34 "$_v file $sp_44 No_Atime\n$_v input $sp_44 ---\n" "" ""
/third_party/typescript/tests/baselines/reference/
DobjectSpreadSetonlyAccessor.types2 const o1: { foo: number, bar: undefined } = { foo: 1, ... { set bar(_v: number) { } } }
6 >{ foo: 1, ... { set bar(_v: number) { } } } : { bar: undefined; foo: number; }
9 >{ set bar(_v: number) { } } : { bar: number; }
11 >_v : number
13 const o2: { foo: undefined } = { foo: 1, ... { set foo(_v: number) { } } }
16 >{ foo: 1, ... { set foo(_v: number) { } } } : { foo: undefined; }
19 >{ set foo(_v: number) { } } : { foo: number; }
21 >_v : number
DobjectSpreadSetonlyAccessor.symbols2 const o1: { foo: number, bar: undefined } = { foo: 1, ... { set bar(_v: number) { } } }
8 >_v : Symbol(_v, Decl(objectSpreadSetonlyAccessor.ts, 0, 68))
10 const o2: { foo: undefined } = { foo: 1, ... { set foo(_v: number) { } } }
15 >_v : Symbol(_v, Decl(objectSpreadSetonlyAccessor.ts, 1, 55))
DprivateNamesNoDelete.js18 var _v; variable
21 _v.set(this, 1);
22 …delete __classPrivateFieldGet(this, _v); // Error: The operand of a delete operator cannot be a pr…
25 _v = new WeakMap(); variable
DobjectSpreadSetonlyAccessor.js2 const o1: { foo: number, bar: undefined } = { foo: 1, ... { set bar(_v: number) { } } }
3 const o2: { foo: undefined } = { foo: 1, ... { set foo(_v: number) { } } }
8 const o1 = { foo: 1, ...{ set bar(_v) { } } };
9 const o2 = { foo: 1, ...{ set foo(_v) { } } };
/third_party/boost/libs/gil/test/legacy/
Dperformance.cpp55 View _v; member
57 fill_gil_t(const View& v_in,const P& p_in) : _v(v_in), _p(p_in) {} in fill_gil_t()
58 void operator()() const {fill_pixels(_v,_p);} in operator ()()
65 View _v; member
67 fill_nongil_t(const View& v_in,const P& p_in) : _v(v_in), _p(p_in) {} in fill_nongil_t()
69 T* first=(T*)_v.row_begin(0); in operator ()()
70 T* last=first+_v.size()*3; in operator ()()
84 View _v; member
86 fill_nongil_t(const View& v_in,const P& p_in) : _v(v_in), _p(p_in) {} in fill_nongil_t()
88 T1* first=(T1*)_v.row_begin(0); in operator ()()
[all …]
/third_party/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/
Dunion_vector_generated.swift296 var _v = _t.mainCharacter(type: Attacker.self) variable
297 mainCharacter = CharacterUnion(_v?.unpack(), type: .mulan)
299 var _v = _t.mainCharacter(type: Rapunzel_Mutable.self) variable
300 mainCharacter = CharacterUnion(_v?.unpack(), type: .rapunzel)
302 var _v = _t.mainCharacter(type: BookReader_Mutable.self) variable
303 mainCharacter = CharacterUnion(_v?.unpack(), type: .belle)
305 var _v = _t.mainCharacter(type: BookReader_Mutable.self) variable
306 mainCharacter = CharacterUnion(_v?.unpack(), type: .bookfan)
308 var _v = _t.mainCharacter(type: String.self) variable
309 mainCharacter = CharacterUnion(_v?.unpack(), type: .other)
[all …]
/third_party/mesa3d/src/util/format/
Du_format_yuv.h69 const int _v = scale * ( (0.439f * _r) - (0.368f * _g) - (0.071f * _b)); in util_format_rgb_float_to_yuv() local
73 *v = _v + 128; in util_format_rgb_float_to_yuv()
83 const int _v = v - 128; in util_format_yuv_to_rgb_float() local
89 *r = scale * (y_factor * _y + 1.596f * _v); in util_format_yuv_to_rgb_float()
90 *g = scale * (y_factor * _y - 0.391f * _u - 0.813f * _v); in util_format_yuv_to_rgb_float()
111 const int _v = v - 128; in util_format_yuv_to_rgb_8unorm() local
113 const int _r = (298 * _y + 409 * _v + 128) >> 8; in util_format_yuv_to_rgb_8unorm()
114 const int _g = (298 * _y - 100 * _u - 208 * _v + 128) >> 8; in util_format_yuv_to_rgb_8unorm()
/third_party/mindspore/mindspore/ccsrc/utils/
Dcontract.h105 #define ENSURE(_v, _rule) Ensures<decltype(_v), _rule>(_v, {{__FILE__, __LINE__, __FUNCTION__}, #_v
106 #define NOT_NULL(_v) ENSURE(_v, NotNullRule)
/third_party/flutter/flutter/packages/flutter/lib/src/physics/
Dfriction_simulation.dart29 _v = velocity,
58 final double _v;
72 double x(double time) => _x + _v * math.pow(_drag, time) / _dragLog - _v / _dragLog;
75 double dx(double time) => _v * math.pow(_drag, time);
78 double get finalX => _x - _v / _dragLog;
86 if (_v == 0.0 || (_v > 0 ? (x < _x || x > finalX) : (x > _x || x < finalX)))
88 return math.log(_dragLog * (x - _x) / _v + 1.0) / _dragLog;
/third_party/python/Lib/
Dcrypt.py113 for _v in 'b', 'y', 'a', '':
114 if _add_method('BLOWFISH', '2' + _v, 22, 59 + len(_v), rounds=1<<4):
120 del _v, _add_method
/third_party/boost/libs/test/build/
DCMakeLists.txt69 file(RELATIVE_PATH _v ${BOOST_TEST_ROOT_DIR_ABS}/include/boost/test ${_hh})
70 get_filename_component(_v "${_v}" DIRECTORY)
71 string(REPLACE "/" "\\" _v "${_v}")
72 source_group(${_v} FILES ${_h})
/third_party/mesa3d/src/panfrost/util/
Dpan_ir.h296 pan_block **_v; \
297 for (_v = (pan_block **) &blk->successors[0], \
298 v = *_v; \
299 v != NULL && _v < (pan_block **) &blk->successors[2]; \
300 _v++, v = *_v) \
/third_party/musl/porting/linux/user/include/fortify/
Dfortify.h36 #define __DIAGNOSE_CAST(_k, _t, _v) (_k<_t>(_v)) argument
38 #define __DIAGNOSE_CAST(_k, _t, _v) ((_t) (_v))

12345