/third_party/nghttp2/src/ |
H A D | shrpx_rate_limit.cc | 43 : 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 D | shrpx_rate_limit.h | 57 ev_io *w_; member in shrpx::RateLimit
|
H A D | shrpx_worker.cc | 187 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 D | shrpx_worker.h | 409 ev_async w_; member in shrpx::Worker
|
H A D | HttpServer.cc | 1899 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 D | boxblur.c | 114 #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 D | node_worker.cc | 137 : 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 D | test-utils-aarch64.h | 103 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 D | test-utils-aarch64.cc | 655 const int w_offset = offsetof(dump_t, w_); in Dump()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | PixelPipeline.cpp | 1649 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 D | PixelPipeline.hpp | 52 Float4 w_; // FIXME member in sw::PixelPipeline
|
H A D | SamplerCore.cpp | 935 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 D | main.go | 147 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 D | regexp-compiler.h | 153 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 D | regexp-compiler.cc | 2754 w_ = AddRange(w_, kWordRanges, kWordRangeCount, interval); in SetInterval() 2773 w_ = kLatticeUnknown; in SetAll()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuVector.hpp | 109 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 D | gdb-jit.cc | 65 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 D | tracebd.py | 156 w_ = abs(a_x_+a_y_) 161 if w_ % 2 != 0 and w > 2:
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fVertexTextureTests.cpp | 119 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 D | es3fVertexTextureTests.cpp | 146 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 D | SamplerCore.cpp | 652 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 D | checkpatch.pl | 3911 $line =~ /^\+\s*builtin_[\w_]*driver/ ||
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 29430 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 D | vulkan_structs.hpp | [all...] |
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan_structs.hpp | [all...] |