Home
last modified time | relevance | path

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

12345678910>>...294

/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 …]
/third_party/typescript/tests/baselines/reference/
DconditionalEqualityOnLiteralObjects.js2 const a = { a: 1 } property
5 if ({ a: 1 } === { a: 1 }) { property
9 if (a === { a: 1 }) { property
13 if ({ a: 1 } === a) { property
18 if ({ a: 1 } !== { a: 1 }) { property
22 if (a !== { a: 1 }) { property
26 if ({ a: 1 } !== a) { property
31 if ({ a: 1 } == { a: 1 }) { property
35 if (a == { a: 1 }) { property
39 if ({ a: 1 } == a) { property
[all …]
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 …]
DrenamingDestructuredPropertyInFunctionType.js4 type O = { a?: string; b: number; c: number; }; field
6 type F2 = ({ a: string }: O) => any; // Error property
7 type F3 = ({ a: string, b, c }: O) => any; // Error property
8 type F4 = ({ a: string }: O) => any; // Error property
9 type F5 = ({ a: string, b, c }: O) => any; // Error property
10 type F6 = ({ a: string }) => typeof string; // OK property
11 type F7 = ({ a: string, b: number }) => typeof number; // Error property
12 type F8 = ({ a, b: number }) => typeof number; // OK property
16 type G2 = new ({ a: string }: O) => any; // Error property
17 type G3 = new ({ a: string, b, c }: O) => any; // Error 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 …]
DspreadDuplicateExact.js11 let a1 = { a: 123, ...a }; // string (Error) property
12 let b1 = { a: 123, ...b }; // string | number property
13 let c1 = { a: 123, ...c }; // string | undefined (Error) property
14 let d1 = { a: 123, ...d }; // string | number | undefined property
16 let a2 = { a: 123, ...(t ? a : {}) }; // string | number property
17 let b2 = { a: 123, ...(t ? b : {}) }; // string | number property
18 let c2 = { a: 123, ...(t ? c : {}) }; // string | number | undefined property
19 let d2 = { a: 123, ...(t ? d : {}) }; // string | number | undefined property
36 var a1 = __assign({ a: 123 }, a); // string (Error) property
37 var b1 = __assign({ a: 123 }, b); // string | number property
[all …]
DspreadDuplicate.js11 let a1 = { a: 123, ...a }; // string (Error) property
12 let b1 = { a: 123, ...b }; // string | number property
13 let c1 = { a: 123, ...c }; // string | undefined (Error) property
14 let d1 = { a: 123, ...d }; // string | number property
16 let a2 = { a: 123, ...(t ? a : {}) }; // string | number property
17 let b2 = { a: 123, ...(t ? b : {}) }; // string | number property
18 let c2 = { a: 123, ...(t ? c : {}) }; // string | number property
19 let d2 = { a: 123, ...(t ? d : {}) }; // string | number property
36 var a1 = __assign({ a: 123 }, a); // string (Error) property
37 var b1 = __assign({ a: 123 }, b); // string | number property
[all …]
DreadonlyPropertySubtypeRelationDirected.js6 const two: { a: string } = { a: 'two' }; property
7 const one: { readonly a: string } = { a: 'one' }; property
25 const two: { a: string } = { a: 'two' }; property
26 const one: { readonly a: string } = { a: 'one' }; property
45 const one: { readonly a: string } = { a: 'one' }; property
46 const two: { a: string } = { a: 'two' }; property
65 const one: { readonly a: string } = { a: 'one' }; property
66 const two: { a: string } = { a: 'two' }; property
86 var two = { a: 'two' }; property
87 var one = { a: 'one' }; 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/libcoap/include/coap3/
Dcoap_mutex_internal.h33 #define coap_mutex_init(a) pthread_mutex_init(a, NULL) argument
34 #define coap_mutex_destroy(a) pthread_mutex_destroy(a) argument
35 #define coap_mutex_lock(a) pthread_mutex_lock(a) argument
36 #define coap_mutex_trylock(a) pthread_mutex_trylock(a) argument
37 #define coap_mutex_unlock(a) pthread_mutex_unlock(a) argument
45 #define coap_mutex_init(a) mutex_init(a) argument
46 #define coap_mutex_destroy(a) argument
47 #define coap_mutex_lock(a) mutex_lock(a) argument
48 #define coap_mutex_trylock(a) mutex_trylock(a) argument
49 #define coap_mutex_unlock(a) mutex_unlock(a) argument
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dir_builder.cpp74 swizzle(operand a, int swizzle, int components) in swizzle()
87 swizzle_for_size(operand a, unsigned components) in swizzle_for_size()
102 swizzle_xxxx(operand a) in swizzle_xxxx()
108 swizzle_yyyy(operand a) in swizzle_yyyy()
114 swizzle_zzzz(operand a) in swizzle_zzzz()
120 swizzle_wwww(operand a) in swizzle_wwww()
126 swizzle_x(operand a) in swizzle_x()
132 swizzle_y(operand a) in swizzle_y()
138 swizzle_z(operand a) in swizzle_z()
144 swizzle_w(operand a) in swizzle_w()
[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/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/node/deps/openssl/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/openssl/test/
Dtestutil.h289 # define PRINTF_FORMAT(a, b) argument
299 # define PRINTF_FORMAT(a, b) __attribute__ ((format(printf, a, b))) argument
429 # define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b) argument
430 # define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b) argument
431 # define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b) argument
432 # define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b) argument
433 # define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b) argument
434 # define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b) argument
436 # define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b) argument
437 # define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b) argument
[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/node/deps/v8/src/compiler/
Draw-machine-assembler.h127 Node* Projection(int index, Node* a) { in Projection()
340 Node* WordAnd(Node* a, Node* b) { in WordAnd()
343 Node* WordOr(Node* a, Node* b) { return AddNode(machine()->WordOr(), a, b); } in WordOr()
344 Node* WordXor(Node* a, Node* b) { in WordXor()
347 Node* WordShl(Node* a, Node* b) { in WordShl()
350 Node* WordShr(Node* a, Node* b) { in WordShr()
353 Node* WordSar(Node* a, Node* b) { in WordSar()
356 Node* WordSarShiftOutZeros(Node* a, Node* b) { in WordSarShiftOutZeros()
359 Node* WordRor(Node* a, Node* b) { in WordRor()
362 Node* WordEqual(Node* a, Node* b) { in WordEqual()
[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.h100 static ossl_inline unsigned int constant_time_msb(unsigned int a) in constant_time_msb()
106 static ossl_inline uint32_t constant_time_msb_32(uint32_t a) in constant_time_msb_32()
111 static ossl_inline uint64_t constant_time_msb_64(uint64_t a) in constant_time_msb_64()
116 static ossl_inline size_t constant_time_msb_s(size_t a) in constant_time_msb_s()
121 static ossl_inline unsigned int constant_time_lt(unsigned int a, in constant_time_lt()
127 static ossl_inline size_t constant_time_lt_s(size_t a, size_t b) in constant_time_lt_s()
132 static ossl_inline unsigned char constant_time_lt_8(unsigned int a, in constant_time_lt_8()
138 static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b) in constant_time_lt_64()
143 static ossl_inline unsigned int constant_time_ge(unsigned int a, in constant_time_ge()
149 static ossl_inline size_t constant_time_ge_s(size_t a, size_t b) in constant_time_ge_s()
[all …]
/third_party/node/deps/openssl/openssl/include/internal/
Dconstant_time.h100 static ossl_inline unsigned int constant_time_msb(unsigned int a) in constant_time_msb()
106 static ossl_inline uint32_t constant_time_msb_32(uint32_t a) in constant_time_msb_32()
111 static ossl_inline uint64_t constant_time_msb_64(uint64_t a) in constant_time_msb_64()
116 static ossl_inline size_t constant_time_msb_s(size_t a) in constant_time_msb_s()
121 static ossl_inline unsigned int constant_time_lt(unsigned int a, in constant_time_lt()
127 static ossl_inline size_t constant_time_lt_s(size_t a, size_t b) in constant_time_lt_s()
132 static ossl_inline unsigned char constant_time_lt_8(unsigned int a, in constant_time_lt_8()
138 static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b) in constant_time_lt_64()
143 static ossl_inline unsigned int constant_time_ge(unsigned int a, in constant_time_ge()
149 static ossl_inline size_t constant_time_ge_s(size_t a, size_t b) in constant_time_ge_s()
[all …]
/third_party/openssl/ohos_lite/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>>...294