Home
last modified time | relevance | path

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

1234567891011

/hardware/interfaces/broadcastradio/common/utilsaidl/src/
DUtilsV3.cpp33 bool parseAlertStatus(const std::string& s, AlertStatus& out) { in parseAlertStatus()
46 bool parseAlertMessageType(const std::string& s, AlertMessageType& out) { in parseAlertMessageType()
59 bool parseAlertCategory(const std::string& s, AlertCategory& out) { in parseAlertCategory()
90 bool parseAlertUrgency(const std::string& s, AlertUrgency& out) { in parseAlertUrgency()
107 bool parseAlertSeverity(const std::string& s, AlertSeverity& out) { in parseAlertSeverity()
124 bool parseAlertCertainty(const std::string& s, AlertCertainty& out) { in parseAlertCertainty()
/hardware/google/pixel/health/test/
DTestBatteryDefender.cpp227 InSequence s; in TEST_F() local
235 InSequence s; in TEST_F() local
246 InSequence s; in TEST_F() local
260 InSequence s; in TEST_F() local
274 InSequence s; in TEST_F() local
295 InSequence s; in TEST_F() local
318 InSequence s; in TEST_F() local
350 InSequence s; in TEST_F() local
370 InSequence s; in TEST_F() local
395 InSequence s; in TEST_F() local
[all …]
/hardware/google/aemu/base/
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
DStringUtils.cpp64 std::string Trim(const std::string& s) { in Trim()
102 bool StartsWith(std::string_view s, std::string_view prefix) { in StartsWith()
121 std::string s(strView); in splitTokens() local
129 std::vector<std::string> Split(const std::string& s, in Split()
157 bool StartsWith(std::string_view s, char prefix) { in StartsWith()
161 bool StartsWithIgnoreCase(std::string_view s, std::string_view prefix) { in StartsWithIgnoreCase()
166 bool EndsWith(std::string_view s, std::string_view suffix) { in EndsWith()
171 bool EndsWith(std::string_view s, char suffix) { in EndsWith()
175 bool EndsWithIgnoreCase(std::string_view s, std::string_view suffix) { in EndsWithIgnoreCase()
186 std::string StringReplace(std::string_view s, in StringReplace()
DHealthMonitor_unittest.cpp92 InSequence s; in TEST_F() local
127 InSequence s; in TEST_F() local
145 InSequence s; in TEST_F() local
174 InSequence s; in TEST_F() local
209 InSequence s; in TEST_F() local
249 InSequence s; in TEST_F() local
280 InSequence s; in TEST_F() local
313 InSequence s; in TEST_F() local
344 InSequence s; in TEST_F() local
379 InSequence s; in TEST_F() local
[all …]
/hardware/interfaces/gnss/common/utils/default/
DParseUtils.cpp26 int ParseUtils::tryParseInt(const std::string& s, int defaultVal) { in tryParseInt()
34 float ParseUtils::tryParsefloat(const std::string& s, float defaultVal) { in tryParsefloat()
42 double ParseUtils::tryParseDouble(const std::string& s, double defaultVal) { in tryParseDouble()
50 long ParseUtils::tryParseLong(const std::string& s, long defaultVal) { in tryParseLong()
58 long long ParseUtils::tryParseLongLong(const std::string& s, long long defaultVal) { in tryParseLongLong()
/hardware/st/nfc/1.0/include/
Dhalcore.h50 #define LOG(s) \ argument
57 #define LOGE(s) \ argument
63 #define LOGV(s, ...) \ argument
70 #define LOGVE(s, ...) \ argument
/hardware/interfaces/tests/foo/1.0/default/lib/
DFooHelper.cpp13 std::string to_string(const hidl_string &s) { in to_string()
18 std::string s; in QuuxToString() local
30 std::string s; in MultiDimensionalToString() local
/hardware/google/aemu/host-common/include/host-common/
Dhw-config.h27 #define HWCFG_BOOL(n,s,d,a,t) hw_bool_t n; argument
28 #define HWCFG_INT(n,s,d,a,t) hw_int_t n; argument
29 #define HWCFG_STRING(n,s,d,a,t) hw_string_t n; argument
30 #define HWCFG_DOUBLE(n,s,d,a,t) hw_double_t n; argument
31 #define HWCFG_DISKSIZE(n,s,d,a,t) hw_disksize_t n; argument
/hardware/google/gfxstream/third-party/glm/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 …]
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)
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 …]
/hardware/st/secure_element2/secure_element/esehal/src/
Dchecksum.c30 lrc8(const void *s, size_t n) in lrc8()
44 crc_ccitt(uint16_t crc, const void *s, size_t n) in crc_ccitt()
/hardware/interfaces/memtrack/1.0/vts/functional/
DVtsHalMemtrackV1_0TargetTest.cpp68 bool validStatus(MemtrackStatus s) { in validStatus()
75 auto generate_cb(MemtrackStatus *s, hidl_vec<MemtrackRecord> *v) { in generate_cb()
85 MemtrackStatus s; in TEST_P() local
100 MemtrackStatus s; in TEST_P() local
118 MemtrackStatus s; in TEST_P() local
/hardware/interfaces/audio/aidl/common/include/
DUtils.h40 inline bool errorIsOk(const ScopedAStatus& s) { in errorIsOk()
44 inline std::string errorToString(const ScopedAStatus& s) { in errorToString()
145 static inline bool maybeVendorExtension(const std::string& s) { in maybeVendorExtension()
151 static inline bool isVendorExtension(const std::string& s) { in isVendorExtension()
/hardware/google/gfxstream/host/vulkan/
DVkQsriTimeline_unittest.cpp16 InSequence s; in TEST() local
30 InSequence s; in TEST() local
/hardware/google/gfxstream/third-party/glm/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 …]
/hardware/interfaces/oemlock/1.0/vts/functional/
DVtsHalOemLockV1_0TargetTest.cpp47 const auto ret = oemlock->getName([&](OemLockStatus s, hidl_string n) { in TEST_P()
67 const auto ret = oemlock->isOemUnlockAllowedByDevice([&](OemLockStatus s, bool a) { in TEST_P()
86 auto getAllowedCallback = [&](OemLockStatus s, bool a) { in TEST_P()
124 const auto ret = oemlock->isOemUnlockAllowedByCarrier([&](OemLockStatus s, bool a) { in TEST_P()
148 auto getAllowedCallback = [&](OemLockStatus s, bool a) { in TEST_P()
/hardware/google/gfxstream/host/gl/glestranslator/GLES_CM/
DGLEScmUtils.cpp21 size_t s = 0; in glParamSize() local
/hardware/interfaces/macsec/aidl/default/
DMacsecPskPlugin.cpp127 for (auto s : mKeys) { in ~MacsecPskPlugin() local
194 for (auto s : mKeys) { in calcIcv() local
226 for (auto s : mKeys) { in generateSak() local
257 for (auto s : mKeys) { in wrapSak() local
287 for (auto s : mKeys) { in unwrapSak() local
/hardware/google/gfxstream/third-party/stb/include/stb/
Dstb_image_write.h276 static void stbi__start_write_callbacks(stbi__write_context *s, stbi_write_func *c, void *context) in stbi__start_write_callbacks()
332 static int stbi__start_write_file(stbi__write_context *s, const char *filename) in stbi__start_write_file()
339 static void stbi__end_write_file(stbi__write_context *s) in stbi__end_write_file()
349 static void stbiw__writefv(stbi__write_context *s, const char *fmt, va_list v) in stbiw__writefv()
378 static void stbiw__writef(stbi__write_context *s, const char *fmt, ...) in stbiw__writef()
386 static void stbiw__write_flush(stbi__write_context *s) in stbiw__write_flush()
394 static void stbiw__putc(stbi__write_context *s, unsigned char c) in stbiw__putc()
399 static void stbiw__write1(stbi__write_context *s, unsigned char a) in stbiw__write1()
406 static void stbiw__write3(stbi__write_context *s, unsigned char a, unsigned char b, unsigned char c) in stbiw__write3()
418 static void stbiw__write_pixel(stbi__write_context *s, int rgb_dir, int comp, int write_alpha, int … in stbiw__write_pixel()
[all …]

1234567891011