HomeSort by relevance Sort by last modified time
    Searched refs:w_ (Results 1 - 25 of 27) sorted by null

1 2

  /prebuilts/ndk/r16/sources/android/ndk_helper/
vecmath.h 493 float x_, y_, z_, w_; member in class:ndk_helper::Vec4
502 x_ = y_ = z_ = w_ = 0.f;
510 w_ = fW;
518 w_ = vec.w_;
526 w_ = fW;
534 w_ = *pVec;
544 ret.w_ = z_ * rhs.w_;
554 ret.w_ = z_ / rhs.w_
964 float x_, y_, z_, w_; member in class:ndk_helper::Quaternion
    [all...]
vecmath.cpp 41 out.x_ = x_ * rhs.f_[0] + y_ * rhs.f_[1] + z_ * rhs.f_[2] + w_ * rhs.f_[3];
42 out.y_ = x_ * rhs.f_[4] + y_ * rhs.f_[5] + z_ * rhs.f_[6] + w_ * rhs.f_[7];
43 out.z_ = x_ * rhs.f_[8] + y_ * rhs.f_[9] + z_ * rhs.f_[10] + w_ * rhs.f_[11];
44 out.w_ = x_ * rhs.f_[12] + y_ * rhs.f_[13] + z_ * rhs.f_[14] + w_ * rhs.f_[15];
108 ret.x_ = rhs.x_ * f_[0] + rhs.y_ * f_[4] + rhs.z_ * f_[8] + rhs.w_ * f_[12];
109 ret.y_ = rhs.x_ * f_[1] + rhs.y_ * f_[5] + rhs.z_ * f_[9] + rhs.w_ * f_[13];
110 ret.z_ = rhs.x_ * f_[2] + rhs.y_ * f_[6] + rhs.z_ * f_[10] + rhs.w_ * f_[14];
111 ret.w_ = rhs.x_ * f_[3] + rhs.y_ * f_[7] + rhs.z_ * f_[11] + rhs.w_ * f_[15]
    [all...]
  /external/python/cpython2/Doc/
conf.py 171 'cfunction': (r'^PyAPI_FUNC\(.*\)\s+([^_][\w_]+)'),
172 'data': (r'^PyAPI_DATA\(.*\)\s+([^_][\w_]+)'),
173 'macro': (r'^#define ([^_][\w_]+)\(.*\)[\s|\\]'),
  /external/python/cpython3/Doc/
conf.py 175 'cfunction': (r'^PyAPI_FUNC\(.*\)\s+([^_][\w_]+)'),
176 'data': (r'^PyAPI_DATA\(.*\)\s+([^_][\w_]+)'),
177 'macro': (r'^#define ([^_][\w_]+)\(.*\)[\s|\\]'),
  /external/pdfium/testing/image_diff/
