Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 301) sorted by relevance

12345678910>>...13

/device/generic/vulkan-cereal/third-party/googletest/googletest/src/
Dgtest-matchers.cc45 Matcher<const std::string&>::Matcher(const std::string& s) { *this = Eq(s); } in Matcher()
49 Matcher<const std::string&>::Matcher(const char* s) { in Matcher()
55 Matcher<std::string>::Matcher(const std::string& s) { *this = Eq(s); } in Matcher()
59 Matcher<std::string>::Matcher(const char* s) { *this = Eq(std::string(s)); } in Matcher()
64 Matcher<const internal::StringView&>::Matcher(const std::string& s) { in Matcher()
70 Matcher<const internal::StringView&>::Matcher(const char* s) { in Matcher()
76 Matcher<const internal::StringView&>::Matcher(internal::StringView s) { in Matcher()
82 Matcher<internal::StringView>::Matcher(const std::string& s) { *this = Eq(s); } in Matcher()
86 Matcher<internal::StringView>::Matcher(const char* s) { in Matcher()
92 Matcher<internal::StringView>::Matcher(internal::StringView s) { in Matcher()
Dgtest-printers.cc449 void PrintCStringTo(const Char* s, ostream* os) { in PrintCStringTo()
460 void PrintTo(const char* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
463 void PrintTo(const char8_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
466 void PrintTo(const char16_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
468 void PrintTo(const char32_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
478 void PrintTo(const wchar_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
484 const unsigned char *s = reinterpret_cast<const unsigned char *>(str); in ContainsUnprintableControlCodes() local
505 const unsigned char *s = reinterpret_cast<const unsigned char *>(str); in IsValidUTF8() local
548 void PrintStringTo(const ::std::string& s, ostream* os) { in PrintStringTo()
557 void PrintU8StringTo(const ::std::u8string& s, ostream* os) { in PrintU8StringTo()
[all …]
/device/google/contexthub/firmware/os/core/
Dsensors.c93 struct Sensor *s; in sensorRegisterEx() local
146 struct Sensor *s = sensorFindByHandle(handle); in sensorRegisterInitComplete() local
159 struct Sensor *s = sensorFindByHandle(handle); in sensorUnregister() local
189 static bool sensorCallFuncPower(struct Sensor* s, bool on) in sensorCallFuncPower()
212 static bool sensorCallAsOwner(struct Sensor* s, bool (*callback)(void*)) in sensorCallAsOwner()
217 static bool sensorCallFuncFwUpld(struct Sensor* s) in sensorCallFuncFwUpld()
230 static bool sensorCallFuncSetRate(struct Sensor* s, uint32_t rate, uint64_t latency) in sensorCallFuncSetRate()
252 static bool sensorCallFuncCalibrate(struct Sensor* s) in sensorCallFuncCalibrate()
260 static bool sensorCallFuncSelfTest(struct Sensor* s) in sensorCallFuncSelfTest()
268 static bool sensorCallFuncFlush(struct Sensor* s) in sensorCallFuncFlush()
[all …]
/device/generic/vulkan-cereal/base/
DStringUtils.cpp63 std::string Trim(const std::string& s) { in Trim()
101 bool StartsWith(std::string_view s, std::string_view prefix) { in StartsWith()
120 std::string s = strView.str(); in splitTokens() local
128 std::vector<std::string> Split(const std::string& s, in Split()
156 bool StartsWith(std::string_view s, char prefix) { in StartsWith()
160 bool StartsWithIgnoreCase(std::string_view s, std::string_view prefix) { in StartsWithIgnoreCase()
165 bool EndsWith(std::string_view s, std::string_view suffix) { in EndsWith()
170 bool EndsWith(std::string_view s, char suffix) { in EndsWith()
174 bool EndsWithIgnoreCase(std::string_view s, std::string_view suffix) { in EndsWithIgnoreCase()
185 std::string StringReplace(std::string_view s, in StringReplace()
DStringFormat_unittest.cpp22 std::string s = StringFormat(""); in TEST() local
28 std::string s = StringFormat("foobar"); in TEST() local
33 std::string s = StringFormat("Pi is about %d.%d\n", 3, 1415); in TEST() local
40 std::string s = StringFormat("%s%s%s%s%s%s%s", kPiece, kPiece, kPiece, in TEST() local
50 std::string s = "foo"; in TEST() local
57 std::string s = "foo"; in TEST() local
67 std::string s; in TEST() local
/device/generic/vulkan-cereal/include/glm/gtx/
Dsimd_mat4.inl50 GLM_FUNC_QUALIFIER fmat4x4SIMD::fmat4x4SIMD(float const & s)
172 float const & s
185 float const & s
198 float const & s
211 float const & s
247 float const & s
261 float const & s,
293 float const & s
307 float const & s,
339 float const & s
[all …]
Dsimd_quat.inl60 vec3 s = glm::sin(eulerAngles * 0.5f); local
81 GLM_FUNC_QUALIFIER fquatSIMD& fquatSIMD::operator*=(float const & s)
87 GLM_FUNC_QUALIFIER fquatSIMD& fquatSIMD::operator/=(float const & s)
197 GLM_FUNC_QUALIFIER fquatSIMD operator* (fquatSIMD const & q, float s)
202 GLM_FUNC_QUALIFIER fquatSIMD operator* (float s, fquatSIMD const & q)
209 GLM_FUNC_QUALIFIER fquatSIMD operator/ (fquatSIMD const & q, float s)
235 T s = static_cast<T>(0.5) / sqrt(trace); local
250 T s = sqrt(m0[0] - m1[1] - m2[2] + T(1.0)) * T(0.5); local
264 T s = sqrt(m1[1] - m0[0] - m2[2] + T(1.0)) * T(0.5); local
275 T s = sqrt(m2[2] - m0[0] - m1[1] + T(1.0)) * T(0.5); local
[all …]
Dsimd_vec4.inl35 GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(float const & s) :
68 GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(vec3 const & v, float const & s) :
72 GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(float const & s, vec3 const & v) :
95 GLM_FUNC_QUALIFIER fvec4SIMD& fvec4SIMD::operator+=(float const & s)
107 GLM_FUNC_QUALIFIER fvec4SIMD& fvec4SIMD::operator-=(float const & s)
119 GLM_FUNC_QUALIFIER fvec4SIMD& fvec4SIMD::operator*=(float const & s)
131 GLM_FUNC_QUALIFIER fvec4SIMD& fvec4SIMD::operator/=(float const & s)
177 GLM_FUNC_QUALIFIER fvec4SIMD operator+ (fvec4SIMD const & v, float s)
182 GLM_FUNC_QUALIFIER fvec4SIMD operator+ (float s, fvec4SIMD const & v)
193 GLM_FUNC_QUALIFIER fvec4SIMD operator- (fvec4SIMD const & v, float s)
[all …]
Dtransform2.inl7 GLM_FUNC_QUALIFIER tmat3x3<T, P> shearX2D(tmat3x3<T, P> const& m, T s) argument
15 GLM_FUNC_QUALIFIER tmat3x3<T, P> shearY2D(tmat3x3<T, P> const& m, T s) argument
23 GLM_FUNC_QUALIFIER tmat4x4<T, P> shearX3D(tmat4x4<T, P> const& m, T s, T t) argument
32 GLM_FUNC_QUALIFIER tmat4x4<T, P> shearY3D(tmat4x4<T, P> const& m, T s, T t) argument
41 GLM_FUNC_QUALIFIER tmat4x4<T, P> shearZ3D(tmat4x4<T, P> const& m, T s, T t) argument
Dspline.inl13 typename genType::value_type const & s
36 typename genType::value_type const & s
58 typename genType::value_type const & s
Dcolor_space.inl104 GLM_FUNC_QUALIFIER tmat4x4<T, defaultp> saturation(T const s)
124 GLM_FUNC_QUALIFIER tvec3<T, P> saturation(const T s, const tvec3<T, P>& color)
130 GLM_FUNC_QUALIFIER tvec4<T, P> saturation(const T s, const tvec4<T, P>& color)
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/
DvalidationGL13.cpp66 bool ValidateMultiTexCoord1d(const Context *context, GLenum target, GLdouble s) in ValidateMultiTexCoord1d()
76 bool ValidateMultiTexCoord1f(const Context *context, GLenum target, GLfloat s) in ValidateMultiTexCoord1f()
86 bool ValidateMultiTexCoord1i(const Context *context, GLenum target, GLint s) in ValidateMultiTexCoord1i()
96 bool ValidateMultiTexCoord1s(const Context *context, GLenum target, GLshort s) in ValidateMultiTexCoord1s()
106 bool ValidateMultiTexCoord2d(const Context *context, GLenum target, GLdouble s, GLdouble t) in ValidateMultiTexCoord2d()
116 bool ValidateMultiTexCoord2f(const Context *context, GLenum target, GLfloat s, GLfloat t) in ValidateMultiTexCoord2f()
126 bool ValidateMultiTexCoord2i(const Context *context, GLenum target, GLint s, GLint t) in ValidateMultiTexCoord2i()
136 bool ValidateMultiTexCoord2s(const Context *context, GLenum target, GLshort s, GLshort t) in ValidateMultiTexCoord2s()
148 GLdouble s, in ValidateMultiTexCoord3d()
160 bool ValidateMultiTexCoord3f(const Context *context, GLenum target, GLfloat s, GLfloat t, GLfloat r) in ValidateMultiTexCoord3f()
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/common/
DFastVector_unittest.cpp215 struct s : angle::NonCopyable in TEST() struct
217 s() : x(0) {} in TEST() argument
218 s(int xin) : x(xin) {} in TEST() argument
219 s(s &&other) : x(other.x) {} in TEST() argument
220 s &operator=(s &&other) in TEST()
225 int x; in TEST()
/device/generic/vulkan-cereal/host-common/avd/
Dhw-config.h29 #define HWCFG_BOOL(n,s,d,a,t) hw_bool_t n; argument
30 #define HWCFG_INT(n,s,d,a,t) hw_int_t n; argument
31 #define HWCFG_STRING(n,s,d,a,t) hw_string_t n; argument
32 #define HWCFG_DOUBLE(n,s,d,a,t) hw_double_t n; argument
33 #define HWCFG_DISKSIZE(n,s,d,a,t) hw_disksize_t n; argument
Dscanner.c35 AvdScanner* s; in avdScanner_new() local
62 const char* avdScanner_next(AvdScanner* s) { in avdScanner_next()
91 void avdScanner_free(AvdScanner* s) { in avdScanner_free()
/device/generic/vulkan-cereal/include/glm/detail/
Dtype_vec4_simd.inl366 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<float, aligned_lowp>::tvec4(float s) :
371 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<float, aligned_mediump>::tvec4(float s) :
376 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<float, aligned_highp>::tvec4(float s) :
382 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<double, aligned_lowp>::tvec4(double s) :
387 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<double, aligned_mediump>::tvec4(double s) :
392 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<double, aligned_highp>::tvec4(double s) :
398 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<int32, aligned_lowp>::tvec4(int32 s) :
403 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<int32, aligned_mediump>::tvec4(int32 s) :
408 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<int32, aligned_highp>::tvec4(int32 s) :
414 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_SIMD tvec4<int64, aligned_lowp>::tvec4(int64 s) :
[all …]
Dtype_mat4x4.inl49 GLM_FUNC_QUALIFIER tmat4x4<T, P>::tmat4x4(T const & s)
284 GLM_FUNC_QUALIFIER tmat4x4<T, P>& tmat4x4<T, P>::operator+=(U s)
306 GLM_FUNC_QUALIFIER tmat4x4<T, P> & tmat4x4<T, P>::operator-=(U s)
328 GLM_FUNC_QUALIFIER tmat4x4<T, P> & tmat4x4<T, P>::operator*=(U s)
346 GLM_FUNC_QUALIFIER tmat4x4<T, P> & tmat4x4<T, P>::operator/=(U s)
421 GLM_FUNC_QUALIFIER tmat4x4<T, P> operator+(tmat4x4<T, P> const & m, T const & s) argument
431 GLM_FUNC_QUALIFIER tmat4x4<T, P> operator+(T const & s, tmat4x4<T, P> const & m) argument
451 GLM_FUNC_QUALIFIER tmat4x4<T, P> operator-(tmat4x4<T, P> const & m, T const & s) argument
461 GLM_FUNC_QUALIFIER tmat4x4<T, P> operator-(T const & s, tmat4x4<T, P> const & m) argument
481 GLM_FUNC_QUALIFIER tmat4x4<T, P> operator*(tmat4x4<T, P> const & m, T const & s) argument
[all …]
Dtype_mat4x3.inl47 GLM_FUNC_QUALIFIER tmat4x3<T, P>::tmat4x3(T const & s)
250 GLM_FUNC_QUALIFIER tmat4x3<T, P> & tmat4x3<T, P>::operator+=(U s)
272 GLM_FUNC_QUALIFIER tmat4x3<T, P> & tmat4x3<T, P>::operator-=(U s)
294 GLM_FUNC_QUALIFIER tmat4x3<T, P> & tmat4x3<T, P>::operator*=(U s)
305 GLM_FUNC_QUALIFIER tmat4x3<T, P> & tmat4x3<T, P>::operator/=(U s)
373 GLM_FUNC_QUALIFIER tmat4x3<T, P> operator+(tmat4x3<T, P> const & m, T const & s) argument
393 GLM_FUNC_QUALIFIER tmat4x3<T, P> operator-(tmat4x3<T, P> const & m, T const & s) argument
413 GLM_FUNC_QUALIFIER tmat4x3<T, P> operator*(tmat4x3<T, P> const & m, T const & s) argument
423 GLM_FUNC_QUALIFIER tmat4x3<T, P> operator*(T const & s, tmat4x3<T, P> const & m) argument
530 GLM_FUNC_QUALIFIER tmat4x3<T, P> operator/(tmat4x3<T, P> const & m, T const & s) argument
[all …]
/device/generic/vulkan-cereal/third-party/googletest/googletest/samples/
Dsample2_unittest.cc47 const MyString s; in TEST() local
78 const MyString s(kHelloString); in TEST() local
93 MyString s; in TEST() local
/device/generic/vulkan-cereal/third-party/angle/src/libGL/
Dentry_points_gl_1_3_autogen.cpp372 void GL_APIENTRY MultiTexCoord1d(GLenum target, GLdouble s) in MultiTexCoord1d()
411 void GL_APIENTRY MultiTexCoord1f(GLenum target, GLfloat s) in MultiTexCoord1f()
450 void GL_APIENTRY MultiTexCoord1i(GLenum target, GLint s) in MultiTexCoord1i()
489 void GL_APIENTRY MultiTexCoord1s(GLenum target, GLshort s) in MultiTexCoord1s()
528 void GL_APIENTRY MultiTexCoord2d(GLenum target, GLdouble s, GLdouble t) in MultiTexCoord2d()
567 void GL_APIENTRY MultiTexCoord2f(GLenum target, GLfloat s, GLfloat t) in MultiTexCoord2f()
606 void GL_APIENTRY MultiTexCoord2i(GLenum target, GLint s, GLint t) in MultiTexCoord2i()
645 void GL_APIENTRY MultiTexCoord2s(GLenum target, GLshort s, GLshort t) in MultiTexCoord2s()
684 void GL_APIENTRY MultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r) in MultiTexCoord3d()
724 void GL_APIENTRY MultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r) in MultiTexCoord3f()
[all …]
/device/generic/vulkan-cereal/third-party/perfetto/include/perfetto/ext/base/
Dstring_utils.h65 inline Optional<double> CStringToDouble(const char* s) { in CStringToDouble()
90 inline Optional<double> StringToDouble(const std::string& s) { in StringToDouble()
111 inline std::string ToHex(const std::string& s) { in ToHex()
/device/generic/vulkan-cereal/fake-android-guest/utils/
DFastStrcmp.h43 static inline int fastcmp(const char* l, const char* r, const size_t s) { in fastcmp()
50 static inline int fasticmp(const char* l, const char* r, const size_t s) { in fasticmp()
57 static inline int fastcmp(const void* lv, const void* rv, const size_t s) { in fastcmp()
/device/generic/vulkan-cereal/stream-servers/tests/
DVirtioGpuTimelines_unittest.cpp46 InSequence s; in TEST_F() local
82 InSequence s; in TEST_F() local
101 InSequence s; in TEST_F() local
123 InSequence s; in TEST_F() local
/device/google/cuttlefish/host/frontend/webrtc_operator/
Dutils.cpp19 std::vector<std::string> SplitString(const std::string &s, char c) { in SplitString()
24 const std::string &s, const std::string &separator) { in SplitString()
41 bool StartsWith(const std::string &s, const std::string &prefix) { in StartsWith()
/device/google/contexthub/firmware/lib/libc/
Dbcopy.c80 #define TLOOP(s) if (t) TLOOP1(s) in memcpy() argument
81 #define TLOOP1(s) do { s; } while (--t) in memcpy() argument

12345678910>>...13