Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 8615) sorted by relevance

12345678910>>...345

/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/ltp/tools/sparse/sparse-src/validation/optim/
Dcse-dual-compare.c1 static int eqeq(int a, int b) { return (a == b) == (b == a); } in eqeq()
2 static int nene(int a, int b) { return (a != b) == (b != a); } in nene()
4 static int ltgt(int a, int b) { return (a < b) == (b > a); } in ltgt()
5 static int lege(int a, int b) { return (a <= b) == (b >= a); } in lege()
6 static int gele(int a, int b) { return (a >= b) == (b <= a); } in gele()
7 static int gtlt(int a, int b) { return (a > b) == (b < a); } in gtlt()
9 static int eneqne(int a, int b) { return (a == b) == !(b != a); } in eneqne()
10 static int enneeq(int a, int b) { return (a != b) == !(b == a); } in enneeq()
12 static int enltle(int a, int b) { return (a < b) == !(b <= a); } in enltle()
13 static int enlelt(int a, int b) { return (a <= b) == !(b < a); } in enlelt()
[all …]
Dbool-simplify2.c6 static uint ioii(uint a, uint b) { return a || b; } in ioii()
7 static uint iaii(uint a, uint b) { return a && b; } in iaii()
8 static bool boii(uint a, uint b) { return a || b; } in boii()
9 static bool baii(uint a, uint b) { return a && b; } in baii()
10 static uint ioiii(uint a, uint b, uint c) { return a || b || c; } in ioiii()
11 static uint iaiii(uint a, uint b, uint c) { return a && b && c; } in iaiii()
12 static bool boiii(uint a, uint b, uint c) { return a || b || c; } in boiii()
13 static bool baiii(uint a, uint b, uint c) { return a && b && c; } in baiii()
17 static uint iobb(bool a, bool b) { return a || b; } in iobb()
18 static uint iabb(bool a, bool b) { return a && b; } in iabb()
[all …]
Dfact-ior-and.c1 int fr_abx(int a, int b, int x) { return ((a & x) | (b & x)) == ((a | b) & x); } in fr_abx()
2 int fl_abx(int a, int b, int x) { return ((x & a) | (x & b)) == ((a | b) & x); } in fl_abx()
3 int fm_abx(int a, int b, int x) { return ((a & x) | (x & b)) == ((a | b) & x); } in fm_abx()
4 int fn_abx(int a, int b, int x) { return ((x & a) | (b & x)) == ((a | b) & x); } in fn_abx()
6 int fr_bax(int b, int a, int x) { return ((a & x) | (b & x)) == ((b | a) & x); } in fr_bax()
7 int fl_bax(int b, int a, int x) { return ((x & a) | (x & b)) == ((b | a) & x); } in fl_bax()
8 int fm_bax(int b, int a, int x) { return ((a & x) | (x & b)) == ((b | a) & x); } in fm_bax()
9 int fn_bax(int b, int a, int x) { return ((x & a) | (b & x)) == ((b | a) & x); } in fn_bax()
11 int fr_axb(int a, int x, int b) { return ((a & x) | (b & x)) == ((a | b) & x); } in fr_axb()
12 int fl_axb(int a, int x, int b) { return ((x & a) | (x & b)) == ((a | b) & x); } in fl_axb()
[all …]
Dfact-and-ior.c1 int fr_abx(int a, int b, int x) { return ((a | x) & (b | x)) == ((a & b) | x); } in fr_abx()
2 int fl_abx(int a, int b, int x) { return ((x | a) & (x | b)) == ((a & b) | x); } in fl_abx()
3 int fm_abx(int a, int b, int x) { return ((a | x) & (x | b)) == ((a & b) | x); } in fm_abx()
4 int fn_abx(int a, int b, int x) { return ((x | a) & (b | x)) == ((a & b) | x); } in fn_abx()
6 int fr_bax(int b, int a, int x) { return ((a | x) & (b | x)) == ((b & a) | x); } in fr_bax()
7 int fl_bax(int b, int a, int x) { return ((x | a) & (x | b)) == ((b & a) | x); } in fl_bax()
8 int fm_bax(int b, int a, int x) { return ((a | x) & (x | b)) == ((b & a) | x); } in fm_bax()
9 int fn_bax(int b, int a, int x) { return ((x | a) & (b | x)) == ((b & a) | x); } in fn_bax()
11 int fr_axb(int a, int x, int b) { return ((a | x) & (b | x)) == ((a & b) | x); } in fr_axb()
12 int fl_axb(int a, int x, int b) { return ((x | a) & (x | b)) == ((a & b) | x); } in fl_axb()
[all …]
Dfact-add-mul.c1 int fr_abx(int a, int b, int x) { return ((a * x) + (b * x)) == ((a + b) * x); } in fr_abx()
2 int fl_abx(int a, int b, int x) { return ((x * a) + (x * b)) == ((a + b) * x); } in fl_abx()
3 int fm_abx(int a, int b, int x) { return ((a * x) + (x * b)) == ((a + b) * x); } in fm_abx()
4 int fn_abx(int a, int b, int x) { return ((x * a) + (b * x)) == ((a + b) * x); } in fn_abx()
6 int fr_bax(int b, int a, int x) { return ((a * x) + (b * x)) == ((b + a) * x); } in fr_bax()
7 int fl_bax(int b, int a, int x) { return ((x * a) + (x * b)) == ((b + a) * x); } in fl_bax()
8 int fm_bax(int b, int a, int x) { return ((a * x) + (x * b)) == ((b + a) * x); } in fm_bax()
9 int fn_bax(int b, int a, int x) { return ((x * a) + (b * x)) == ((b + a) * x); } in fn_bax()
11 int fr_axb(int a, int x, int b) { return ((a * x) + (b * x)) == ((a + b) * x); } in fr_axb()
12 int fl_axb(int a, int x, int b) { return ((x * a) + (x * b)) == ((a + b) * x); } in fl_axb()
[all …]
Dfact-xor-and.c1 int fr_abx(int a, int b, int x) { return ((a & x) ^ (b & x)) == ((a ^ b) & x); } in fr_abx()
2 int fl_abx(int a, int b, int x) { return ((x & a) ^ (x & b)) == ((a ^ b) & x); } in fl_abx()
3 int fm_abx(int a, int b, int x) { return ((a & x) ^ (x & b)) == ((a ^ b) & x); } in fm_abx()
4 int fn_abx(int a, int b, int x) { return ((x & a) ^ (b & x)) == ((a ^ b) & x); } in fn_abx()
6 int fr_bax(int b, int a, int x) { return ((a & x) ^ (b & x)) == ((b ^ a) & x); } in fr_bax()
7 int fl_bax(int b, int a, int x) { return ((x & a) ^ (x & b)) == ((b ^ a) & x); } in fl_bax()
8 int fm_bax(int b, int a, int x) { return ((a & x) ^ (x & b)) == ((b ^ a) & x); } in fm_bax()
9 int fn_bax(int b, int a, int x) { return ((x & a) ^ (b & x)) == ((b ^ a) & x); } in fn_bax()
11 int fr_axb(int a, int x, int b) { return ((a & x) ^ (b & x)) == ((a ^ b) & x); } in fr_axb()
12 int fl_axb(int a, int x, int b) { return ((x & a) ^ (x & b)) == ((a ^ b) & x); } in fl_axb()
[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/typescript/tests/cases/compiler/
DcastParentheses.ts2 static b: any; property in a
5 var b = (<any>a); variable
6 var b = (<any>a).b; variable
7 var b = (<any>a.b).c; variable
8 var b = (<any>a.b()).c; variable
9 var b = (<any>new a); variable
10 var b = (<any>new a.b); variable
11 var b = (<any>new a).b variable
/third_party/typescript/tests/baselines/reference/
DobjectSpreadNegative.js2 let o = { a: 1, b: 'no' } property
25 let b = { b: false }; property
29 let duplicated = { b: 'bad', ...o, b: 'bad', ...o2, b: 'bad' } property
33 { b: 'ignored', ...o } property
35 let o3 = { a: 1, b: 'no' } property
36 let o4 = { b: 'yes', c: true } property
38 { b: 'ok', ...o3, ...o4 } property
40 { ...o3, b: 'ok', ...o4 } property
46 { ...o3, ['in the middle']: 13, b: 'maybe?', ...o4 } property
91 var o = { a: 1, b: 'no' }; property
[all …]
DoptionalParameterInDestructuringWithInitializer.js6 function func1( {a, b}: {a: number, b?: number} = {a: 1, b: 2} ) { field
11 function func2( {a, b = 3}: {a: number, b?:number} = {a: 1,b: 2} ) { property
16 function func3( {a, b}: {a: number, b?: number} = {a: 1} ) { field
21 function func4( {a: {b, c}, d}: {a: {b: number,c?: number},d: number} = {a: {b: 1,c: 2},d: 3} ) { property
26 function func5({a: {b, c = 4}, d}: {a: {b: number,c?: number},d: number} = {a: {b: 1,c: 2},d: 3} ) { property
31 function func6( {a: {b, c} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b: 1,… property
36 function func7( {a: {b, c = 6} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b… property
DsuperInStaticMembers1(target=es5).js514 var extendStatics = function (d, b) { argument
516 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
520 return function (d, b) { argument
647 var extendStatics = function (d, b) { argument
649 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
653 return function (d, b) { argument
676 var extendStatics = function (d, b) { argument
678 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
682 return function (d, b) { argument
705 var extendStatics = function (d, b) { argument
[all …]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
Dbuilder_constructor_expression_test.cc29 spirv::Builder& b = Build(); in TEST_F() local
43 spirv::Builder& b = Build(); in TEST_F() local
56 spirv::Builder& b = Build(); in TEST_F() local
73 spirv::Builder& b = Build(); in TEST_F() local
100 spirv::Builder& b = Build(); in TEST_F() local
120 spirv::Builder& b = Build(); in TEST_F() local
148 spirv::Builder& b = Build(); in TEST_F() local
172 spirv::Builder& b = Build(); in TEST_F() local
189 spirv::Builder& b = Build(); in TEST_F() local
204 spirv::Builder& b = Build(); in TEST_F() local
[all …]
Dbuilder_type_test.cc39 spirv::Builder& b = Build(); in TEST_F() local
60 spirv::Builder& b = Build(); in TEST_F() local
75 spirv::Builder& b = Build(); in TEST_F() local
92 spirv::Builder& b = Build(); in TEST_F() local
112 spirv::Builder& b = Build(); in TEST_F() local
128 spirv::Builder& b = Build(); in TEST_F() local
143 spirv::Builder& b = Build(); in TEST_F() local
156 spirv::Builder& b = Build(); in TEST_F() local
171 spirv::Builder& b = Build(); in TEST_F() local
184 spirv::Builder& b = Build(); in TEST_F() local
[all …]
/third_party/node/deps/npm/node_modules/@sigstore/bundle/dist/
Dvalidate.js24 function assertBundle(b) { argument
32 function assertBundleV01(b) { argument
42 function isBundleV01(b) { argument
53 function assertBundleV02(b) { argument
63 function assertBundleLatest(b) { argument
73 function validateBundleBase(b) { argument
161 function validateInclusionPromise(b) { argument
174 function validateInclusionProof(b) { argument
192 function validateNoCertificateChain(b) { argument
/third_party/openssl/ohos_lite/include/openssl/
Dbio.h182 # define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument
183 # define BIO_set_retry_special(b) \ argument
185 # define BIO_set_retry_read(b) \ argument
187 # define BIO_set_retry_write(b) \ argument
191 # define BIO_clear_retry_flags(b) \ argument
193 # define BIO_get_retry_flags(b) \ argument
358 # define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL) argument
368 # define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0, \ argument
370 # define BIO_set_conn_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,1, \ argument
372 # define BIO_set_conn_address(b,addr) BIO_ctrl(b,BIO_C_SET_CONNECT,2, \ argument
[all …]
/third_party/openssl/include/openssl/
Dbio.h.in176 # define BIO_get_ktls_send(b) \ argument
178 # define BIO_get_ktls_recv(b) \ argument
222 # define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument
223 # define BIO_set_retry_special(b) \ argument
225 # define BIO_set_retry_read(b) \ argument
227 # define BIO_set_retry_write(b) \ argument
231 # define BIO_clear_retry_flags(b) \ argument
233 # define BIO_get_retry_flags(b) \ argument
411 # define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL) argument
421 # define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0, \ argument
[all …]
/third_party/node/deps/openssl/openssl/include/openssl/
Dbio.h.in176 # define BIO_get_ktls_send(b) \ argument
178 # define BIO_get_ktls_recv(b) \ argument
222 # define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument
223 # define BIO_set_retry_special(b) \ argument
225 # define BIO_set_retry_read(b) \ argument
227 # define BIO_set_retry_write(b) \ argument
231 # define BIO_clear_retry_flags(b) \ argument
233 # define BIO_get_retry_flags(b) \ argument
411 # define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL) argument
421 # define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0, \ argument
[all …]
/third_party/python/Lib/
Doperator.py27 def lt(a, b): argument
31 def le(a, b): argument
35 def eq(a, b): argument
39 def ne(a, b): argument
43 def ge(a, b): argument
47 def gt(a, b): argument
61 def is_(a, b): argument
65 def is_not(a, b): argument
75 def add(a, b): argument
79 def and_(a, b): argument
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_builtin_builder.h57 nir_nan_check2(nir_builder *b, nir_ssa_def *x, nir_ssa_def *y, nir_ssa_def *res) in nir_nan_check2()
63 nir_fmax_abs_vec_comp(nir_builder *b, nir_ssa_def *vec) in nir_fmax_abs_vec_comp()
73 nir_iabs_diff(nir_builder *b, nir_ssa_def *x, nir_ssa_def *y) in nir_iabs_diff()
82 nir_uabs_diff(nir_builder *b, nir_ssa_def *x, nir_ssa_def *y) in nir_uabs_diff()
91 nir_fexp(nir_builder *b, nir_ssa_def *x) in nir_fexp()
97 nir_flog(nir_builder *b, nir_ssa_def *x) in nir_flog()
103 nir_imad24(nir_builder *b, nir_ssa_def *x, nir_ssa_def *y, nir_ssa_def *z) in nir_imad24()
110 nir_imad_hi(nir_builder *b, nir_ssa_def *x, nir_ssa_def *y, nir_ssa_def *z) in nir_imad_hi()
117 nir_umad_hi(nir_builder *b, nir_ssa_def *x, nir_ssa_def *y, nir_ssa_def *z) in nir_umad_hi()
124 nir_bitselect(nir_builder *b, nir_ssa_def *x, nir_ssa_def *y, nir_ssa_def *s) in nir_bitselect()
[all …]
/third_party/typescript/tests/cases/conformance/controlFlow/
DcontrolFlowAssignmentPatternOrder.ts14 let b: 0 | 1 | 9; variable
20 let b: 0 | 1 | 8 | 9; variable
26 let b: 0 | 1 | 8 | 9; variable
33 let b: 0 | 1 | 9; variable
39 let b: 0 | 1 | 9; variable
45 let b: 0 | 1 | 8 | 9; variable
51 let b: 0 | 1 | 8 | 9; variable
58 let b: 0 | 1 | 9; variable
64 let b: 0 | 1 | 9; variable
70 let b: 0 | 1 | 8 | 9; variable
[all …]
/third_party/protobuf/js/
Dtest12.proto38 optional MessageField2 b = 2; field
43 optional MessageField1 b = 2; field
49 optional RepeatedMessageField2 b = 2; field
54 repeated RepeatedMessageField1 b = 2; field
59 optional MapField2 b = 2; field
64 map<int32, MapField1> b = 2; field
68 optional NestedMessage2 b = 2; field
76 optional NestedMessage1.NestedNestedMessage b = 2; field
80 optional NestedEnum2 b = 2; field
89 optional NestedEnum1.NestedNestedEnum b = 2; field
[all …]
/third_party/mesa3d/src/gallium/drivers/zink/nir_to_spirv/
Dspirv_builder.c41 spirv_buffer_grow(struct spirv_buffer *b, void *mem_ctx, size_t needed) in spirv_buffer_grow()
56 spirv_buffer_prepare(struct spirv_buffer *b, void *mem_ctx, size_t needed) in spirv_buffer_prepare()
66 spirv_buffer_emit_word(struct spirv_buffer *b, uint32_t word) in spirv_buffer_emit_word()
74 spirv_buffer_emit_string(struct spirv_buffer *b, void *mem_ctx, in spirv_buffer_emit_string()
95 spirv_builder_emit_cap(struct spirv_builder *b, SpvCapability cap) in spirv_builder_emit_cap()
105 spirv_builder_emit_extension(struct spirv_builder *b, const char *name) in spirv_builder_emit_extension()
115 spirv_builder_emit_source(struct spirv_builder *b, SpvSourceLanguage lang, in spirv_builder_emit_source()
125 spirv_builder_emit_mem_model(struct spirv_builder *b, in spirv_builder_emit_mem_model()
136 spirv_builder_emit_entry_point(struct spirv_builder *b, in spirv_builder_emit_entry_point()
154 spirv_builder_emit_exec_mode_literal(struct spirv_builder *b, SpvId entry_point, in spirv_builder_emit_exec_mode_literal()
[all …]
/third_party/pulseaudio/src/pulsecore/
Dsconv-s16le.c79 void pa_sconv_s16le_to_float32ne(unsigned n, const int16_t *a, float *b) { in pa_sconv_s16le_to_float32ne()
94 void pa_sconv_s32le_to_float32ne(unsigned n, const int32_t *a, float *b) { in pa_sconv_s32le_to_float32ne()
109 void pa_sconv_s16le_from_float32ne(unsigned n, const float *a, int16_t *b) { in pa_sconv_s16le_from_float32ne()
130 void pa_sconv_s32le_from_float32ne(unsigned n, const float *a, int32_t *b) { in pa_sconv_s32le_from_float32ne()
151 void pa_sconv_s16le_to_float32re(unsigned n, const int16_t *a, float *b) { in pa_sconv_s16le_to_float32re()
162 void pa_sconv_s32le_to_float32re(unsigned n, const int32_t *a, float *b) { in pa_sconv_s32le_to_float32re()
173 void pa_sconv_s16le_from_float32re(unsigned n, const float *a, int16_t *b) { in pa_sconv_s16le_from_float32re()
185 void pa_sconv_s32le_from_float32re(unsigned n, const float *a, int32_t *b) { in pa_sconv_s32le_from_float32re()
197 void pa_sconv_s32le_to_s16ne(unsigned n, const int32_t*a, int16_t *b) { in pa_sconv_s32le_to_s16ne()
208 void pa_sconv_s32le_to_s16re(unsigned n, const int32_t*a, int16_t *b) { in pa_sconv_s32le_to_s16re()
[all …]
/third_party/openssl/ohos_lite/include/internal/
Dconstant_time.h121 unsigned int b) 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()
132 unsigned int b) 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()
143 unsigned int b) 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()
154 unsigned int b) in constant_time_ge_8()
159 static ossl_inline unsigned char constant_time_ge_8_s(size_t a, size_t b) in constant_time_ge_8_s()
185 unsigned int b) in constant_time_eq()
190 static ossl_inline size_t constant_time_eq_s(size_t a, size_t b) in constant_time_eq_s()
[all …]

12345678910>>...345