Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 8211) sorted by relevance

12345678910>>...329

/third_party/boost/boost/qvm/
Dmat_access.hpp27 A( M const & a ) in A()
41 A( M & a ) in A()
52 …_if_c<is_mat<M>::value,typename mat_traits<M>::scalar_type>::type A00( M const & a ) { BOOST_STATI… in A00()
53 …_if_c<is_mat<M>::value,typename mat_traits<M>::scalar_type>::type A01( M const & a ) { BOOST_STATI… in A01()
54 …_if_c<is_mat<M>::value,typename mat_traits<M>::scalar_type>::type A02( M const & a ) { BOOST_STATI… in A02()
55 …_if_c<is_mat<M>::value,typename mat_traits<M>::scalar_type>::type A03( M const & a ) { BOOST_STATI… in A03()
56 …_if_c<is_mat<M>::value,typename mat_traits<M>::scalar_type>::type A04( M const & a ) { BOOST_STATI… in A04()
57 …_if_c<is_mat<M>::value,typename mat_traits<M>::scalar_type>::type A05( M const & a ) { BOOST_STATI… in A05()
58 …_if_c<is_mat<M>::value,typename mat_traits<M>::scalar_type>::type A06( M const & a ) { BOOST_STATI… in A06()
59 …_if_c<is_mat<M>::value,typename mat_traits<M>::scalar_type>::type A07( M const & a ) { BOOST_STATI… in A07()
[all …]
Dvec_access.hpp27 A( V const & a ) in A()
39 A( V & a ) in A()
46 …le_if_c<is_vec<V>::value,typename vec_traits<V>::scalar_type>::type X( V const & a ) { BOOST_STATI… in X()
47 …le_if_c<is_vec<V>::value,typename vec_traits<V>::scalar_type>::type Y( V const & a ) { BOOST_STATI… in Y()
48 …le_if_c<is_vec<V>::value,typename vec_traits<V>::scalar_type>::type Z( V const & a ) { BOOST_STATI… in Z()
49 …le_if_c<is_vec<V>::value,typename vec_traits<V>::scalar_type>::type W( V const & a ) { BOOST_STATI… in W()
51 …ble_if_c<is_vec<V>::value,typename vec_traits<V>::scalar_type &>::type X( V & a ) { BOOST_STATIC_A… in X()
52 …ble_if_c<is_vec<V>::value,typename vec_traits<V>::scalar_type &>::type Y( V & a ) { BOOST_STATIC_A… in Y()
53 …ble_if_c<is_vec<V>::value,typename vec_traits<V>::scalar_type &>::type Z( V & a ) { BOOST_STATIC_A… in Z()
54 …ble_if_c<is_vec<V>::value,typename vec_traits<V>::scalar_type &>::type W( V & a ) { BOOST_STATIC_A… in W()
[all …]
/third_party/boost/boost/qvm/gen/
Dswizzle4.hpp101 X111( S const & a ) in X111()
119 X111( S & a ) in X111()
203 X011( S const & a ) in X011()
221 X011( S & a ) in X011()
563 _1X11( S const & a ) in _1X11()
581 _1X11( S & a ) in _1X11()
599 _0X11( S const & a ) in _0X11()
617 _0X11( S & a ) in _0X11()
689 XX11( S const & a ) in XX11()
707 XX11( S & a ) in XX11()
[all …]
Dswizzle3.hpp101 X11( S const & a ) in X11()
119 X11( S & a ) in X11()
203 X01( S const & a ) in X01()
221 X01( S & a ) in X01()
563 _1X1( S const & a ) in _1X1()
581 _1X1( S & a ) in _1X1()
599 _0X1( S const & a ) in _0X1()
617 _0X1( S & a ) in _0X1()
689 XX1( S const & a ) in XX1()
707 XX1( S & a ) in XX1()
[all …]
/third_party/ltp/tools/sparse/sparse-src/validation/optim/
Dcast-kinds.c4 static int uint_2_int(uint a) { return (int)a; } in uint_2_int()
5 static int long_2_int(long a) { return (int)a; } in long_2_int()
6 static int ulong_2_int(ulong a) { return (int)a; } in ulong_2_int()
7 static int vptr_2_int(void *a) { return (int)a; } in vptr_2_int()
8 static int iptr_2_int(int *a) { return (int)a; } in iptr_2_int()
9 static int float_2_int(float a) { return (int)a; } in float_2_int()
10 static int double_2_int(double a) { return (int)a; } in double_2_int()
11 static uint int_2_uint(int a) { return (uint)a; } in int_2_uint()
12 static uint long_2_uint(long a) { return (uint)a; } in long_2_uint()
13 static uint ulong_2_uint(ulong a) { return (uint)a; } in ulong_2_uint()
[all …]
Dbinops-same-args.c3 int ssub(int a) { return a - a; } in ssub()
4 u32 usub(u32 a) { return a - a; } in usub()
6 int sdiv(int a) { return a / a; } in sdiv()
7 u32 udiv(u32 a) { return a / a; } in udiv()
8 int smod(int a) { return a % a; } in smod()
9 u32 umod(u32 a) { return a % a; } in umod()
11 int seq(int a) { return a == a; } in seq()
12 int sne(int a) { return a != a; } in sne()
13 int slt(int a) { return a < a; } in slt()
14 int sgt(int a) { return a > a; } in sgt()
[all …]
Dcanonical-fcmp.c3 int fcmp_eq(double a) { return (g == a); } in fcmp_eq()
4 int fcmp_ne(double a) { return (g != a); } in fcmp_ne()
6 int fcmp_gt(double a) { return (g > a); } in fcmp_gt()
7 int fcmp_ge(double a) { return (g >= a); } in fcmp_ge()
8 int fcmp_le(double a) { return (g <= a); } in fcmp_le()
9 int fcmp_lt(double a) { return (g < a); } in fcmp_lt()
11 int nfcmp_ne(double a) { return !(g == a); } in nfcmp_ne()
12 int nfcmp_eq(double a) { return !(g != a); } in nfcmp_eq()
14 int nfcmp_le(double a) { return !(g > a); } in nfcmp_le()
15 int nfcmp_lt(double a) { return !(g >= a); } in nfcmp_lt()
[all …]
/third_party/typescript/tests/baselines/reference/
DobjectLiteralErrors.js3 var e1 = { a: 0, a: 0 }; property
4 var e2 = { a: '', a: '' }; property
5 var e3 = { a: 0, a: '' }; property
6 var e4 = { a: true, a: false }; property
7 var e5 = { a: {}, a: {} }; property
8 var e6 = { a: 0, 'a': 0 }; property
9 var e7 = { 'a': 0, a: 0 }; property
10 var e8 = { 'a': 0, "a": 0 }; property
11 var e9 = { 'a': 0, 'a': 0 }; property
12 var e10 = { "a": 0, 'a': 0 }; property
[all …]
DconstantEnumAssert.js24 a: 'a', property
28 const foo1 = { a: E1.a } property
30 const foo2 = { a: E2.a } property
32 const foo3 = { a: E1.a } as const property
34 const foo4 = { a: E2.a } as const property
36 const foo5 = { a: E3.a } as const property
38 const foo6 = { a: E4.a } as const property
40 const foo7 = { a: E5.a } as const property
42 const foo8 = { a: E1.a as const } property
44 const foo9 = { a: E2.a as const } property
[all …]
DoverloadResolutionTest1.js2 function foo(bar:{a:number;}[]):string; property
3 function foo(bar:{a:boolean;}[]):number; property
4 function foo(bar:{a:any;}[]):any{ return bar }; property
6 var x1 = foo([{a:true}]); // works property
7 var x11 = foo([{a:0}]); // works property
8 var x111 = foo([{a:"s"}]); // error - does not match any signature property
9 var x1111 = foo([{a:null}]); // works - ambiguous call is resolved to be the first in the overload … property
13 function foo2(bar:{a:number;}):string; property
14 function foo2(bar:{a:boolean;}):number; property
15 function foo2(bar:{a:any;}):any{ return bar }; property
[all …]
DduplicateObjectLiteralProperty.js3 a: 1, property
5 a: 56, // Duplicate property
6 \u0061: "ss", // Duplicate property
7 a: { property
15 get a() { return 0; }, getter
16 set a(v: number) { }, setter
17 get a() { return 0; } getter
23 a: 1, property
25 a: 56, property
26 \u0061: "ss",
[all …]
DdownlevelLetConst16.js17 let {a: z} = {a: 1}; property
27 let {a: z} = { a: 1 }; property
39 let {a: z} = { a: 1 }; property
48 let {a: z} = { a: 1 }; property
62 const {a: z} = { a: 1 }; property
72 const {a: z} = { a: 1 }; property
85 const {a: z} = { a: 1 }; property
95 const {a: z} = { a: 1 }; property
107 let {a: z} = { a: 1 }; property
117 let {a: z} = { a: 1 }; property
[all …]
/third_party/mesa3d/src/mesa/x86/
Dassyntax.h150 #define CHOICE(a,b,c) c argument
242 #define CHOICE(a,b,c) b argument
249 #define CHOICE(a,b,c) a argument
259 #define GLNAME(a) a argument
261 #define GLNAME(a) CONCAT(_,a) argument
334 #define ADDR(a) CHOICE(CONCAT($,a), $a, a) argument
335 #define CONST(a) CHOICE(CONCAT($,a), $a, a) argument
338 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */ argument
339 #define REGIND(a) CHOICE((a), (a), (a)) /* Register a indirect */ argument
341 #define REGOFF(a, b) CHOICE(a(b), a(b), a(b)) argument
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dir_builder.cpp87 swizzle(operand a, int swizzle, int components) in swizzle()
100 swizzle_for_size(operand a, unsigned components) in swizzle_for_size()
115 swizzle_xxxx(operand a) in swizzle_xxxx()
121 swizzle_yyyy(operand a) in swizzle_yyyy()
127 swizzle_zzzz(operand a) in swizzle_zzzz()
133 swizzle_wwww(operand a) in swizzle_wwww()
139 swizzle_x(operand a) in swizzle_x()
145 swizzle_y(operand a) in swizzle_y()
151 swizzle_z(operand a) in swizzle_z()
157 swizzle_w(operand a) in swizzle_w()
[all …]
/third_party/openssl/crypto/ts/
Dts_rsp_utils.c17 int TS_RESP_set_status_info(TS_RESP *a, TS_STATUS_INFO *status_info) in TS_RESP_set_status_info()
34 TS_STATUS_INFO *TS_RESP_get_status_info(TS_RESP *a) in TS_RESP_get_status_info()
40 void TS_RESP_set_tst_info(TS_RESP *a, PKCS7 *p7, TS_TST_INFO *tst_info) in TS_RESP_set_tst_info()
48 PKCS7 *TS_RESP_get_token(TS_RESP *a) in TS_RESP_get_token()
53 TS_TST_INFO *TS_RESP_get_tst_info(TS_RESP *a) in TS_RESP_get_tst_info()
58 int TS_TST_INFO_set_version(TS_TST_INFO *a, long version) in TS_TST_INFO_set_version()
63 long TS_TST_INFO_get_version(const TS_TST_INFO *a) in TS_TST_INFO_get_version()
68 int TS_TST_INFO_set_policy_id(TS_TST_INFO *a, ASN1_OBJECT *policy) in TS_TST_INFO_set_policy_id()
84 ASN1_OBJECT *TS_TST_INFO_get_policy_id(TS_TST_INFO *a) in TS_TST_INFO_get_policy_id()
89 int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint) in TS_TST_INFO_set_msg_imprint()
[all …]
/third_party/boost/libs/gil/doc/html/_static/
Dunderscore.js8 (function(){function q(a,c,d){if(a===c)return a!==0||1/a==1/c;if(a==null||c==null)return a===c;if(a… argument
10 h)&&!f--)break;g=!f}}d.pop();return g}var r=this,G=r._,n={},k=Array.prototype,o=Object.prototype,i=… argument
11 b.forEach=function(a,c,d){if(a!=null)if(w&&a.forEach===w)a.forEach(c,d);else if(a.length===+a.lengt… argument
12 null&&(a=[]);if(y&&a.reduce===y)return e&&(c=b.bind(c,e)),f?a.reduce(c,d):a.reduce(c);j(a,function(… argument
13 function(a,c,b){var e;E(a,function(a,g,h){if(c.call(b,a,g,h))return e=a,true});return e};b.filter=b… argument
14 e&&c.call(b,a,g,h)))return n});return e};var E=b.some=b.any=function(a,c,d){c||(c=b.identity);var e… argument
15 function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))r… argument
16 return e.value};b.shuffle=function(a){var b=[],d;j(a,function(a,f){f==0?b[0]=a:(d=Math.floor(Math.r… argument
17 c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b… argument
18 b.tail=function(a,b,d){return i.call(a,b==null||d?1:b)};b.compact=function(a){return b.filter(a,fun… argument
[all …]
/third_party/boost/libs/hof/doc/html/_static/
Dunderscore.js8 (function(){function q(a,c,d){if(a===c)return a!==0||1/a==1/c;if(a==null||c==null)return a===c;if(a… argument
10 h)&&!f--)break;g=!f}}d.pop();return g}var r=this,G=r._,n={},k=Array.prototype,o=Object.prototype,i=… argument
11 b.forEach=function(a,c,d){if(a!=null)if(w&&a.forEach===w)a.forEach(c,d);else if(a.length===+a.lengt… argument
12 null&&(a=[]);if(y&&a.reduce===y)return e&&(c=b.bind(c,e)),f?a.reduce(c,d):a.reduce(c);j(a,function(… argument
13 function(a,c,b){var e;E(a,function(a,g,h){if(c.call(b,a,g,h))return e=a,true});return e};b.filter=b… argument
14 e&&c.call(b,a,g,h)))return n});return e};var E=b.some=b.any=function(a,c,d){c||(c=b.identity);var e… argument
15 function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))r… argument
16 return e.value};b.shuffle=function(a){var b=[],d;j(a,function(a,f){f==0?b[0]=a:(d=Math.floor(Math.r… argument
17 c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b… argument
18 b.tail=function(a,b,d){return i.call(a,b==null||d?1:b)};b.compact=function(a){return b.filter(a,fun… argument
[all …]
/third_party/boost/libs/python/doc/html/numpy/_static/
Dunderscore.js8 (function(){function q(a,c,d){if(a===c)return a!==0||1/a==1/c;if(a==null||c==null)return a===c;if(a… argument
10 h)&&!f--)break;g=!f}}d.pop();return g}var r=this,G=r._,n={},k=Array.prototype,o=Object.prototype,i=… argument
11 b.forEach=function(a,c,d){if(a!=null)if(w&&a.forEach===w)a.forEach(c,d);else if(a.length===+a.lengt… argument
12 null&&(a=[]);if(y&&a.reduce===y)return e&&(c=b.bind(c,e)),f?a.reduce(c,d):a.reduce(c);j(a,function(… argument
13 function(a,c,b){var e;E(a,function(a,g,h){if(c.call(b,a,g,h))return e=a,true});return e};b.filter=b… argument
14 e&&c.call(b,a,g,h)))return n});return e};var E=b.some=b.any=function(a,c,d){c||(c=b.identity);var e… argument
15 function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))r… argument
16 return e.value};b.shuffle=function(a){var b=[],d;j(a,function(a,f){f==0?b[0]=a:(d=Math.floor(Math.r… argument
17 c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b… argument
18 b.tail=function(a,b,d){return i.call(a,b==null||d?1:b)};b.compact=function(a){return b.filter(a,fun… argument
[all …]
/third_party/boost/libs/dynamic_bitset/test/
Ddyn_bitset_unit_tests3.cpp226 boost::dynamic_bitset<Block> a, b; in run_test_cases() local
230 boost::dynamic_bitset<Block> a(std::string("0")), b(std::string("0")); in run_test_cases() local
234 boost::dynamic_bitset<Block> a(std::string("1")), b(std::string("1")); in run_test_cases() local
238 boost::dynamic_bitset<Block> a(long_string), b(long_string); in run_test_cases() local
242 boost::dynamic_bitset<Block> a(long_string), b(long_string); in run_test_cases() local
247 boost::dynamic_bitset<Block> a(long_string), b(long_string); in run_test_cases() local
254 boost::dynamic_bitset<Block> a, b; in run_test_cases() local
258 boost::dynamic_bitset<Block> a(std::string("0")), b(std::string("0")); in run_test_cases() local
262 boost::dynamic_bitset<Block> a(std::string("1")), b(std::string("1")); in run_test_cases() local
266 boost::dynamic_bitset<Block> a(long_string), b(long_string); in run_test_cases() local
[all …]
Ddyn_bitset_unit_tests1.cpp274 bitset_type a, b; in run_test_cases() local
278 bitset_type a(std::string("1")), b(std::string("0")); in run_test_cases() local
282 bitset_type a(long_string), b(long_string); in run_test_cases() local
286 bitset_type a; in run_test_cases() local
291 bitset_type a(std::string("0")); in run_test_cases() local
314 bitset_type a, b; in run_test_cases() local
318 bitset_type a(std::string("1")), b(std::string("0")); in run_test_cases() local
322 bitset_type a(long_string), b(long_string); in run_test_cases() local
326 bitset_type a; in run_test_cases() local
331 bitset_type a(std::string("0")); in run_test_cases() local
[all …]
/third_party/ltp/tools/sparse/sparse-src/validation/linear/
Dshift-assign1.c8 s16 s16s16(s16 a, s16 b) { a >>= b; return a; } in s16s16()
9 s16 s16s32(s16 a, s32 b) { a >>= b; return a; } in s16s32()
10 s16 s16s64(s16 a, s64 b) { a >>= b; return a; } in s16s64()
11 s16 s16u16(s16 a, u16 b) { a >>= b; return a; } in s16u16()
12 s16 s16u32(s16 a, u32 b) { a >>= b; return a; } in s16u32()
13 s16 s16u64(s16 a, u64 b) { a >>= b; return a; } in s16u64()
14 s32 s32s16(s32 a, s16 b) { a >>= b; return a; } in s32s16()
15 s32 s32s32(s32 a, s32 b) { a >>= b; return a; } in s32s32()
16 s32 s32s64(s32 a, s64 b) { a >>= b; return a; } in s32s64()
17 s32 s32u16(s32 a, u16 b) { a >>= b; return a; } in s32u16()
[all …]
/third_party/openssl/test/
Dtestutil.h158 #define PRINTF_FORMAT(a, b) argument
166 # define PRINTF_FORMAT(a, b) __attribute__ ((format(printf, a, b))) argument
291 # define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b) argument
292 # define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b) argument
293 # define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b) argument
294 # define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b) argument
295 # define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b) argument
296 # define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b) argument
298 # define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b) argument
299 # define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b) argument
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dfunction-param-init4.js25 function f1(a = a) argument
32 function f2([a] = 1 + a)
39 function f3([a = !a])
46 function f4([[a]] = a)
53 function f5([[a], b = a] = a)
60 function f6(a = 3 - ((b)), b) argument
67 function f7(a = b(), [b]) argument
74 function f8(a = (function () { return a * 2 })()) argument
81 function f9({a = b, b:{b}}) property
85 f9({a:2, b:{b:3}}) property
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_cast.cpp22 ToType __attribute__((noinline)) cast(FromType a) { in cast()
27 ToType __attribute__((noinline)) castBits(FromType a) { in castBits()
32 ToType __attribute__((noinline)) cast(int i, FromType a, int j) { in cast()
39 ToType __attribute__((noinline)) castBits(int i, FromType a, int j) { in castBits()
49 static ToType f(bool a) { return cast<bool, ToType>(a); } in f()
50 static ToType f(myint8_t a) { return cast<myint8_t, ToType>(a); } in f()
51 static ToType f(uint8_t a) { return cast<uint8_t, ToType>(a); } in f()
52 static ToType f(int16_t a) { return cast<int16_t, ToType>(a); } in f()
53 static ToType f(uint16_t a) { return cast<uint16_t, ToType>(a); } in f()
54 static ToType f(int32_t a) { return cast<int32_t, ToType>(a); } in f()
[all …]
/third_party/openssl/include/internal/
Dconstant_time.h99 static ossl_inline unsigned int constant_time_msb(unsigned int a) in constant_time_msb()
105 static ossl_inline uint32_t constant_time_msb_32(uint32_t a) in constant_time_msb_32()
110 static ossl_inline uint64_t constant_time_msb_64(uint64_t a) in constant_time_msb_64()
115 static ossl_inline size_t constant_time_msb_s(size_t a) in constant_time_msb_s()
120 static ossl_inline unsigned int constant_time_lt(unsigned int a, in constant_time_lt()
126 static ossl_inline size_t constant_time_lt_s(size_t a, size_t b) in constant_time_lt_s()
131 static ossl_inline unsigned char constant_time_lt_8(unsigned int a, in constant_time_lt_8()
137 static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b) in constant_time_lt_64()
142 static ossl_inline unsigned int constant_time_ge(unsigned int a, in constant_time_ge()
148 static ossl_inline size_t constant_time_ge_s(size_t a, size_t b) in constant_time_ge_s()
[all …]

12345678910>>...329