/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
D | writing.cc | 189 WriteContext(grpc_chttp2_transport* t) : t_(t) { in WriteContext() 205 if (t_->dirtied_local_settings && !t_->sent_local_settings) { in FlushSettings() 207 &t_->outbuf, grpc_chttp2_settings_create( in FlushSettings() 208 t_->settings[GRPC_SENT_SETTINGS], in FlushSettings() 209 t_->settings[GRPC_LOCAL_SETTINGS], in FlushSettings() 210 t_->force_send_settings, GRPC_CHTTP2_NUM_SETTINGS)); in FlushSettings() 211 t_->force_send_settings = false; in FlushSettings() 212 t_->dirtied_local_settings = false; in FlushSettings() 213 t_->sent_local_settings = true; in FlushSettings() 220 grpc_slice_buffer_move_into(&t_->qbuf, &t_->outbuf); in FlushQueuedBuffers() [all …]
|
D | flow_control.cc | 177 : t_(t), in TransportFlowControl() 330 grpc_resource_user_quota(grpc_endpoint_get_resource_user(t_->ep)), in TargetLogBdp() 347 t_->settings[GRPC_LOCAL_SETTINGS][setting_id]); in DeltaUrgency()
|
D | flow_control.h | 281 const grpc_chttp2_transport* transport() const { return t_; } in transport() 320 const grpc_chttp2_transport* const t_; variable
|
/external/perfetto/include/perfetto/base/ |
D | scoped_file.h | 50 explicit ScopedResource(T t = InvalidValue) : t_(t) {} in t_() function 52 t_ = other.t_; in ScopedResource() 53 other.t_ = InvalidValue; in ScopedResource() 56 reset(other.t_); 57 other.t_ = InvalidValue; 60 T get() const { return t_; } in get() 61 T operator*() const { return t_; } 62 explicit operator bool() const { return t_ != InvalidValue; } 64 if (t_ != InvalidValue) { 65 int res = CloseFunction(t_); [all …]
|
/external/libchrome/base/containers/ |
D | adapters.h | 24 explicit ReversedAdapter(T& t) : t_(t) {} in ReversedAdapter() 25 ReversedAdapter(const ReversedAdapter& ra) : t_(ra.t_) {} in ReversedAdapter() 29 Iterator begin() const { return t_.rbegin(); } in begin() 30 Iterator end() const { return t_.rend(); } in end() 33 T& t_; 43 explicit ReversedAdapter(T (&t)[N]) : t_(t) {} in ReversedAdapter() 44 ReversedAdapter(const ReversedAdapter& ra) : t_(ra.t_) {} in ReversedAdapter() 46 Iterator begin() const { return Iterator(&t_[N]); } in begin() 47 Iterator end() const { return Iterator(&t_[0]); } in end() 50 T (&t_)[N];
|
/external/elfutils/libcpu/ |
D | memory-access.h | 156 ({ uint16_t t_ = read_2ubyte_unaligned (Addr); \ 158 t_; }) 160 ({ int16_t t_ = read_2sbyte_unaligned (Addr); \ 162 t_; }) 165 ({ uint32_t t_ = read_4ubyte_unaligned (Addr); \ 167 t_; }) 169 ({ int32_t t_ = read_4sbyte_unaligned (Addr); \ 171 t_; }) 174 ({ uint64_t t_ = read_8ubyte_unaligned (Addr); \ 176 t_; }) [all …]
|
/external/webrtc/webrtc/base/ |
D | signalthread.h | 118 : t_(t) { in EnterExit() 119 t_->cs_.Enter(); in EnterExit() 122 ASSERT(t_->refcount_ != 0); in EnterExit() 123 ++t_->refcount_; in EnterExit() 126 bool d = (0 == --t_->refcount_); in UNLOCK_FUNCTION() 127 t_->cs_.Leave(); in UNLOCK_FUNCTION() 129 delete t_; in UNLOCK_FUNCTION() local 133 SignalThread* t_;
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_flag_parser.h | 30 T *t_; variable 33 explicit FlagHandler(T *t) : t_(t) {} in FlagHandler() 42 *t_ = false; in Parse() 48 *t_ = true; in Parse() 57 *t_ = internal_strdup(value); in Parse() 64 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse() 73 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
|
/external/elfutils/libdw/ |
D | memory-access.h | 292 ({ uint16_t t_ = read_2ubyte_unaligned (Dbg, Addr); \ 294 t_; }) 296 ({ int16_t t_ = read_2sbyte_unaligned (Dbg, Addr); \ 298 t_; }) 301 ({ uint32_t t_ = read_4ubyte_unaligned (Dbg, Addr); \ 303 t_; }) 305 ({ int32_t t_ = read_4sbyte_unaligned (Dbg, Addr); \ 307 t_; }) 310 ({ uint64_t t_ = read_8ubyte_unaligned (Dbg, Addr); \ 312 t_; }) [all …]
|
/external/strace/ |
D | gcc_compat.h | 95 # define ALIGNOF(t_) __alignof__(t_) argument 97 # define ALIGNOF(t_) (sizeof(struct { char x_; t_ y_; }) - sizeof(t_)) argument
|
/external/v8/src/base/ |
D | adapters.h | 25 explicit ReversedAdapter(T& t) : t_(t) {} in ReversedAdapter() 29 Iterator begin() const { return Iterator(std::end(t_)); } in begin() 30 Iterator end() const { return Iterator(std::begin(t_)); } in end() 33 T& t_;
|
/external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.functions/ |
D | pointer_to.pass.cpp | 29 element_type* t_; member 31 A(element_type* t) : t_(t) {} in A() 44 assert(a.t_ == &i); in main()
|
/external/tensorflow/tensorflow/contrib/graph_editor/tests/ |
D | transform_test.py | 69 t_ = info.transformed(t) 70 self.assertTrue(t_ in dst_ts) 71 self.assertEqual(t.name, t_.name) 72 self.assertEqual(info.original(t_), t) 98 t_ = math_ops.add( 103 return op_, [t_]
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/ |
D | p3-0x.cpp | 81 T t_; member in PR10036::A 83 void swap(A& a) noexcept(noexcept(iter_swap(&t_, &a.t_)));
|
/external/v8/tools/clang/rewrite_to_chrome_style/tests/ |
D | fields-expected.cc | 126 static T* t_; member 129 static const bool value = sizeof(SubclassCheck(t_)) == sizeof(YesType);
|
/external/tensorflow/tensorflow/contrib/graph_editor/ |
D | transform.py | 62 t_ = util.make_placeholder_from_tensor(t, scope=info.scope_) 63 return t_ 180 for t, t_ in zip(op.outputs, op_.outputs): 181 t_.set_shape(t.get_shape()) 488 t_ = info.transformed_ts[t] 491 consumer_op_._update_input(t_index_, t_) # pylint: disable=protected-access
|
D | select.py | 759 for t_ in ts_: 760 if t_ not in ts: 761 if positive_filter is None or positive_filter(t_): 762 ts.append(t_)
|
/external/strace/tests-mx32/ |
D | ioctl_dm.c | 51 # define ALIGNED_SIZE(s_, t_) \ argument 52 (((s_) + (ALIGNOF(t_) - 1UL)) & ~(ALIGNOF(t_) - 1UL)) 53 # define ALIGNED_OFFSET(t_, m_) \ argument 54 ALIGNED_SIZE(offsetof(t_, m_), t_)
|
/external/strace/tests-m32/ |
D | ioctl_dm.c | 51 # define ALIGNED_SIZE(s_, t_) \ argument 52 (((s_) + (ALIGNOF(t_) - 1UL)) & ~(ALIGNOF(t_) - 1UL)) 53 # define ALIGNED_OFFSET(t_, m_) \ argument 54 ALIGNED_SIZE(offsetof(t_, m_), t_)
|
/external/strace/tests/ |
D | ioctl_dm.c | 51 # define ALIGNED_SIZE(s_, t_) \ argument 52 (((s_) + (ALIGNOF(t_) - 1UL)) & ~(ALIGNOF(t_) - 1UL)) 53 # define ALIGNED_OFFSET(t_, m_) \ argument 54 ALIGNED_SIZE(offsetof(t_, m_), t_)
|
/external/grpc-grpc/test/cpp/microbenchmarks/ |
D | bm_chttp2_transport.cc | 135 t_ = grpc_create_chttp2_transport(&c_args, ep_, client); in Fixture() 136 grpc_chttp2_transport_start_reading(t_, nullptr, nullptr); in Fixture() 142 ~Fixture() { grpc_transport_destroy(t_); } in ~Fixture() 145 return reinterpret_cast<grpc_chttp2_transport*>(t_); in chttp2_transport() 147 grpc_transport* transport() { return t_; } in transport() 153 grpc_transport* t_; member in Fixture
|
/external/v8/src/base/platform/ |
D | platform-win32.cc | 256 int64_t& t() { return time_.t_; } in t() 265 int64_t t_; member 342 needs_resync |= (time_now.t_ - init_time.t_) > kMaxClockElapsedTime; in SetToCurrentTime() 345 needs_resync |= time_now.t_ < init_time.t_; in SetToCurrentTime() 356 this->time_.t_ = init_time.t_ + (static_cast<int64_t>(elapsed) * 10000); in SetToCurrentTime()
|
/external/python/cpython2/Include/ |
D | pyport.h | 307 char *t_ = (void*) (target); \ 310 memcpy(t_, s_, n_); \ 313 t_[i_] = s_[i_]; \
|
/external/iperf3/ |
D | Android.bp | 21 "src/t_*.c",
|
/external/clang/test/SemaTemplate/ |
D | instantiate-declref.cpp | 102 union { char c; T t_; }; in f() member
|