image_diff.cpp 42 Image() : w_(0), h_(0) {}
43 Image(const Image& image) : w_(image.w_), h_(image.h_), data_(image.data_) {}
45 bool has_image() const { return w_ > 0 && h_ > 0; }
46 int w() const { return w_; }
68 &w_, &h_)) {
76 w_ = h_ = 0;
97 return x >= 0 && x < w_ && y >= 0 && y < h_;
100 size_t pixel_address(int x, int y) const { return (y * w_ + x) * 4; }
103 int w_; member in class:Image
    [all...]
  /external/vixl/test/aarch64/
test-utils-aarch64.h 67 VIXL_ASSERT(sizeof(dump_.w_[0]) == kWRegSizeInBytes);
86 return dump_.w_[code];
148 return ((dump_.x_[code] & kWRegMask) == dump_.w_[code]);
169 uint32_t w_[kNumberOfRegisters];
test-utils-aarch64.cc 407 const int w_offset = offsetof(dump_t, w_);
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 347 :w_(worker), arg_(arg), name_(name) {}
349 :w_(reinterpret_cast<worker_t>(worker)), arg_(arg), name_(name) {}
351 :w_(reinterpret_cast<worker_t>(worker)), arg_(arg), name_(name) {}
353 ~MyThread(){ w_ = NULL; arg_ = NULL;}
362 my_thread->w_(my_thread->arg_);
365 worker_t w_; member in class:MyThread
  /external/swiftshader/src/Shader/
PixelPipeline.cpp     [all...]
PixelPipeline.hpp 52 Float4 w_; // FIXME member in class:sw::PixelPipeline
SamplerCore.cpp 938 Vector4s SamplerCore::sample3D(Pointer<Byte> &texture, Float4 &u_, Float4 &v_, Float4 &w_, Vector4f &offset, Float &lod, bool secondLOD, SamplerFunction function)
954 Short4 wwww = texelFetch ? Short4(As<Int4>(w_)) : address(w_, state.addressingModeW, mipmap);
    [all...]
  /external/deqp/framework/common/
tcuVector.hpp 109 Vector (T x_, T y_, T z_, T w_);
204 inline Vector<T, Size>::Vector (T x_, T y_, T z_, T w_)
210 m_data[3] = w_;
  /external/tensorflow/tensorflow/python/kernel_tests/distributions/
util_test.py 819 w_ = np.array([[1., 1, -1],
822 expected, _ = self._reduce_weighted_logsumexp(logx_, w_, axis=-1)
825 w = constant_op.constant(w_)
836 w_ = np.array([[1., 1, -1],
840 logx_, w_, axis=-1, keep_dims=True)
843 w = constant_op.constant(w_)
    [all...]
  /external/v8/src/regexp/
jsregexp.h 1116 ContainedInLattice w_; \/\/ The \\w character class. member in class:v8::internal::BoyerMoorePositionInfo
    [all...]
jsregexp.cc     [all...]
  /external/v8/tools/gcmole/
gcmole.lua 56 local flag = arg[i]:match "^%-%-([%w_-]+)$"
58 local no, real_flag = flag:match "^(no)([%w_-]+)$"
  /external/v8/src/
gdb-jit.cc 61 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { }
64 return w_->RawSlotAt<T>(offset_);
68 *w_->RawSlotAt<T>(offset_) = value;
72 return Slot<T>(w_, offset_ + sizeof(T) * i);
76 Writer* w_; member in class:v8::internal::GDBJITInterface::BASE_EMBEDDED::Slot
    [all...]
  /external/deqp/modules/gles2/functional/
es2fVertexTextureTests.cpp 119 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {}
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp 146 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {}
    [all...]
  /external/annotation-tools/asmx/test/lib/
ccl.jar 
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/bin/
arm-linux-androideabi-gcc-4.9.x     [all...]
  /external/webrtc/talk/media/testdata/
h264-svc-99-640x360.rtpdump     [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/bin/
aarch64-linux-android-gcc-4.9.x     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.hpp     [all...]
  /external/webrtc/data/voice_engine/stereo_rtp_files/
hrtf_g722_1C_48.rtp 479 B?N~mS?."4?hqJ?y???l))???l????2?/%?BT?[?????j?UYZ??j?\V1??5????x$q???@??C|XL?&?I?2h~?2?? ??Q??Y?Y????@y???'?L%?? ?7|b? .B?Ac?P?? V!?? Z?TY??_?X?5VAOF??l?$???????0?}[??EI??X?[??MT??|??XR?z.?Pi?#?`#?.?kP?9L_? `.?*??;@0JZ????F?GgP?p2q? X?Y?r ????pJ!(??l?+!?W_?u]C9Dk*?F??U???ëH?I??G??1T?#u4C????'?3?B??4?y?(?X?)&P?X"?@?dH???5??PB3;??p/N?? ??????V|??SEaI?5?f0?^9??^??[???D?}\???I??X?????!'??????ej?$F?^N?R?/$?k?d8[Cq??$???s)s????bc?Pp?b??l6M&??b? ?fE0h??f?????d???A???&7????M???? ?L?b? ?_2D?p
    [all...]

Completed in 4216 milliseconds

1 2