Home
last modified time | relevance | path

Searched refs:z_ (Results 1 - 23 of 23) sorted by relevance

/third_party/skia/third_party/externals/tint/src/ast/
H A Dworkgroup_decoration.cc30 const ast::Expression* z_) in WorkgroupDecoration()
31 : Base(pid, src), x(x_), y(y_), z(z_) {} in WorkgroupDecoration()
44 auto* z_ = ctx->Clone(z); in Clone() local
45 return ctx->dst->create<WorkgroupDecoration>(src, x_, y_, z_); in Clone()
26 WorkgroupDecoration(ProgramID pid, const Source& src, const ast::Expression* x_, const ast::Expression* y_, const ast::Expression* z_) WorkgroupDecoration() argument
/third_party/vk-gl-cts/framework/common/
H A DtcuVector.hpp108 Vector (T x_, T y_, T z_);
109 Vector (T x_, T y_, T z_, T w_);
196 inline Vector<T, Size>::Vector (T x_, T y_, T z_) in Vector() argument
201 m_data[2] = z_; in Vector()
205 inline Vector<T, Size>::Vector (T x_, T y_, T z_, T w_) in Vector() argument
210 m_data[2] = z_; in Vector()
/third_party/node/deps/v8/tools/torque/vim-torque/syntax/
H A Dtorque.vim43 syn match torqueType /\v(\<)@<=([A-Za-z][0-9A-Za-z_]*)(>)@=/
44 syn match torqueType /\v(:\s*(constexpr\s*)?)@<=([A-Za-z][0-9A-Za-z_]*)/
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dfixed_array_test.cc84 z_ = counter; in ThreeInts()
90 int x_, y_, z_; member in __anon19163::ThreeInts
180 EXPECT_EQ(1, array[0].z_); in TEST()
183 EXPECT_EQ(2, array[1].z_); in TEST()
812 EXPECT_DEATH_IF_SUPPORTED(raw[-1].z_ = 0, "container-overflow"); in TEST()
/third_party/vixl/test/aarch64/
H A Dtest-utils-aarch64.h168 return dump_.z_[code].GetLane<T>(lane); in zreg_lane()
282 memcmp(&dump_.q_[code], &dump_.z_[code], kQRegSizeInBytes) == 0;
313 ZRegisterValue z_[kNumberOfZRegisters];
H A Dtest-utils-aarch64.cc660 const int z_offset = offsetof(dump_t, z_); in Dump()
/third_party/vk-gl-cts/external/amber/src/src/
H A Dcommand.h294 void SetZ(uint32_t z) { z_ = z; } in SetZ()
295 uint32_t GetZ() const { return z_; } in GetZ()
302 uint32_t z_ = 0; member in amber::ComputeCommand
/third_party/curl/scripts/
H A Dchecksrc.pl710 if($prevl !~ /\?\z/ && $l =~ /^ +([A-Za-z_][A-Za-z0-9_]*):$/ && $1 ne 'default') {
822 if(($l =~ /(^.*(char|int|long|void|CURL|CURLM|CURLMsg|[cC]url_[A-Za-z_]+|struct [a-zA-Z_]+) *(\*+)) (\w+)/) && ($4 !~ /^(const|volatile)$/)) {
/third_party/googletest/googletest/test/
H A Dgoogletest-printers-test.cc125 UnprintableInFoo() : z_(0) { memcpy(xy_, "\xEF\x12\x0\x0\x34\xAB\x0\x0", 8); } in UnprintableInFoo()
126 double z() const { return z_; } in z()
130 double z_; member in foo::UnprintableInFoo
/third_party/ltp/scripts/
H A Dcheckpatch.pl442 [A-Za-z_][A-Za-z\d_]*
443 (?:\s*\#\#\s*[A-Za-z_][A-Za-z\d_]*)*
3908 $line =~ /^\+[a-z_]*init/ ||
4158 if ($line =~ /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b|else\b)/ && $line !~ /^.\s*\#/) {
4204 if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|(?:do|else)\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
4323 if ($line =~ /^\+\s*(?:$Declare)?([A-Za-z_][A-Za-z\d_]*)\s*=/) {
5389 if ($sline =~ /^.\s+[A-Za-z_][A-Za-z\d_]*:(?!\s*\d+)/ &&
5685 $var !~ /^(?:[a-z_]*
[all...]
/third_party/vk-gl-cts/modules/gles3/performance/
H A Des3pDepthTests.cpp196 const float z_ = baseDepth + rng.getFloat(-depthNoise, +depthNoise); in getFullScreenGrid() local
198 vertices[y*gridsize + x] = Vec3(x_, y_, z_); in getFullScreenGrid()
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
H A DOrdinals.pm800 && $a[0] =~ /^[A-Za-z_][A-Za-z_0-9]*$/
/third_party/openssl/util/perl/OpenSSL/
H A DOrdinals.pm800 && $a[0] =~ /^[A-Za-z_][A-Za-z_0-9]*$/
/third_party/node/lib/internal/util/
H A Dinspect.js1281 const start = RegExpPrototypeExec(/^([A-Z][a-z_ A-Z0-9[\]()-]+)(?::|\n {4}at)/, stack) ||
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H A Dvulkan_structs.hpp7074 VULKAN_HPP_CONSTEXPR Offset3D( int32_t x_ = {}, int32_t y_ = {}, int32_t z_ = {} ) VULKAN_HPP_NOEXCEPT
7077 , z( z_ ) in z()
7084 explicit Offset3D( Offset2D const & offset2D, int32_t z_ = {} ) : x( offset2D.x ), y( offset2D.y ), z( z_ ) {} in z() member
7108 Offset3D & setZ( int32_t z_ ) VULKAN_HPP_NOEXCEPT
7110 z = z_;
21710 DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {} ) VULKAN_HPP_NOEXCEPT
21713 , z( z_ ) in z()
21744 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT
21746 z = z_;
[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_structs.hpp9286 VULKAN_HPP_CONSTEXPR Offset3D( int32_t x_ = {}, int32_t y_ = {}, int32_t z_ = {} ) VULKAN_HPP_NOEXCEPT
9289 , z( z_ ) in z()
9297 explicit Offset3D( Offset2D const & offset2D, int32_t z_ = {} ) : x( offset2D.x ), y( offset2D.y ), z( z_ ) {} in z() member
9321 VULKAN_HPP_CONSTEXPR_14 Offset3D & setZ( int32_t z_ ) VULKAN_HPP_NOEXCEPT
9323 z = z_;
[all...]
/third_party/typescript/lib/
H A DtypingsInstaller.js[all...]
H A Dtsc.js[all...]
H A Dtsserverlibrary.js[all...]
H A Dtypescript.js[all...]
H A DtypescriptServices.js[all...]
H A Dtsserver.js[all...]
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js[all...]

Completed in 395 milliseconds