/third_party/boost/libs/dynamic_bitset/test/ |
D | dyn_bitset_unit_tests3.cpp | 33 bitset_type b; in run_test_cases() local 37 bitset_type b(1, 1ul); in run_test_cases() local 41 bitset_type b(bitset_type::bits_per_block in run_test_cases() local 48 boost::dynamic_bitset<Block> b; in run_test_cases() local 52 boost::dynamic_bitset<Block> b(std::string("1")); in run_test_cases() local 62 boost::dynamic_bitset<Block> b(str); in run_test_cases() local 67 boost::dynamic_bitset<Block> b(ul_str); in run_test_cases() local 71 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 77 boost::dynamic_bitset<Block> b; in run_test_cases() local 81 boost::dynamic_bitset<Block> b(std::string("0")); in run_test_cases() local [all …]
|
D | dyn_bitset_unit_tests2.cpp | 104 boost::dynamic_bitset<Block> b; in run_test_cases() local 108 boost::dynamic_bitset<Block> b(std::string("1010")); in run_test_cases() local 112 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 123 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 131 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 136 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 144 boost::dynamic_bitset<Block> b; in run_test_cases() local 148 boost::dynamic_bitset<Block> b(std::string("1010")); in run_test_cases() local 152 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 163 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local [all …]
|
/third_party/ltp/tools/sparse/sparse-src/validation/linear/ |
D | shift-assign1.c | 8 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/typescript/tests/cases/compiler/ |
D | castParentheses.ts | 2 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/ltp/tools/sparse/sparse-src/validation/optim/ |
D | cse-dual-compare.c | 1 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 …]
|
D | fact-add-mul.c | 1 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 …]
|
D | fact-xor-and.c | 1 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 …]
|
D | fact-ior-and.c | 1 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 …]
|
D | fact-and-ior.c | 1 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 …]
|
D | bool-simplify2.c | 6 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 …]
|
/third_party/boost/boost/histogram/detail/ |
D | operators.hpp | 31 friend bool operator<(const U& a, const T& b) noexcept { return b > a; } in operator <() 32 friend bool operator>(const U& a, const T& b) noexcept { return b < a; } in operator >() 33 friend bool operator==(const U& a, const T& b) noexcept { return b == a; } in operator ==() 34 friend bool operator<=(const U& a, const T& b) noexcept { return b >= a; } in operator <=() 35 friend bool operator>=(const U& a, const T& b) noexcept { return b <= a; } in operator >=() 36 friend bool operator!=(const U& a, const T& b) noexcept { return b != a; } in operator !=() 42 friend if_not_same_and_has_eq<T, U> operator<(const U& a, const T& b) noexcept { in operator <() 46 friend if_not_same_and_has_eq<T, U> operator>(const U& a, const T& b) noexcept { in operator >() 50 friend if_not_same_and_has_eq<T, U> operator==(const U& a, const T& b) noexcept { in operator ==() 54 friend if_not_same_and_has_eq<T, U> operator<=(const U& a, const T& b) noexcept { in operator <=() [all …]
|
/third_party/openssl/test/ |
D | testutil.h | 158 #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/typescript/tests/baselines/reference/ |
D | objectSpreadNegative.js | 2 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 …]
|
D | optionalParameterInDestructuringWithInitializer.js | 6 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
|
/third_party/boost/libs/beast/test/beast/core/ |
D | multi_buffer.cpp | 62 multi_buffer b; in testShrinkToFit() local 73 multi_buffer b; in testShrinkToFit() local 81 multi_buffer b; in testShrinkToFit() local 91 multi_buffer b; in testShrinkToFit() local 104 multi_buffer b; in testShrinkToFit() local 114 multi_buffer b; in testShrinkToFit() local 127 multi_buffer b; in testShrinkToFit() local 140 multi_buffer b; in testShrinkToFit() local 152 multi_buffer b; in testShrinkToFit() local 165 multi_buffer b(30); in testDynamicBuffer() local [all …]
|
/third_party/node/test/parallel/ |
D | test-blob.js | 10 const b = new Blob(); constant 28 const b = new Blob([]); constant 50 const b = new Blob(['616263'], { encoding: 'hex', type: 'foo' }); constant 59 const b = new Blob([Buffer.from('abc')]); constant 67 const b = new Blob([new ArrayBuffer(3)]); constant 75 const b = new Blob([new Uint8Array(3)]); constant 83 const b = new Blob([new Blob(['abc'])]); constant 91 const b = new Blob(['hello', Buffer.from('world')]); constant 99 const b = new Blob( constant 114 const b = new Blob(['hello', Buffer.from('world')]); constant [all …]
|
/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
D | builder_constructor_expression_test.cc | 29 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 …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
D | audio-buffer.h | 76 #define GST_AUDIO_BUFFER_FORMAT(b) (GST_AUDIO_INFO_FORMAT(&(b)->info)) argument 77 #define GST_AUDIO_BUFFER_CHANNELS(b) (GST_AUDIO_INFO_CHANNELS(&(b)->info)) argument 78 #define GST_AUDIO_BUFFER_LAYOUT(b) (GST_AUDIO_INFO_LAYOUT(&(b)->info)) argument 79 #define GST_AUDIO_BUFFER_RATE(b) (GST_AUDIO_INFO_RATE(&(b)->info)) argument 81 #define GST_AUDIO_BUFFER_WIDTH(b) (GST_AUDIO_INFO_WIDTH(&(b)->info)) argument 82 #define GST_AUDIO_BUFFER_DEPTH(b) (GST_AUDIO_INFO_DEPTH(&(b)->info)) argument 83 #define GST_AUDIO_BUFFER_SAMPLE_STRIDE(b) (GST_AUDIO_INFO_WIDTH(&(b)->info) >> 3) argument 84 #define GST_AUDIO_BUFFER_BPS(b) (GST_AUDIO_INFO_DEPTH(&(b)->info) >> 3) argument 85 #define GST_AUDIO_BUFFER_BPF(b) (GST_AUDIO_INFO_BPF(&(b)->info)) argument 87 #define GST_AUDIO_BUFFER_N_SAMPLES(b) ((b)->n_samples) argument [all …]
|
/third_party/openssl/include/openssl/ |
D | bio.h | 182 # 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/json/benchmarks/thirdparty/benchmark/src/ |
D | check.h | 57 #define CHECK(b) \ argument 62 #define CHECK(b) ::benchmark::internal::GetNullLogInstance() argument 65 #define CHECK_EQ(a, b) CHECK((a) == (b)) argument 66 #define CHECK_NE(a, b) CHECK((a) != (b)) argument 67 #define CHECK_GE(a, b) CHECK((a) >= (b)) argument 68 #define CHECK_LE(a, b) CHECK((a) <= (b)) argument 69 #define CHECK_GT(a, b) CHECK((a) > (b)) argument 70 #define CHECK_LT(a, b) CHECK((a) < (b)) argument 72 #define CHECK_FLOAT_EQ(a, b, eps) CHECK(std::fabs((a) - (b)) < (eps)) argument 73 #define CHECK_FLOAT_NE(a, b, eps) CHECK(std::fabs((a) - (b)) >= (eps)) argument [all …]
|
/third_party/benchmark/src/ |
D | check.h | 65 #define BM_CHECK(b) \ argument 70 #define BM_CHECK(b) ::benchmark::internal::GetNullLogInstance() argument 75 #define BM_CHECK_EQ(a, b) BM_CHECK((a) == (b)) argument 76 #define BM_CHECK_NE(a, b) BM_CHECK((a) != (b)) argument 77 #define BM_CHECK_GE(a, b) BM_CHECK((a) >= (b)) argument 78 #define BM_CHECK_LE(a, b) BM_CHECK((a) <= (b)) argument 79 #define BM_CHECK_GT(a, b) BM_CHECK((a) > (b)) argument 80 #define BM_CHECK_LT(a, b) BM_CHECK((a) < (b)) argument 82 #define BM_CHECK_FLOAT_EQ(a, b, eps) BM_CHECK(std::fabs((a) - (b)) < (eps)) argument 83 #define BM_CHECK_FLOAT_NE(a, b, eps) BM_CHECK(std::fabs((a) - (b)) >= (eps)) argument [all …]
|
/third_party/boost/libs/numeric/interval/test/ |
D | cmp_exp.cpp | 16 const I a(1,2), b(3,4); in test_12_34() local 57 const I a(1,3), b(2,4); in test_13_24() local 98 const I a(1,2), b(2,3); in test_12_23() local 140 const int b = 0; in test_12_0() local 182 const int b = 1; in test_12_1() local 224 const int b = 2; in test_12_2() local 266 const int b = 3; in test_12_3() local 305 const I a(1,2), b(1,2); in test_12_12() local 321 const I a(1,1), b(1,1); in test_11_11() local 338 const int b = 1; in test_11_1() local
|
D | cmp.cpp | 16 const I a(1,2), b(3,4); in test_12_34() local 40 const I a(1,3), b(2,4); in test_13_24() local 64 const I a(1,2), b(2,3); in test_12_23() local 89 const int b = 0; in test_12_0() local 109 const int b = 1; in test_12_1() local 129 const int b = 2; in test_12_2() local 149 const int b = 3; in test_12_3() local 168 const I a(1,2), b(1,2); in test_12_12() local 180 const I a(1,1), b(1,1); in test_11_11() local 193 const int b = 1; in test_11_1() local
|
D | cmp_lex.cpp | 18 const I a(1,2), b(3,4); in test_12_34() local 42 const I a(1,3), b(2,4); in test_13_24() local 66 const I a(1,2), b(2,3); in test_12_23() local 91 const int b = 0; in test_12_0() local 111 const int b = 1; in test_12_1() local 131 const int b = 2; in test_12_2() local 151 const int b = 3; in test_12_3() local 168 const I a(1,2), b(1,2); in test_12_12() local 180 const I a(1,1), b(1,1); in test_11_11() local 193 const int b = 1; in test_11_1() local
|
D | cmp_tribool.cpp | 19 const I a(1,2), b(3,4); in test_12_34() local 43 const I a(1,3), b(2,4); in test_13_24() local 67 const I a(1,2), b(2,3); in test_12_23() local 92 const int b = 0; in test_12_0() local 112 const int b = 1; in test_12_1() local 132 const int b = 2; in test_12_2() local 152 const int b = 3; in test_12_3() local 171 const I a(1,2), b(1,2); in test_12_12() local 185 const I a(1,1), b(1,1); in test_11_11() local 200 const int b = 1; in test_11_1() local
|