Home
last modified time | relevance | path

Searched +defs:s +defs:x (Results 1 – 25 of 1189) sorted by relevance

12345678910>>...48

/external/libedit/src/
Dchartype.h80 #define STR(x) L ## x argument
82 #define Isalpha(x) iswalpha(x) argument
83 #define Isalnum(x) iswalnum(x) argument
84 #define Isgraph(x) iswgraph(x) argument
85 #define Isspace(x) iswspace(x) argument
86 #define Isdigit(x) iswdigit(x) argument
87 #define Iscntrl(x) iswcntrl(x) argument
88 #define Isprint(x) iswprint(x) argument
90 #define Isupper(x) iswupper(x) argument
91 #define Islower(x) iswlower(x) argument
[all …]
/external/jemalloc/include/jemalloc/internal/
Datomic.h72 atomic_add_uint64(uint64_t *p, uint64_t x) in atomic_add_uint64()
86 atomic_sub_uint64(uint64_t *p, uint64_t x) in atomic_sub_uint64()
102 atomic_cas_uint64(uint64_t *p, uint64_t c, uint64_t s) in atomic_cas_uint64()
118 atomic_write_uint64(uint64_t *p, uint64_t x) in atomic_write_uint64()
130 atomic_add_uint64(uint64_t *p, uint64_t x) in atomic_add_uint64()
137 atomic_sub_uint64(uint64_t *p, uint64_t x) in atomic_sub_uint64()
144 atomic_cas_uint64(uint64_t *p, uint64_t c, uint64_t s) in atomic_cas_uint64()
151 atomic_write_uint64(uint64_t *p, uint64_t x) in atomic_write_uint64()
158 atomic_add_uint64(uint64_t *p, uint64_t x) in atomic_add_uint64()
171 atomic_sub_uint64(uint64_t *p, uint64_t x) in atomic_sub_uint64()
[all …]
/external/clang/test/CodeGenCXX/
Dnew-overflow.cpp9 int x; member
22 elt *test(short s) { in test()
31 int x; member
45 elt *test(short s) { in test()
55 int x; member
73 elt *test(short s) { in test()
92 elt *test(short s) { in test()
111 elt *test(int s) { in test()
120 int x; member
133 elt *test(unsigned short s) { in test()
[all …]
Dbitfield.cpp22 unsigned read00(S* s) { in read00()
37 unsigned read01(S* s) { in read01()
54 unsigned read20(S* s) { in read20()
71 unsigned read21(S* s) { in read21()
88 unsigned read30(S* s) { in read30()
105 unsigned read31(S* s) { in read31()
122 unsigned read70(S* s) { in read70()
139 unsigned read71(S* s) { in read71()
168 unsigned read(S* s) { in read()
183 void write(S* s, unsigned x) { in write()
[all …]
Dmicrosoft-abi-sret-and-byval.cpp12 int x; member
17 int x; member
22 int x; member
38 int x; member
42 int x; member
47 int x, y; member
53 int x, y; member
113 void small_arg(Small s) {} in small_arg()
118 void medium_arg(Medium s) {} in medium_arg()
123 void small_arg_with_ctor(SmallWithCtor s) {} in small_arg_with_ctor()
[all …]
/external/libtextclassifier/util/hash/
Dfarmhash.h33 inline uint64_t Uint128Low64(const uint128_t x) { in Uint128Low64()
36 inline uint64_t Uint128High64(const uint128_t x) { in Uint128High64()
103 inline uint64_t Hash128to64(uint128_t x) { in Hash128to64()
127 inline uint64_t Fingerprint(uint128_t x) { in Fingerprint()
141 inline uint64_t Fingerprint(uint64_t x) { in Fingerprint()
163 inline size_t Hash(const Str& s) { in Hash()
172 inline uint32_t Hash32(const Str& s) { in Hash32()
182 inline uint32_t Hash32WithSeed(const Str& s, uint32_t seed) { in Hash32WithSeed()
192 inline uint64_t Hash64(const Str& s) { in Hash64()
202 inline uint64_t Hash64WithSeed(const Str& s, uint64_t seed) { in Hash64WithSeed()
[all …]
/external/vulkan-validation-layers/libs/glm/gtx/
Dsimd_vec4.inl43 GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(float const & s) :
47 GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(float const & x, float const & y, float const & z, float co…
76 GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(vec3 const & v, float const & s) :
80 GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(float const & s, vec3 const & v) :
101 GLM_FUNC_QUALIFIER fvec4SIMD& fvec4SIMD::operator+=(float const & s)
113 GLM_FUNC_QUALIFIER fvec4SIMD& fvec4SIMD::operator-=(float const & s)
125 GLM_FUNC_QUALIFIER fvec4SIMD& fvec4SIMD::operator*=(float const & s)
137 GLM_FUNC_QUALIFIER fvec4SIMD& fvec4SIMD::operator/=(float const & s)
183 GLM_FUNC_QUALIFIER fvec4SIMD operator+ (fvec4SIMD const & v, float s)
188 GLM_FUNC_QUALIFIER fvec4SIMD operator+ (float s, fvec4SIMD const & v)
[all …]
/external/compiler-rt/test/msan/
Dparam_tls_limit.cc19 #define OVERFLOW(x) assert(__msan_test_shadow(&x, sizeof(x)) == -1) argument
21 #define NO_OVERFLOW(x) assert(__msan_test_shadow(&x, sizeof(x)) == 0) argument
26 #define PARTIAL_OVERFLOW(x) OVERFLOW(x) argument
30 #define PARTIAL_OVERFLOW(x) assert(__msan_test_shadow((char *)(&(x) + 1) - 1, 1) == -1) argument
36 char x[N]; member
39 void f100(S<100> s) { in f100() argument
43 void f800(S<800> s) { in f800()
47 void f801(S<801> s) { in f801()
51 void f1000(S<1000> s) { in f1000()
55 void f_many(int a, double b, S<800> s, int c, double d) { in f_many()
[all …]
/external/clang/test/Analysis/
Darray-struct-region.cpp23 const struct S *operator -(const struct S &s) { return &s; } in operator -()
24 bool operator ~(const struct S &s) { return (&s) != &s; } in operator ~()
30 struct S s = { 42 }; in getS() local
39 struct S s = getS(); in testAssignment() local
62 int x = getS().field; in testImmediateUse() local
78 int getConstrainedField(struct S s) { in getConstrainedField()
83 int getAssignedField(struct S s) { in getAssignedField()
94 int x = ((getS())).field; in testImmediateUseParens() local
116 const S &s = getS(); in testReferenceAssignment() local
132 int getConstrainedFieldRef(const S &s) { in getConstrainedFieldRef()
[all …]
/external/clang/test/CodeGen/
Dcompound-literal.c4 struct s {int a, b, c;} * b = &(struct s) {1, 2, 3}; struct
11 struct s {int a, b, c;} * b = &(struct s) {1, 2, 3}; in xxx() argument
17 typedef struct S { int x,y; } S; in f() member
19 struct S s; in f() local
37 struct G { short x, y, z; }; member
38 struct G g(int x, int y, int z) { in g()
/external/pdfium/third_party/bigint/
DBigIntegerUtils.cc10 std::string bigUnsignedToString(const BigUnsigned &x) { in bigUnsignedToString()
14 std::string bigIntegerToString(const BigInteger &x) { in bigIntegerToString()
20 BigUnsigned stringToBigUnsigned(const std::string &s) { in stringToBigUnsigned()
24 BigInteger stringToBigInteger(const std::string &s) { in stringToBigInteger()
31 std::ostream &operator <<(std::ostream &os, const BigUnsigned &x) { in operator <<()
47 std::string s = std::string(BigUnsignedInABase(x, base)); in operator <<() local
52 std::ostream &operator <<(std::ostream &os, const BigInteger &x) { in operator <<()
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_init/
Dtestfrmw.h41 #define UNRESOLVED(x, s) \ argument
46 #define FAILED(s) \ argument
55 #define UNTESTED(s) \ argument
63 #define UNRESOLVED(x, s) \ argument
68 #define FAILED(s) \ argument
77 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_trylock/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_getschedparam/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/
Dtestfrmw.h38 #define UNRESOLVED(x, s) \ argument
46 #define FAILED(s) \ argument
59 #define UNTESTED(s) \ argument
68 #define UNRESOLVED(x, s) \ argument
76 #define FAILED(s) \ argument
89 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_lock/
Dtestfrmw.h41 #define UNRESOLVED(x, s) \ argument
46 #define FAILED(s) \ argument
55 #define UNTESTED(s) \ argument
63 #define UNRESOLVED(x, s) \ argument
68 #define FAILED(s) \ argument
77 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cancel/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
Dtestfrmw.h41 #define UNRESOLVED(x, s) \ argument
46 #define FAILED(s) \ argument
55 #define UNTESTED(s) \ argument
63 #define UNRESOLVED(x, s) \ argument
68 #define FAILED(s) \ argument
77 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_init/
Dtestfrmw.h41 #define UNRESOLVED(x, s) \ argument
46 #define FAILED(s) \ argument
55 #define UNTESTED(s) \ argument
63 #define UNRESOLVED(x, s) \ argument
68 #define FAILED(s) \ argument
77 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_once/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_kill/
Dtestfrmw.h42 #define UNRESOLVED(x, s) \ argument
47 #define FAILED(s) \ argument
56 #define UNTESTED(s) \ argument
64 #define UNRESOLVED(x, s) \ argument
69 #define FAILED(s) \ argument
78 #define UNTESTED(s) \ argument

12345678910>>...48