/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/ |
H A D | addr-of-overloaded-function-casting.cpp | 18 { bool b = (void (&)(char))f; } // expected-error{{does not match required type}} in main() local 19 { bool b = (void (*)(char))f; } // expected-error{{does not match required type}} in main() local 21 { bool b = (void (&)(int))f; } //ok in main() local 22 { bool b = (void (*)(int))f; } //ok in main() local 24 { bool b = static_cast<void (&)(char)>(f); } // expected-error{{does not match}} in main() local 25 { bool b = static_cast<void (*)(char)>(f); } // expected-error{{address of overloaded function}} in main() local 27 { bool b = static_cast<void (&)(int)>(f); } //ok in main() local 28 { bool b = static_cast<void (*)(int)>(f); } //ok in main() local 31 { bool b = reinterpret_cast<void (&)(char)>(f); } // expected-error{{cannot resolve}} in main() local 32 { bool b = reinterpret_cast<void (*)(char)>(f); } // expected-error{{cannot resolve}} in main() local [all …]
|
/minix3/external/bsd/llvm/dist/clang/test/CXX/basic/basic.scope/basic.scope.local/ |
H A D | p4-0x.cpp | 4 int b; in f() local 7 if (bool b = true) // expected-note 2{{previous definition}} in f() local 8 bool b; // expected-error {{redefinition}} in f() local 10 int b; // expected-error {{redefinition}} in f() local 11 while (bool b = true) // expected-note {{previous definition}} in f() local 12 int b; // expected-error {{redefinition}} in f() local 21 if (bool b = true) { // expected-note 2{{previous definition}} in f() local 22 int b; // expected-error {{redefinition}} in f() local 24 int b; // expected-error {{redefinition}} in f() local 26 while (bool b = true) { // expected-note {{previous definition}} in f() local [all …]
|
/minix3/external/bsd/llvm/dist/clang/test/CodeGen/ |
H A D | complex-math.c | 7 float _Complex add_float_rr(float a, float b) { in add_float_rr() 14 float _Complex add_float_cr(float _Complex a, float b) { in add_float_cr() 21 float _Complex add_float_rc(float a, float _Complex b) { in add_float_rc() 28 float _Complex add_float_cc(float _Complex a, float _Complex b) { in add_float_cc() 37 float _Complex sub_float_rr(float a, float b) { in sub_float_rr() 44 float _Complex sub_float_cr(float _Complex a, float b) { in sub_float_cr() 51 float _Complex sub_float_rc(float a, float _Complex b) { in sub_float_rc() 59 float _Complex sub_float_cc(float _Complex a, float _Complex b) { in sub_float_cc() 68 float _Complex mul_float_rr(float a, float b) { in mul_float_rr() 75 float _Complex mul_float_cr(float _Complex a, float b) { in mul_float_cr() [all …]
|
H A D | aarch64-neon-perm.c | 8 int8x8_t test_vuzp1_s8(int8x8_t a, int8x8_t b) { in test_vuzp1_s8() 14 int8x16_t test_vuzp1q_s8(int8x16_t a, int8x16_t b) { in test_vuzp1q_s8() 20 int16x4_t test_vuzp1_s16(int16x4_t a, int16x4_t b) { in test_vuzp1_s16() 26 int16x8_t test_vuzp1q_s16(int16x8_t a, int16x8_t b) { in test_vuzp1q_s16() 32 int32x2_t test_vuzp1_s32(int32x2_t a, int32x2_t b) { in test_vuzp1_s32() 38 int32x4_t test_vuzp1q_s32(int32x4_t a, int32x4_t b) { in test_vuzp1q_s32() 44 int64x2_t test_vuzp1q_s64(int64x2_t a, int64x2_t b) { in test_vuzp1q_s64() 50 uint8x8_t test_vuzp1_u8(uint8x8_t a, uint8x8_t b) { in test_vuzp1_u8() 56 uint8x16_t test_vuzp1q_u8(uint8x16_t a, uint8x16_t b) { in test_vuzp1q_u8() 62 uint16x4_t test_vuzp1_u16(uint16x4_t a, uint16x4_t b) { in test_vuzp1_u16() [all …]
|
H A D | aarch64-neon-3v.c | 8 int8x8_t test_vand_s8(int8x8_t a, int8x8_t b) { in test_vand_s8() 14 int8x16_t test_vandq_s8(int8x16_t a, int8x16_t b) { in test_vandq_s8() 20 int16x4_t test_vand_s16(int16x4_t a, int16x4_t b) { in test_vand_s16() 26 int16x8_t test_vandq_s16(int16x8_t a, int16x8_t b) { in test_vandq_s16() 32 int32x2_t test_vand_s32(int32x2_t a, int32x2_t b) { in test_vand_s32() 38 int32x4_t test_vandq_s32(int32x4_t a, int32x4_t b) { in test_vandq_s32() 44 int64x1_t test_vand_s64(int64x1_t a, int64x1_t b) { in test_vand_s64() 50 int64x2_t test_vandq_s64(int64x2_t a, int64x2_t b) { in test_vandq_s64() 56 uint8x8_t test_vand_u8(uint8x8_t a, uint8x8_t b) { in test_vand_u8() 62 uint8x16_t test_vandq_u8(uint8x16_t a, uint8x16_t b) { in test_vandq_u8() [all …]
|
H A D | aarch64-neon-extract.c | 9 int8x8_t test_vext_s8(int8x8_t a, int8x8_t b) { in test_vext_s8() 15 int16x4_t test_vext_s16(int16x4_t a, int16x4_t b) { in test_vext_s16() 21 int32x2_t test_vext_s32(int32x2_t a, int32x2_t b) { in test_vext_s32() 27 int64x1_t test_vext_s64(int64x1_t a, int64x1_t b) { in test_vext_s64() 32 int8x16_t test_vextq_s8(int8x16_t a, int8x16_t b) { in test_vextq_s8() 38 int16x8_t test_vextq_s16(int16x8_t a, int16x8_t b) { in test_vextq_s16() 44 int32x4_t test_vextq_s32(int32x4_t a, int32x4_t b) { in test_vextq_s32() 50 int64x2_t test_vextq_s64(int64x2_t a, int64x2_t b) { in test_vextq_s64() 56 uint8x8_t test_vext_u8(uint8x8_t a, uint8x8_t b) { in test_vext_u8() 62 uint16x4_t test_vext_u16(uint16x4_t a, uint16x4_t b) { in test_vext_u16() [all …]
|
H A D | aarch64-neon-tbl.c | 9 int8x8_t test_vtbl1_s8(int8x8_t a, int8x8_t b) { in test_vtbl1_s8() 15 int8x8_t test_vqtbl1_s8(int8x16_t a, int8x8_t b) { in test_vqtbl1_s8() 21 int8x8_t test_vtbl2_s8(int8x8x2_t a, int8x8_t b) { in test_vtbl2_s8() 27 int8x8_t test_vqtbl2_s8(int8x16x2_t a, int8x8_t b) { in test_vqtbl2_s8() 33 int8x8_t test_vtbl3_s8(int8x8x3_t a, int8x8_t b) { in test_vtbl3_s8() 39 int8x8_t test_vqtbl3_s8(int8x16x3_t a, int8x8_t b) { in test_vqtbl3_s8() 45 int8x8_t test_vtbl4_s8(int8x8x4_t a, int8x8_t b) { in test_vtbl4_s8() 51 int8x8_t test_vqtbl4_s8(int8x16x4_t a, int8x8_t b) { in test_vqtbl4_s8() 57 int8x16_t test_vqtbl1q_s8(int8x16_t a, int8x16_t b) { in test_vqtbl1q_s8() 63 int8x16_t test_vqtbl2q_s8(int8x16x2_t a, int8x16_t b) { in test_vqtbl2q_s8() [all …]
|
H A D | mmx-builtins.c | 10 __m64 test1(__m64 a, __m64 b) { in test1() 15 __m64 test2(__m64 a, __m64 b) { in test2() 20 __m64 test3(__m64 a, __m64 b) { in test3() 25 __m64 test4(__m64 a, __m64 b) { in test4() 30 __m64 test5(__m64 a, __m64 b) { in test5() 35 __m64 test6(__m64 a, __m64 b) { in test6() 40 __m64 test7(__m64 a, __m64 b) { in test7() 45 __m64 test8(__m64 a, __m64 b) { in test8() 50 __m64 test9(__m64 a, __m64 b) { in test9() 55 __m64 test10(__m64 a, __m64 b) { in test10() [all …]
|
H A D | pointer-arithmetic.c | 5 int f0(int *a, Int *b) { return a - b; } in f0() 7 int f1(const char *a, char *b) { return b - a; } in f1() 11 void *f2(void *a, int b) { return a + b; } in f2() 12 void *f2_0(void *a, int b) { return &a[b]; } in f2_0() 13 void *f2_1(void *a, int b) { return (a += b); } in f2_1() 14 void *f3(int a, void *b) { return a + b; } in f3() 15 void *f3_1(int a, void *b) { return (a += b); } in f3_1() 16 void *f4(void *a, int b) { return a - b; } in f4() 17 void *f4_1(void *a, int b) { return (a -= b); } in f4_1() 18 FP f5(FP a, int b) { return a + b; } in f5() [all …]
|
H A D | aarch64-neon-ldst-one.c | 707 uint8x16_t test_vld1q_lane_u8(uint8_t *a, uint8x16_t b) { in test_vld1q_lane_u8() 713 uint16x8_t test_vld1q_lane_u16(uint16_t *a, uint16x8_t b) { in test_vld1q_lane_u16() 719 uint32x4_t test_vld1q_lane_u32(uint32_t *a, uint32x4_t b) { in test_vld1q_lane_u32() 725 uint64x2_t test_vld1q_lane_u64(uint64_t *a, uint64x2_t b) { in test_vld1q_lane_u64() 731 int8x16_t test_vld1q_lane_s8(int8_t *a, int8x16_t b) { in test_vld1q_lane_s8() 737 int16x8_t test_vld1q_lane_s16(int16_t *a, int16x8_t b) { in test_vld1q_lane_s16() 743 int32x4_t test_vld1q_lane_s32(int32_t *a, int32x4_t b) { in test_vld1q_lane_s32() 749 int64x2_t test_vld1q_lane_s64(int64_t *a, int64x2_t b) { in test_vld1q_lane_s64() 755 float16x8_t test_vld1q_lane_f16(float16_t *a, float16x8_t b) { in test_vld1q_lane_f16() 761 float32x4_t test_vld1q_lane_f32(float32_t *a, float32x4_t b) { in test_vld1q_lane_f32() [all …]
|
H A D | aarch64-neon-scalar-x-indexed-elem.c | 10 float32_t test_vmuls_lane_f32(float32_t a, float32x2_t b) { in test_vmuls_lane_f32() 16 float64_t test_vmuld_lane_f64(float64_t a, float64x1_t b) { in test_vmuld_lane_f64() 22 float32_t test_vmuls_laneq_f32(float32_t a, float32x4_t b) { in test_vmuls_laneq_f32() 28 float64_t test_vmuld_laneq_f64(float64_t a, float64x2_t b) { in test_vmuld_laneq_f64() 34 float64x1_t test_vmul_n_f64(float64x1_t a, float64_t b) { in test_vmul_n_f64() 40 float32_t test_vmulxs_lane_f32(float32_t a, float32x2_t b) { in test_vmulxs_lane_f32() 46 float32_t test_vmulxs_laneq_f32(float32_t a, float32x4_t b) { in test_vmulxs_laneq_f32() 52 float64_t test_vmulxd_lane_f64(float64_t a, float64x1_t b) { in test_vmulxd_lane_f64() 58 float64_t test_vmulxd_laneq_f64(float64_t a, float64x2_t b) { in test_vmulxd_laneq_f64() 65 float64x1_t test_vmulx_lane_f64(float64x1_t a, float64x1_t b) { in test_vmulx_lane_f64() [all …]
|
H A D | avx2-builtins.c | 33 __m256i test_mm256_packs_epi16(__m256i a, __m256i b) { in test_mm256_packs_epi16() 38 __m256i test_mm256_packs_epi32(__m256i a, __m256i b) { in test_mm256_packs_epi32() 43 __m256i test_mm256_packs_epu16(__m256i a, __m256i b) { in test_mm256_packs_epu16() 48 __m256i test_mm256_packs_epu32(__m256i a, __m256i b) { in test_mm256_packs_epu32() 53 __m256i test_mm256_add_epi8(__m256i a, __m256i b) { in test_mm256_add_epi8() 58 __m256i test_mm256_add_epi16(__m256i a, __m256i b) { in test_mm256_add_epi16() 63 __m256i test_mm256_add_epi32(__m256i a, __m256i b) { in test_mm256_add_epi32() 68 __m256i test_mm256_add_epi64(__m256i a, __m256i b) { in test_mm256_add_epi64() 73 __m256i test_mm256_adds_epi8(__m256i a, __m256i b) { in test_mm256_adds_epi8() 78 __m256i test_mm256_adds_epi16(__m256i a, __m256i b) { in test_mm256_adds_epi16() [all …]
|
H A D | avx-cmp-builtins.c | 12 __m128d test_cmp_pd(__m128d a, __m128d b) { in test_cmp_pd() 18 __m128d test_cmp_ps(__m128 a, __m128 b) { in test_cmp_ps() 24 __m256d test_cmp_pd256(__m256d a, __m256d b) { in test_cmp_pd256() 30 __m256d test_cmp_ps256(__m256 a, __m256 b) { in test_cmp_ps256() 36 __m128d test_cmp_sd(__m128d a, __m128d b) { in test_cmp_sd() 42 __m128d test_cmp_ss(__m128 a, __m128 b) { in test_cmp_ss() 48 __m128 test_cmpgt_ss(__m128 a, __m128 b) { in test_cmpgt_ss() 54 __m128 test_cmpge_ss(__m128 a, __m128 b) { in test_cmpge_ss() 60 __m128 test_cmpngt_ss(__m128 a, __m128 b) { in test_cmpngt_ss() 66 __m128 test_cmpnge_ss(__m128 a, __m128 b) { in test_cmpnge_ss() [all …]
|
H A D | arm_neon_intrinsics.c | 14 int8x8_t test_vaba_s8(int8x8_t a, int8x8_t b, int8x8_t c) { in test_vaba_s8() 20 int16x4_t test_vaba_s16(int16x4_t a, int16x4_t b, int16x4_t c) { in test_vaba_s16() 26 int32x2_t test_vaba_s32(int32x2_t a, int32x2_t b, int32x2_t c) { in test_vaba_s32() 32 uint8x8_t test_vaba_u8(uint8x8_t a, uint8x8_t b, uint8x8_t c) { in test_vaba_u8() 38 uint16x4_t test_vaba_u16(uint16x4_t a, uint16x4_t b, uint16x4_t c) { in test_vaba_u16() 44 uint32x2_t test_vaba_u32(uint32x2_t a, uint32x2_t b, uint32x2_t c) { in test_vaba_u32() 50 int8x16_t test_vabaq_s8(int8x16_t a, int8x16_t b, int8x16_t c) { in test_vabaq_s8() 56 int16x8_t test_vabaq_s16(int16x8_t a, int16x8_t b, int16x8_t c) { in test_vabaq_s16() 62 int32x4_t test_vabaq_s32(int32x4_t a, int32x4_t b, int32x4_t c) { in test_vabaq_s32() 68 uint8x16_t test_vabaq_u8(uint8x16_t a, uint8x16_t b, uint8x16_t c) { in test_vabaq_u8() [all …]
|
H A D | fma4-builtins.c | 8 __m128 test_mm_macc_ps(__m128 a, __m128 b, __m128 c) { in test_mm_macc_ps() 13 __m128d test_mm_macc_pd(__m128d a, __m128d b, __m128d c) { in test_mm_macc_pd() 18 __m128 test_mm_macc_ss(__m128 a, __m128 b, __m128 c) { in test_mm_macc_ss() 23 __m128d test_mm_macc_sd(__m128d a, __m128d b, __m128d c) { in test_mm_macc_sd() 28 __m128 test_mm_msub_ps(__m128 a, __m128 b, __m128 c) { in test_mm_msub_ps() 33 __m128d test_mm_msub_pd(__m128d a, __m128d b, __m128d c) { in test_mm_msub_pd() 38 __m128 test_mm_msub_ss(__m128 a, __m128 b, __m128 c) { in test_mm_msub_ss() 43 __m128d test_mm_msub_sd(__m128d a, __m128d b, __m128d c) { in test_mm_msub_sd() 48 __m128 test_mm_nmacc_ps(__m128 a, __m128 b, __m128 c) { in test_mm_nmacc_ps() 53 __m128d test_mm_nmacc_pd(__m128d a, __m128d b, __m128d c) { in test_mm_nmacc_pd() [all …]
|
H A D | fma-builtins.c | 8 __m128 test_mm_fmadd_ps(__m128 a, __m128 b, __m128 c) { in test_mm_fmadd_ps() 13 __m128d test_mm_fmadd_pd(__m128d a, __m128d b, __m128d c) { in test_mm_fmadd_pd() 18 __m128 test_mm_fmadd_ss(__m128 a, __m128 b, __m128 c) { in test_mm_fmadd_ss() 23 __m128d test_mm_fmadd_sd(__m128d a, __m128d b, __m128d c) { in test_mm_fmadd_sd() 28 __m128 test_mm_fmsub_ps(__m128 a, __m128 b, __m128 c) { in test_mm_fmsub_ps() 33 __m128d test_mm_fmsub_pd(__m128d a, __m128d b, __m128d c) { in test_mm_fmsub_pd() 38 __m128 test_mm_fmsub_ss(__m128 a, __m128 b, __m128 c) { in test_mm_fmsub_ss() 43 __m128d test_mm_fmsub_sd(__m128d a, __m128d b, __m128d c) { in test_mm_fmsub_sd() 48 __m128 test_mm_fnmadd_ps(__m128 a, __m128 b, __m128 c) { in test_mm_fnmadd_ps() 53 __m128d test_mm_fnmadd_pd(__m128d a, __m128d b, __m128d c) { in test_mm_fnmadd_pd() [all …]
|
H A D | aarch64-neon-fma.c | 8 float32x2_t test_vmla_n_f32(float32x2_t a, float32x2_t b, float32_t c) { in test_vmla_n_f32() 17 float32x4_t test_vmlaq_n_f32(float32x4_t a, float32x4_t b, float32_t c) { in test_vmlaq_n_f32() 26 float64x2_t test_vmlaq_n_f64(float64x2_t a, float64x2_t b, float64_t c) { in test_vmlaq_n_f64() 35 float32x4_t test_vmlsq_n_f32(float32x4_t a, float32x4_t b, float32_t c) { in test_vmlsq_n_f32() 44 float32x2_t test_vmls_n_f32(float32x2_t a, float32x2_t b, float32_t c) { in test_vmls_n_f32() 53 float64x2_t test_vmlsq_n_f64(float64x2_t a, float64x2_t b, float64_t c) { in test_vmlsq_n_f64() 62 float32x2_t test_vmla_lane_f32_0(float32x2_t a, float32x2_t b, float32x2_t v) { in test_vmla_lane_f32_0() 70 float32x4_t test_vmlaq_lane_f32_0(float32x4_t a, float32x4_t b, float32x2_t v) { in test_vmlaq_lane_f32_0() 78 float32x2_t test_vmla_laneq_f32_0(float32x2_t a, float32x2_t b, float32x4_t v) { in test_vmla_laneq_f32_0() 86 float32x4_t test_vmlaq_laneq_f32_0(float32x4_t a, float32x4_t b, float32x4_t v) { in test_vmlaq_laneq_f32_0() [all …]
|
H A D | arm-crc32.c | 5 int crc32b(int a, char b) in crc32b() 12 int crc32cb(int a, char b) in crc32cb() 19 int crc32h(int a, short b) in crc32h() 26 int crc32ch(int a, short b) in crc32ch() 33 int crc32w(int a, int b) in crc32w() 39 int crc32cw(int a, int b) in crc32cw() 45 int crc32d(int a, long long b) in crc32d() 55 int crc32cd(int a, long long b) in crc32cd()
|
H A D | arm64-crc32.c | 5 int crc32b(int a, char b) in crc32b() 12 int crc32cb(int a, char b) in crc32cb() 19 int crc32h(int a, short b) in crc32h() 26 int crc32ch(int a, short b) in crc32ch() 33 int crc32w(int a, int b) in crc32w() 39 int crc32cw(int a, int b) in crc32cw() 45 int crc32d(int a, long b) in crc32d() 51 int crc32cd(int a, long b) in crc32cd()
|
H A D | palignr.c | 4 #define _mm_alignr_epi8(a, b, n) (__builtin_ia32_palignr128((a), (b), (n))) argument 8 int4 align1(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 15); } in align1() 12 int4 align2(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 16); } in align2() 14 int4 align3(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 17); } in align3() 16 int4 align4(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 32); } in align4() 18 #define _mm_alignr_pi8(a, b, n) (__builtin_ia32_palignr((a), (b), (n))) argument 22 int2 align5(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 8); } in align5() 25 int2 align6(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 9); } in align6() 28 int2 align7(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 16); } in align7() 31 int2 align8(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 7); } in align8()
|
/minix3/external/bsd/llvm/dist/clang/test/CXX/over/over.over/ |
H A D | p2-resolve-single-template-id.cpp | 103 { bool b = (twoT<int>); } in main() local 104 { bool b = (twoT<int, int>); } in main() local 106 { bool b = &twoT<int>; //&foo<int>; } in main() local 121 { bool b = cant_resolve<int>; } // expected-error {{address of overload}} in main() local 163 …{ bool b = S::f<char>; } // expected-error {{call to non-static member function without an object … in test() local 164 …{ bool b = S::f<int>; } // expected-error {{call to non-static member function without an object a… in test() local 165 { bool b = &S::f<char>; } in test() local 166 { bool b = &S::f<int>; } in test() local 168 …{ bool b = s.f<char>; } // expected-error {{reference to non-static member function must be called… in test() local 169 …{ bool b = s.f<int>; } // expected-error {{reference to non-static member function must be called}} in test() local [all …]
|
/minix3/external/bsd/bind/dist/lib/isc/ |
H A D | buffer.c | 33 isc__buffer_init(isc_buffer_t *b, void *base, unsigned int length) { in isc__buffer_init() 45 isc__buffer_initnull(isc_buffer_t *b) { in isc__buffer_initnull() 55 isc_buffer_reinit(isc_buffer_t *b, void *base, unsigned int length) { in isc_buffer_reinit() 74 isc__buffer_invalidate(isc_buffer_t *b) { in isc__buffer_invalidate() 87 isc__buffer_region(isc_buffer_t *b, isc_region_t *r) { in isc__buffer_region() 99 isc__buffer_usedregion(isc_buffer_t *b, isc_region_t *r) { in isc__buffer_usedregion() 111 isc__buffer_availableregion(isc_buffer_t *b, isc_region_t *r) { in isc__buffer_availableregion() 123 isc__buffer_add(isc_buffer_t *b, unsigned int n) { in isc__buffer_add() 135 isc__buffer_subtract(isc_buffer_t *b, unsigned int n) { in isc__buffer_subtract() 147 isc__buffer_clear(isc_buffer_t *b) { in isc__buffer_clear() [all …]
|
/minix3/external/bsd/bind/dist/lib/lwres/ |
H A D | lwbuffer.c | 123 lwres_buffer_init(lwres_buffer_t *b, void *base, unsigned int length) in lwres_buffer_init() 141 lwres_buffer_invalidate(lwres_buffer_t *b) in lwres_buffer_invalidate() 156 lwres_buffer_add(lwres_buffer_t *b, unsigned int n) in lwres_buffer_add() 167 lwres_buffer_subtract(lwres_buffer_t *b, unsigned int n) in lwres_buffer_subtract() 182 lwres_buffer_clear(lwres_buffer_t *b) in lwres_buffer_clear() 194 lwres_buffer_first(lwres_buffer_t *b) in lwres_buffer_first() 204 lwres_buffer_forward(lwres_buffer_t *b, unsigned int n) in lwres_buffer_forward() 215 lwres_buffer_back(lwres_buffer_t *b, unsigned int n) in lwres_buffer_back() 226 lwres_buffer_getuint8(lwres_buffer_t *b) in lwres_buffer_getuint8() 245 lwres_buffer_putuint8(lwres_buffer_t *b, lwres_uint8_t val) in lwres_buffer_putuint8() [all …]
|
/minix3/minix/drivers/video/fb/arch/earm/ |
H A D | dss.h | 9 #define OMAP3_DSS_SYSCONFIG(b) (b + 0x10) argument 10 #define OMAP3_DSS_SYSSTATUS(b) (b + 0x14) argument 12 #define OMAP3_DISPC_IRQSTATUS(b) (b + 0x18) argument 13 #define OMAP3_DISPC_CONTROL(b) (b + 0x40) argument 14 #define OMAP3_DISPC_CONFIG(b) (b + 0x44) argument 15 #define OMAP3_DISPC_DEFAULT_COLOR0(b) (b + 0x4c) argument 16 #define OMAP3_DISPC_DEFAULT_COLOR1(b) (b + 0x50) argument 17 #define OMAP3_DISPC_TIMINGH(b) (b + 0x64) argument 18 #define OMAP3_DISPC_TIMINGV(b) (b + 0x68) argument 19 #define OMAP3_DISPC_POL_FREQ(b) (b + 0x6c) argument [all …]
|
/minix3/external/bsd/llvm/dist/clang/test/OpenMP/ |
H A D | atomic_messages.cpp | 38 T a = T(), b = T(); in read() local 70 int a = 0, b = 0; in read() local 100 T a, b = 0; in write() local 126 int a, b = 0; in write() local 153 T a, b = 0; in update() local 170 int a, b = 0; in update() local 188 T a, b = 0; in capture() local 204 int a, b = 0; in capture() local 221 T a, b = 0; in seq_cst() local 238 int a, b = 0; in seq_cst() local [all …]
|