Home
last modified time | relevance | path

Searched refs:u_ (Results 1 – 25 of 35) sorted by relevance

12

/third_party/skia/third_party/externals/icu/source/common/unicode/
Dchar16ptr.h107 } u_; variable
130 Char16Ptr::Char16Ptr(char16_t *p) { u_.cp = p; } in Char16Ptr()
132 Char16Ptr::Char16Ptr(uint16_t *p) { u_.up = p; } in Char16Ptr()
135 Char16Ptr::Char16Ptr(wchar_t *p) { u_.wp = p; } in Char16Ptr()
137 Char16Ptr::Char16Ptr(std::nullptr_t p) { u_.cp = p; } in Char16Ptr()
140 char16_t *Char16Ptr::get() const { return u_.cp; } in get()
215 } u_; variable
238 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) { u_.cp = p; } in ConstChar16Ptr()
240 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) { u_.up = p; } in ConstChar16Ptr()
243 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) { u_.wp = p; } in ConstChar16Ptr()
[all …]
/third_party/node/deps/icu-small/source/common/unicode/
Dchar16ptr.h107 } u_; variable
130 Char16Ptr::Char16Ptr(char16_t *p) { u_.cp = p; } in Char16Ptr()
132 Char16Ptr::Char16Ptr(uint16_t *p) { u_.up = p; } in Char16Ptr()
135 Char16Ptr::Char16Ptr(wchar_t *p) { u_.wp = p; } in Char16Ptr()
137 Char16Ptr::Char16Ptr(std::nullptr_t p) { u_.cp = p; } in Char16Ptr()
140 char16_t *Char16Ptr::get() const { return u_.cp; } in get()
215 } u_; variable
238 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) { u_.cp = p; } in ConstChar16Ptr()
240 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) { u_.up = p; } in ConstChar16Ptr()
243 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) { u_.wp = p; } in ConstChar16Ptr()
[all …]
/third_party/icu/icu4c/source/common/unicode/
Dchar16ptr.h107 } u_; variable
130 Char16Ptr::Char16Ptr(char16_t *p) { u_.cp = p; } in Char16Ptr()
132 Char16Ptr::Char16Ptr(uint16_t *p) { u_.up = p; } in Char16Ptr()
135 Char16Ptr::Char16Ptr(wchar_t *p) { u_.wp = p; } in Char16Ptr()
137 Char16Ptr::Char16Ptr(std::nullptr_t p) { u_.cp = p; } in Char16Ptr()
140 char16_t *Char16Ptr::get() const { return u_.cp; } in get()
215 } u_; variable
238 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) { u_.cp = p; } in ConstChar16Ptr()
240 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) { u_.up = p; } in ConstChar16Ptr()
243 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) { u_.wp = p; } in ConstChar16Ptr()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/
Dchar16ptr.h104 } u_; variable
127 Char16Ptr::Char16Ptr(char16_t *p) { u_.cp = p; } in Char16Ptr()
129 Char16Ptr::Char16Ptr(uint16_t *p) { u_.up = p; } in Char16Ptr()
132 Char16Ptr::Char16Ptr(wchar_t *p) { u_.wp = p; } in Char16Ptr()
134 Char16Ptr::Char16Ptr(std::nullptr_t p) { u_.cp = p; } in Char16Ptr()
137 char16_t *Char16Ptr::get() const { return u_.cp; } in get()
212 } u_; variable
235 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) { u_.cp = p; } in ConstChar16Ptr()
237 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) { u_.up = p; } in ConstChar16Ptr()
240 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) { u_.wp = p; } in ConstChar16Ptr()
[all …]
/third_party/mesa3d/src/gtest/include/gtest/internal/
Dgtest-internal.h286 explicit FloatingPoint(const RawType& x) { u_.value_ = x; } in FloatingPoint()
295 fp.u_.bits_ = bits; in ReinterpretBits()
296 return fp.u_.value_; in ReinterpretBits()
310 const Bits &bits() const { return u_.bits_; } in bits()
313 Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } in exponent_bits()
316 Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } in fraction_bits()
319 Bits sign_bit() const { return kSignBitMask & u_.bits_; } in sign_bit()
339 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) in AlmostEquals()
384 FloatingPointUnion u_; variable
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DPixelPipeline.cpp1636 Short4 t0 = RoundShort4(u_ * Float4(0x1000)); in TEXDP3()
1651 dst = sampleTexture(stage, u_, v_, w_, w_); in TEXDP3TEX()
1706 Float4 u_ = u + du; in TEXBEM() local
1709 dst = sampleTexture(stage, u_, v_, s, s); in TEXBEM()
1727 Float4 u_ = u + du; in TEXBEML() local
1730 dst = sampleTexture(stage, u_, v_, s, s); in TEXBEML()
1778 u_ *= Rcp_pp(v_); // FIXME: Set result to 1.0 when division by zero in TEXM3X2DEPTH()
1780 oDepth = u_; in TEXM3X2DEPTH()
1794 dst = sampleTexture(stage, u_, v_, w_, w_); in TEXM3X2TEX()
1801 dst.x = RoundShort4(u_ * Float4(0x1000)); in TEXM3X3()
[all …]
DPixelPipeline.hpp50 Float4 u_; // FIXME member in sw::PixelPipeline
DSamplerCore.cpp935 …Vector4s SamplerCore::sample3D(Pointer<Byte> &texture, Float4 &u_, Float4 &v_, Float4 &w_, Vector4… in sample3D() argument
949 Short4 uuuu = texelFetch ? Short4(As<Int4>(u_)) : address(u_, state.addressingModeU, mipmap); in sample3D()
/third_party/googletest/googletest/include/gtest/internal/
Dgtest-internal.h298 explicit FloatingPoint(const RawType& x) { u_.value_ = x; } in FloatingPoint()
307 fp.u_.bits_ = bits; in ReinterpretBits()
308 return fp.u_.value_; in ReinterpretBits()
322 const Bits &bits() const { return u_.bits_; } in bits()
325 Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } in exponent_bits()
328 Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } in fraction_bits()
331 Bits sign_bit() const { return kSignBitMask & u_.bits_; } in sign_bit()
351 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) in AlmostEquals()
396 FloatingPointUnion u_; variable
/third_party/skia/third_party/externals/spirv-cross/shaders-reflection/vert/
Darray-size-reflection.vert4 layout(binding = 0, set = 1, std140) uniform u_
/third_party/vk-gl-cts/modules/glshared/
DglsScissorTests.cpp598 …Color(const deUint32 u_[4]) : type(UINT) { u[0] = u_[0]; u[1] = u_[1]; u[2] = u_[2]; u[3] = u_[3]… in Color()
/third_party/cef/tools/distrib/gtest/
Dgtest.h3681 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
3690 fp.u_.bits_ = bits;
3691 return fp.u_.value_;
3705 const Bits &bits() const { return u_.bits_; }
3708 Bits exponent_bits() const { return kExponentBitMask & u_.bits_; }
3711 Bits fraction_bits() const { return kFractionBitMask & u_.bits_; }
3714 Bits sign_bit() const { return kSignBitMask & u_.bits_; }
3734 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)
3779 FloatingPointUnion u_;
/third_party/icu/docs/userguide/strings/
Dproperties.md79 have the "u_" prefix.) The constant names include the long property name
Dindex.md353 function names begin with u_. Otherwise, their semantics are equivalent. These
/third_party/mesa3d/docs/isl/
Dtiling.rst303 you represent :math:`u` as :math:`u_n u_{n-1} \cdots u_2 u_1 u_0` where
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSamplerCore.cpp652 Vector4s SamplerCore::sample3D(Pointer<Byte> &texture, Float4 &u_, Float4 &v_, Float4 &w_, Vector4i… in sample3D() argument
662 Short4 uuuu = address(u_, state.addressingModeU, mipmap); in sample3D()
/third_party/python/Python/
Dcompile.c1574 if (!compiler_addop_o((C), (OP), (C)->u->u_ ## TYPE, (O))) \
1581 if (!compiler_addop_o((C), (OP), (C)->u->u_ ## TYPE, (O))) { \
1589 if (!compiler_addop_name((C), (OP), (C)->u->u_ ## TYPE, (O))) \
/third_party/ffmpeg/tests/
Dreference.pnm458 I<-vfW�q�pe{Q=b2a,yA0�\F�nY�zc�yc�y_�xa�u_�r]�t`�u`�q^�p]�q]�q]�mY�o\�oY�v]�pZ�qZ�oZ�qa�q[�r[�kX…
633 …����������������������������������������������������������СyX�iE�mN⧗�o^�aE�u_�hU�gY�WD�RG�H2�*�4%…
1188 …W�^&�i0kSbS$bT$eU(fW)jZ-l`:znK�ɤ�Ը�ռ�Լ�־���������������������������������u_<�oNuX5nP+qP/}X2wO(kI…
/third_party/cups-filters/cupsfilters/
Dimage.pgm863 …>?E<>CINOQSCA=950.-'-5BIJB<:?GNPLFB4CMOT^dcnhiYJZeLScVCLONZZ[ZVOORVYR[fu���u_\XCBI?DB?<:632L_p}���…
Dimage.ppm452 …[W�mX�sGzg2bV2_\R{u��z�����������������������|�{{�v��o��h��b��^{�_t�el�pau_zm��������������j��X…
5286 …�b��]��Z��p��V�oA�Z2�N+�@&w0s*y+{,�0 �8#�?#�D �D�C�D�T%�^4�f>�nK�w\�u_�]MuA4e3*c4,W,#N([:+…
5365 [Y\V YP_QlZu_q][OXPVNRKLF
5418 …b-^l/eo,gk.nn:xw<ts@wt8oj$^RSCR:N0D"5Q+U`8]O(^=w?�=�2�9�:�8�5}2 s2 o8oDnO u_-{o5gc#RS
5473 …OQJ�PK�NK�JK�GL�CL�@K�6L $M#M/N3Q8WC_MgY#lae[ i`'nf+ne-jb-f]1f\-k\#u_u]kVeQ-m\=xd6nU#X:…
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/testimages/
Dtestorig.ppm4 …>/|>/|>/}>/=/�9/�1+�;8�kf�~y�ZT�D=�LAN@tJ<rN>pQ?qR@tSB{WG�[J~eOmsOpzU�y[�u_�oc�mf�qk�wo��w��z��~…
/third_party/icu/docs/userguide/dev/
Dcodingguidelines.md1246 "u_": `u_strlen()`.
/third_party/skia/third_party/externals/libjpeg-turbo/testimages/
Dtestorig.ppm4 …>/|>/|>/}>/=/�9/�1+�;8�kf�~y�ZT�D=�LAN@tJ<rN>pQ?qR@tSB{WG�[J~eOmsOpzU�y[�u_�oc�mf�qk�wo��w��z��~…
/third_party/libjpeg-turbo/testimages/
Dtestorig.ppm4 …>/|>/|>/}>/=/�9/�1+�;8�kf�~y�ZT�D=�LAN@tJ<rN>pQ?qR@tSB{WG�[J~eOmsOpzU�y[�u_�oc�mf�qk�wo��w��z��~…
/third_party/gstreamer/gstplugins_bad/tests/files/
Dtest.ts2539 �2���(Enq�(79鯭*Š5�И-�9��j�I(��3u_��p���PȬ���Ocf|�ݨ��l��|�,�8���ϳ���m��G*j����u��}`.��،?…

12