Home
last modified time | relevance | path

Searched refs:w_ (Results 1 - 25 of 25) sorted by relevance

/third_party/nghttp2/src/
H A Dshrpx_rate_limit.cc43 : w_(w), in RateLimit()
73 ev_io_stop(loop_, w_); in drain()
87 if (w_->fd >= 0 && avail_ > 0 && startw_req_) { in regen()
88 ev_io_start(loop_, w_); in regen()
94 if (w_->fd < 0) { in startw()
99 ev_io_start(loop_, w_); in startw()
107 ev_io_stop(loop_, w_); in stopw()
120 ev_feed_event(loop_, w_, EV_READ); in handle_tls_pending_read()
H A Dshrpx_rate_limit.h57 ev_io *w_; member in shrpx::RateLimit
H A Dshrpx_worker.cc187 ev_async_init(&w_, eventcb); in graceful_shutdown_()
188 w_.data = this; in graceful_shutdown_()
189 ev_async_start(loop_, &w_); in graceful_shutdown_()
417 ev_async_stop(loop_, &w_); in ~Worker()
452 ev_async_send(loop_, &w_); in send()
H A Dshrpx_worker.h409 ev_async w_; member in shrpx::Worker
H A DHttpServer.cc1899 ev_io_init(&w_, acceptcb, fd, EV_READ); in ListenEventHandler()
1900 w_.data = this; in ListenEventHandler()
1901 ev_io_start(sessions_->get_loop(), &w_); in ListenEventHandler()
1921 ev_io w_; member in nghttp2::ListenEventHandler
/third_party/ffmpeg/libavfilter/
H A Dboxblur.c114 #define CHECK_RADIUS_VAL(w_, h_, comp) \ in ff_boxblur_eval_filter_params()
116 2*comp->radius > FFMIN(w_, h_)) { \ in ff_boxblur_eval_filter_params()
119 comp->radius, FFMIN(w_, h_)/2); \ in ff_boxblur_eval_filter_params()
/third_party/node/src/
H A Dnode_worker.cc137 : w_(w) { in WorkerThreadData()
178 w_->platform_, in WorkerThreadData()
181 if (w_->per_isolate_opts_) in WorkerThreadData()
182 isolate_data_->set_options(std::move(w_->per_isolate_opts_)); in WorkerThreadData()
183 isolate_data_->set_worker_context(w_); in WorkerThreadData()
188 Mutex::ScopedLock lock(w_->mutex_); in WorkerThreadData()
189 w_->isolate_ = isolate; in WorkerThreadData()
193 Debug(w_, "Worker %llu dispose isolate", w_->thread_id_.id); in ~WorkerThreadData()
196 Mutex::ScopedLock lock(w_ in ~WorkerThreadData()
232 Worker* const w_; global() member in node::worker::WorkerThreadData
[all...]
/third_party/vixl/test/aarch64/
H A Dtest-utils-aarch64.h103 VIXL_ASSERT(sizeof(dump_.w_[0]) == kWRegSizeInBytes); in RegisterDump()
122 return dump_.w_[code]; in wreg()
264 return ((dump_.x_[code] & kWRegMask) == dump_.w_[code]); in RegAliasesMatch()
304 uint32_t w_[kNumberOfRegisters];
H A Dtest-utils-aarch64.cc655 const int w_offset = offsetof(dump_t, w_); in Dump()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DPixelPipeline.cpp1649 w_ = Float4(0.0f);
1651 dst = sampleTexture(stage, u_, v_, w_, w_);
1792 w_ = Float4(0.0f);
1794 dst = sampleTexture(stage, u_, v_, w_, w_);
1803 dst.z = RoundShort4(w_ * Float4(0x1000));
1826 case 2: w_ = x; break;
1849 w__ = w_ * E[2];
1856 w__ *= w_;
[all...]
H A DPixelPipeline.hpp52 Float4 w_; // FIXME member in sw::PixelPipeline
H A DSamplerCore.cpp935 Vector4s SamplerCore::sample3D(Pointer<Byte> &texture, Float4 &u_, Float4 &v_, Float4 &w_, Vector4f &offset, Float &lod, bool secondLOD, SamplerFunction function) in sample3D() argument
951 Short4 wwww = texelFetch ? Short4(As<Int4>(w_)) : address(w_, state.addressingModeW, mipmap); in sample3D()
/third_party/skia/third_party/externals/tint/tools/src/cmd/fix-tests/
H A Dmain.go147 reExpectEq = regexp.MustCompile(`([./\\\w_\-:]*):(\d+).*\nExpected equality of these values:\n(?:.|\n)*?(?:Which is: | )"((?:.|\n)*?[^\\])"\n(?:.|\n)*?(?:Which is: | )"((?:.|\n)*?[^\\])"`)
149 reExpectHasSubstr = regexp.MustCompile(`([./\\\w_\-:]*):(\d+).*\nValue of: .*\nExpected: has substring "((?:.|\n)*?[^\\])"\n Actual: "((?:.|\n)*?[^\\])"`)
/third_party/node/deps/v8/src/regexp/
H A Dregexp-compiler.h153 bool is_non_word() { return w_ == kLatticeOut; } in is_non_word()
154 bool is_word() { return w_ == kLatticeIn; } in is_word()
162 ContainedInLattice w_ = kNotYet; // The \w character class. member in v8::internal::BoyerMoorePositionInfo
H A Dregexp-compiler.cc2754 w_ = AddRange(w_, kWordRanges, kWordRangeCount, interval); in SetInterval()
2773 w_ = kLatticeUnknown; in SetAll()
/third_party/vk-gl-cts/framework/common/
H A DtcuVector.hpp109 Vector (T x_, T y_, T z_, T w_);
205 inline Vector<T, Size>::Vector (T x_, T y_, T z_, T w_) in Vector() argument
211 m_data[3] = w_; in Vector()
/third_party/node/deps/v8/src/diagnostics/
H A Dgdb-jit.cc65 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) {} in Slot()
67 T* operator->() { return w_->RawSlotAt<T>(offset_); } in operator ->()
70 base::WriteUnalignedValue(w_->AddressAt<T>(offset_), value); in set()
73 Slot<T> at(int i) { return Slot<T>(w_, offset_ + sizeof(T) * i); } in at()
76 Writer* w_; member in v8::internal::GDBJITInterface::Writer::Slot
/third_party/littlefs/scripts/
H A Dtracebd.py156 w_ = abs(a_x_+a_y_)
161 if w_ % 2 != 0 and w > 2:
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fVertexTextureTests.cpp119 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {} in Rect()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fVertexTextureTests.cpp146 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {} in Rect()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSamplerCore.cpp652 Vector4s SamplerCore::sample3D(Pointer<Byte> &texture, Float4 &u_, Float4 &v_, Float4 &w_, Vector4i &offset, const Int4 &sample, Float &lod, bool secondLOD, SamplerFunction function) in sample3D() argument
664 Short4 wwww = address(w_, state.addressingModeW, mipmap); in sample3D()
/third_party/ltp/scripts/
H A Dcheckpatch.pl3911 $line =~ /^\+\s*builtin_[\w_]*driver/ ||
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs29430 let w_ = self.w; in next()
29431 self.w = w_ ^ (w_ >> 19) ^ (t ^ (t >> 8)); in next()
[all...]
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H A Dvulkan_structs.hpp[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_structs.hpp[all...]

Completed in 176 milliseconds