/third_party/iowow/src/ |
D | basedefs.h | 320 #define IW_READBV(ptr_, t_, m_) \ argument 321 static_assert(sizeof(t_) == 1, "Mismatch t_ size"); \ 322 (t_) = 0; \ 323 memcpy(&(t_), ptr_, 1); \ 324 (m_) = (t_); \ 327 #define IW_READSV(ptr_, t_, m_) \ argument 328 static_assert(sizeof(t_) == 2, "Mismatch t_ size"); \ 329 (t_) = 0; \ 330 memcpy(&(t_), ptr_, 2); \ 331 (m_) = IW_ITOHS(t_); \ [all …]
|
/third_party/elfutils/libcpu/ |
D | memory-access.h | 155 ({ uint16_t t_ = read_2ubyte_unaligned (Addr); \ 157 t_; }) 159 ({ int16_t t_ = read_2sbyte_unaligned (Addr); \ 161 t_; }) 164 ({ uint32_t t_ = read_4ubyte_unaligned (Addr); \ 166 t_; }) 168 ({ int32_t t_ = read_4sbyte_unaligned (Addr); \ 170 t_; }) 173 ({ uint64_t t_ = read_8ubyte_unaligned (Addr); \ 175 t_; }) [all …]
|
/third_party/elfutils/libdw/ |
D | memory-access.h | 323 ({ uint16_t t_ = read_2ubyte_unaligned (Dbg, Addr); \ 325 t_; }) 327 ({ int16_t t_ = read_2sbyte_unaligned (Dbg, Addr); \ 329 t_; }) 332 ({ uint32_t t_ = read_4ubyte_unaligned (Dbg, Addr); \ 334 t_; }) 336 ({ int32_t t_ = read_4sbyte_unaligned (Dbg, Addr); \ 338 t_; }) 341 ({ uint64_t t_ = read_8ubyte_unaligned (Dbg, Addr); \ 343 t_; }) [all …]
|
/third_party/mesa3d/src/amd/vulkan/radix_sort/common/ |
D | macros.h | 21 #define OFFSETOF_MACRO(t_,m_) offsetof(t_,m_) argument 22 #define MEMBER_SIZE_MACRO(t_,m_) sizeof(((t_*)0)->m_) argument 34 #define MAX_MACRO(t_,a_,b_) (((a_) > (b_)) ? (a_) : (b_)) argument 35 #define MIN_MACRO(t_,a_,b_) (((a_) < (b_)) ? (a_) : (b_)) argument
|
/third_party/nghttp2/src/ |
D | shrpx_rate_limit.cc | 50 ev_timer_init(&t_, regencb, 0., 1.); in RateLimit() 51 t_.data = this; in RateLimit() 53 ev_timer_again(loop_, &t_); in RateLimit() 57 RateLimit::~RateLimit() { ev_timer_stop(loop_, &t_); } in ~RateLimit()
|
D | shrpx_rate_limit.h | 56 ev_timer t_;
|
/third_party/openh264/module/ |
D | gmp-openh264.cpp | 127 SelfDestruct (T* t) : t_ (t) {} in SelfDestruct() 129 if (t_) { in ~SelfDestruct() 130 t_->Destroy(); in ~SelfDestruct() 135 T* t = t_; in forget() 136 t_ = nullptr; in forget() 142 T* t_; member in SelfDestruct
|
/third_party/mbedtls/3rdparty/everest/library/kremlib/ |
D | FStar_UInt128_extracted.c | 395 uint64_t t_ = scrut.f3; in FStar_UInt128_mul_wide_impl() local 399 FStar_UInt128_u32_combine_(u1 * (y >> FStar_UInt128_u32_32) + FStar_UInt128_u64_mod_32(t_), in FStar_UInt128_mul_wide_impl() 403 + (t_ >> FStar_UInt128_u32_32) in FStar_UInt128_mul_wide_impl() 404 + ((u1 * (y >> FStar_UInt128_u32_32) + FStar_UInt128_u64_mod_32(t_)) >> FStar_UInt128_u32_32) in FStar_UInt128_mul_wide_impl()
|
/third_party/cef/include/base/internal/ |
D | cef_bind_internal.h | 149 explicit OwnedRefWrapper(const T& t) : t_(t) {} in OwnedRefWrapper() 150 explicit OwnedRefWrapper(T&& t) : t_(std::move(t)) {} in OwnedRefWrapper() 151 T& get() const { return t_; } in get() 154 mutable T t_;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
D | exception_safety_testing.h | 836 explicit DefaultFactory(const T& t) : t_(t) {} in DefaultFactory() 837 std::unique_ptr<T> operator()() const { return absl::make_unique<T>(t_); } in operator() 840 T t_;
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/ |
D | jchuff-sse2.asm | 316 lea t, [rsp - DCTSIZE2 * SIZEOF_WORD] ; use red zone for t_ 536 sub td, esp ; t -= (WIN64: &t_[0], UNIX: &t_[64]);
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
D | dumpICUrules.bat | 78 # |--9 (prefix)---|---18(name with distinguisher,e.g. "t_" )----| 234 $out = 't_' . $out;
|
/third_party/libjpeg-turbo/simd/x86_64/ |
D | jchuff-sse2.asm | 317 lea t, [rsp - DCTSIZE2 * SIZEOF_WORD] ; use red zone for t_ 537 sub td, esp ; t -= (WIN64: &t_[0], UNIX: &t_[64]);
|
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/ |
D | misc.h | 230 const char t_[sizeof (array) - 1] _vbi_unused = s; \
|
/third_party/typescript/ |
D | AUTHORS.md | 423 - @t_
|
D | .mailmap | 271 t_ <t-mrt@users.noreply.github.com> # @t_
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/ |
D | jchuff-sse2.asm | 372 and t, -DCTSIZE2 * SIZEOF_WORD ; t = &t_[0] 614 ; t points to the last used word, possibly below t_ if the previous index had 32 zero bits.
|
/third_party/libjpeg-turbo/simd/i386/ |
D | jchuff-sse2.asm | 372 and t, -DCTSIZE2 * SIZEOF_WORD ; t = &t_[0] 614 ; t points to the last used word, possibly below t_ if the previous index had 32 zero bits.
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTexture.hpp | 511 CubeFaceCoords (CubeFace face_, T s_, T t_) : face(face_), s(s_), t(t_) {} in CubeFaceCoords()
|
/third_party/libinput/tools/ |
D | libinput-debug-gui.c | 1236 #define EVENT(t_, c_) (t_ << 16 | c_) in handle_event_evdev() argument
|
/third_party/node/deps/npm/node_modules/npm-profile/ |
D | README.md | 361 and tfa _wasn't_ enabled then it means they were in a pending state.
|
/third_party/node/deps/npm/node_modules/minizlib/node_modules/minipass/ |
D | README.md | 157 It is extremely unlikely that you _don't_ want to buffer any data written,
|
/third_party/node/deps/npm/node_modules/tar/node_modules/minipass/ |
D | README.md | 157 It is extremely unlikely that you _don't_ want to buffer any data written,
|
/third_party/node/deps/npm/node_modules/fs-minipass/node_modules/minipass/ |
D | README.md | 157 It is extremely unlikely that you _don't_ want to buffer any data written,
|
/third_party/node/deps/npm/node_modules/pacote/node_modules/minipass/ |
D | README.md | 157 It is extremely unlikely that you _don't_ want to buffer any data written,
|