Home
last modified time | relevance | path

Searched refs:t_ (Results 1 – 25 of 192) sorted by relevance

12345678

/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dwriting.cc189 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 …]
Dflow_control.cc177 : 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()
Dflow_control.h281 const grpc_chttp2_transport* transport() const { return t_; } in transport()
320 const grpc_chttp2_transport* const t_; variable
/external/perfetto/include/perfetto/base/
Dscoped_file.h50 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/
Dadapters.h24 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/
Dmemory-access.h156 ({ 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/
Dsignalthread.h118 : 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/
Dsanitizer_flag_parser.h30 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/
Dmemory-access.h292 ({ 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/
Dgcc_compat.h95 # define ALIGNOF(t_) __alignof__(t_) argument
97 # define ALIGNOF(t_) (sizeof(struct { char x_; t_ y_; }) - sizeof(t_)) argument
/external/v8/src/base/
Dadapters.h25 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/
Dpointer_to.pass.cpp29 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/
Dtransform_test.py69 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/
Dp3-0x.cpp81 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/
Dfields-expected.cc126 static T* t_; member
129 static const bool value = sizeof(SubclassCheck(t_)) == sizeof(YesType);
/external/tensorflow/tensorflow/contrib/graph_editor/
Dtransform.py62 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
Dselect.py759 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/
Dioctl_dm.c51 # 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/
Dioctl_dm.c51 # 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/
Dioctl_dm.c51 # 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/
Dbm_chttp2_transport.cc135 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/
Dplatform-win32.cc256 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/
Dpyport.h307 char *t_ = (void*) (target); \
310 memcpy(t_, s_, n_); \
313 t_[i_] = s_[i_]; \
/external/iperf3/
DAndroid.bp21 "src/t_*.c",
/external/clang/test/SemaTemplate/
Dinstantiate-declref.cpp102 union { char c; T t_; }; in f() member

12345678