Home
last modified time | relevance | path

Searched defs:d (Results 1 – 25 of 6605) sorted by relevance

12345678910>>...265

/external/llvm-project/clang/test/SemaCXX/
Dwarn-return-std-move.cpp108 Derived ok1() { Derived d; return d; } in ok1() local
109 Base ok2() { Derived d; return static_cast<Derived&&>(d); } in ok2() local
110 ConstructFromDerived ok3() { Derived d; return static_cast<Derived&&>(d); } in ok3() local
111 ConstructFromBase ok4() { Derived d; return static_cast<Derived&&>(d); } in ok4() local
112 ConvertFromDerived ok5() { Derived d; return static_cast<Derived&&>(d); } in ok5() local
113 ConvertFromBase ok6() { Derived d; return static_cast<Derived&&>(d); } in ok6() local
116 Derived ok_plvalue1(Derived& d) { return d; } in ok_plvalue1()
117 Base ok_plvalue2(Derived& d) { return d; } in ok_plvalue2()
118 ConstructFromDerived ok_plvalue3(const Derived& d) { return d; } in ok_plvalue3()
119 ConstructFromBase ok_plvalue4(Derived& d) { return d; } in ok_plvalue4()
[all …]
Dnested-name-spec.cpp447 c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; variable
449 c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; variable
451 c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; variable
453 c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; c d; variable
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/pb/
Ddecoder.c72 static size_t stacksize(upb_pbdecoder *d, size_t entries) { in stacksize()
77 static size_t callstacksize(upb_pbdecoder *d, size_t entries) { in callstacksize()
93 static void seterr(upb_pbdecoder *d, const char *msg) { in seterr()
97 void upb_pbdecoder_seterr(upb_pbdecoder *d, const char *msg) { in upb_pbdecoder_seterr()
109 static size_t curbufleft(const upb_pbdecoder *d) { in curbufleft()
115 static size_t bufleft(const upb_pbdecoder *d) { in bufleft()
120 uint64_t offset(const upb_pbdecoder *d) { in offset()
125 size_t delim_remaining(const upb_pbdecoder *d) { in delim_remaining()
130 static void advance(upb_pbdecoder *d, size_t len) { in advance()
139 static bool in_residual_buf(const upb_pbdecoder *d, const char *p) { in in_residual_buf()
[all …]
/external/squashfs-tools/squashfs-tools/
Dsquashfs_swap.h45 #define _SQUASHFS_SWAP_SUPER_BLOCK(s, d, SWAP_FUNC) {\ argument
67 #define _SQUASHFS_SWAP_DIR_INDEX(s, d, SWAP_FUNC) {\ argument
73 #define _SQUASHFS_SWAP_BASE_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
82 #define _SQUASHFS_SWAP_IPC_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
92 #define _SQUASHFS_SWAP_LIPC_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
103 #define _SQUASHFS_SWAP_DEV_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
114 #define _SQUASHFS_SWAP_LDEV_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
126 #define _SQUASHFS_SWAP_SYMLINK_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
137 #define _SQUASHFS_SWAP_REG_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
150 #define _SQUASHFS_SWAP_LREG_INODE_HEADER(s, d, SWAP_FUNC) {\ argument
[all …]
/external/libexif/libexif/
Dexif-mnote-data.c35 exif_mnote_data_construct (ExifMnoteData *d, ExifMem *mem) in exif_mnote_data_construct()
49 exif_mnote_data_ref (ExifMnoteData *d) in exif_mnote_data_ref()
55 exif_mnote_data_free (ExifMnoteData *d) in exif_mnote_data_free()
71 exif_mnote_data_unref (ExifMnoteData *d) in exif_mnote_data_unref()
80 exif_mnote_data_load (ExifMnoteData *d, const unsigned char *buf, in exif_mnote_data_load()
88 exif_mnote_data_save (ExifMnoteData *d, unsigned char **buf, in exif_mnote_data_save()
96 exif_mnote_data_set_byte_order (ExifMnoteData *d, ExifByteOrder o) in exif_mnote_data_set_byte_order()
103 exif_mnote_data_set_offset (ExifMnoteData *d, unsigned int o) in exif_mnote_data_set_offset()
110 exif_mnote_data_count (ExifMnoteData *d) in exif_mnote_data_count()
117 exif_mnote_data_get_id (ExifMnoteData *d, unsigned int n) in exif_mnote_data_get_id()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DAsyncLazyTest.kt16 val d = async(start = CoroutineStart.LAZY) { in <lambda>() constant
32 val d = async(start = CoroutineStart.LAZY) { in <lambda>() constant
50 val d = async(start = CoroutineStart.LAZY) { in <lambda>() constant
79 val d = async(start = CoroutineStart.LAZY) { in <lambda>() constant
93 val d = async(start = CoroutineStart.LAZY) { in <lambda>() constant
107 val d = async(NonCancellable, start = CoroutineStart.LAZY) { in <lambda>() constant
125 val d = async(start = CoroutineStart.LAZY) { in <lambda>() constant
147 val d = async(start = CoroutineStart.LAZY) { in <lambda>() constant
166 val d = async(start = CoroutineStart.LAZY) { in <lambda>() constant
/external/llvm-project/openmp/runtime/src/
Dkmp_debug.h81 #define KA_TRACE(d, x) \ argument
85 #define KB_TRACE(d, x) \ argument
89 #define KC_TRACE(d, x) \ argument
93 #define KD_TRACE(d, x) \ argument
97 #define KE_TRACE(d, x) \ argument
101 #define KF_TRACE(d, x) \ argument
105 #define K_DIAG(d, x) \ argument
112 #define KA_DUMP(d, x) \ argument
119 #define KB_DUMP(d, x) \ argument
126 #define KC_DUMP(d, x) \ argument
[all …]
/external/arm-trusted-firmware/drivers/amlogic/crypto/
Dsha_dma.c29 #define ASD_DESC_LEN(d) \ argument
31 #define ASD_DESC_LEN_SET(d, v) \ argument
36 #define ASD_DESC_IRQ(d) \ argument
38 #define ASD_DESC_IRQ_SET(d, v) \ argument
43 #define ASD_DESC_EOD(d) \ argument
45 #define ASD_DESC_EOD_SET(d, v) \ argument
50 #define ASD_DESC_LOOP(d) \ argument
52 #define ASD_DESC_LOOP_SET(d, v) \ argument
57 #define ASD_DESC_MODE(d) \ argument
59 #define ASD_DESC_MODE_SET(d, v) \ argument
[all …]
/external/dtc/
Ddata.c8 void data_free(struct data d) in data_free()
24 struct data data_grow_for(struct data d, int xlen) in data_grow_for()
46 struct data d; in data_copy_mem() local
59 struct data d; in data_copy_escape_string() local
81 struct data d = empty_data; in data_copy_file() local
107 struct data data_append_data(struct data d, const void *p, int len) in data_append_data()
115 struct data data_insert_at_marker(struct data d, struct marker *m, in data_insert_at_marker()
130 static struct data data_append_markers(struct data d, struct marker *m) in data_append_markers()
143 struct data d; in data_merge() local
158 struct data data_append_integer(struct data d, uint64_t value, int bits) in data_append_integer()
[all …]
/external/caliper/examples/src/main/java/examples/
DDoubleToStringBenchmark.java30 @Override String convert(double d) { in convert()
33 @Override String convert(Double d) { in convert()
38 @Override String convert(double d) { in convert()
41 @Override String convert(Double d) { in convert()
46 @Override String convert(double d) { in convert()
49 @Override String convert(Double d) { in convert()
54 @Override String convert(double d) { in convert()
57 @Override String convert(Double d) { in convert()
63 abstract String convert(double d); in convert()
64 abstract String convert(Double d); in convert()
[all …]
DDoubleToStringBenchmark2.java34 final double d; field in DoubleToStringBenchmark2.Value
36 Value(double d) { in Value()
46 Double d = value.d; in toString() local
51 double d = value.d; in toString() local
62 Double d = value.d; in stringValueOf() local
67 double d = value.d; in stringValueOf() local
78 Double d = value.d; in stringFormat() local
83 double d = value.d; in stringFormat() local
94 Double d = value.d; in quoteTrick() local
99 double d = value.d; in quoteTrick() local
/external/llvm-project/clang/test/CodeGenCXX/
Dbuiltin-launder.cpp27 TestVirtualFn *d = __builtin_launder(p); in test_builtin_launder_virtual_fn() local
41 TestPolyBase *d = __builtin_launder(p); in test_builtin_launder_poly_base() local
55 TestVirtualBase *d = __builtin_launder(p); in test_builtin_launder_virtual_base() local
71 int *d = __builtin_launder(p); in test_builtin_launder_ommitted_one() local
88 TestNoInvariant *d = __builtin_launder(p); in test_builtin_launder_ommitted_two() local
101 TestVirtualMember *d = __builtin_launder(p); in test_builtin_launder_virtual_member() local
114 TestVirtualMemberDepth2 *d = __builtin_launder(p); in test_builtin_launder_virtual_member_depth_2() local
126 TestVirtualReferenceMember *d = __builtin_launder(p); in test_builtin_launder_virtual_reference_member() local
139 TestRecursiveMember *d = __builtin_launder(p); in test_builtin_launder_recursive_member() local
154 TestVirtualRecursiveMember *d = __builtin_launder(p); in test_builtin_launder_virtual_recursive_member() local
[all …]
/external/mesa3d/prebuilt-intermediates/main/
Dformat_pack.c76 uint32_t d = 0; in pack_ubyte_a8b8g8r8_unorm() local
101 uint32_t d = 0; in pack_ubyte_x8b8g8r8_unorm() local
128 uint32_t d = 0; in pack_ubyte_r8g8b8a8_unorm() local
153 uint32_t d = 0; in pack_ubyte_r8g8b8x8_unorm() local
180 uint32_t d = 0; in pack_ubyte_b8g8r8a8_unorm() local
205 uint32_t d = 0; in pack_ubyte_b8g8r8x8_unorm() local
232 uint32_t d = 0; in pack_ubyte_a8r8g8b8_unorm() local
257 uint32_t d = 0; in pack_ubyte_x8r8g8b8_unorm() local
280 uint16_t d = 0; in pack_ubyte_b5g6r5_unorm() local
303 uint16_t d = 0; in pack_ubyte_r5g6b5_unorm() local
[all …]
/external/llvm-project/compiler-rt/lib/asan/
Dasan_errors.cpp47 Decorator d; in Print() local
63 Decorator d; in Print() local
104 Decorator d; in Print() local
125 Decorator d; in Print() local
143 Decorator d; in Print() local
156 Decorator d; in Print() local
169 Decorator d; in Print() local
182 Decorator d; in Print() local
195 Decorator d; in Print() local
209 Decorator d; in Print() local
[all …]
/external/libwebsockets/lib/core/
Dlws_dll2.c33 int (*cb)(struct lws_dll2 *d, void *user)) in lws_dll2_foreach_safe()
44 lws_dll2_add_head(struct lws_dll2 *d, struct lws_dll2_owner *owner) in lws_dll2_add_head()
76 lws_dll2_add_before(struct lws_dll2 *d, struct lws_dll2 *after) in lws_dll2_add_before()
115 lws_dll2_add_tail(struct lws_dll2 *d, struct lws_dll2_owner *owner) in lws_dll2_add_tail()
141 lws_dll2_remove(struct lws_dll2 *d) in lws_dll2_remove()
171 lws_dll2_clear(struct lws_dll2 *d) in lws_dll2_clear()
179 lws_dll2_owner_clear(struct lws_dll2_owner *d) in lws_dll2_owner_clear()
187 lws_dll2_add_sorted(lws_dll2_t *d, lws_dll2_owner_t *own, in lws_dll2_add_sorted()
188 int (*compare)(const lws_dll2_t *d, const lws_dll2_t *i)) in lws_dll2_add_sorted()
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/
Djson_decode.c59 UPB_NORETURN static void jsondec_err(jsondec *d, const char *msg) { in jsondec_err()
65 UPB_NORETURN static void jsondec_errf(jsondec *d, const char *fmt, ...) { in jsondec_errf()
75 static void jsondec_skipws(jsondec *d) { in jsondec_skipws()
94 static bool jsondec_tryparsech(jsondec *d, char ch) { in jsondec_tryparsech()
100 static void jsondec_parselit(jsondec *d, const char *lit) { in jsondec_parselit()
109 static void jsondec_wsch(jsondec *d, char ch) { in jsondec_wsch()
116 static void jsondec_true(jsondec *d) { jsondec_parselit(d, "true"); } in jsondec_true()
117 static void jsondec_false(jsondec *d) { jsondec_parselit(d, "false"); } in jsondec_false()
118 static void jsondec_null(jsondec *d) { jsondec_parselit(d, "null"); } in jsondec_null()
120 static void jsondec_entrysep(jsondec *d) { in jsondec_entrysep()
[all …]
/external/deqp/external/openglcts/modules/gles31/
Des31cVertexAttribBindingTests.cpp675 GLubyte d[] = { 1, 2, 3, 4 }; in Run() local
682 GLubyte d[] = { 10, 11, 12, 13 }; in Run() local
744 GLbyte d[] = { -127, 127, -127, 127 }; in Run() local
749 GLushort d[] = { 1, 2, 3, 4 }; in Run() local
754 GLuint d[] = { 5, 6 }; in Run() local
759 GLbyte d[] = { 127, -127, 127, -127 }; in Run() local
764 GLushort d[] = { 7, 8, 9, 10 }; in Run() local
769 GLuint d[] = { 11, 12 }; in Run() local
776 GLhalf d[] = { FloatToHalf(0.0), FloatToHalf(100.0), FloatToHalf(200.0) }; in Run() local
781 GLhalf d[] = { FloatToHalf(300.0), FloatToHalf(400.0) }; in Run() local
[all …]
/external/angle/src/tests/deqp_support/
Des31cVertexAttribBindingTests_override.cpp673 GLubyte d[] = {1, 2, 3, 4}; in Run() local
680 GLubyte d[] = {10, 11, 12, 13}; in Run() local
742 GLbyte d[] = {-127, 127, -127, 127}; in Run() local
747 GLushort d[] = {1, 2, 3, 4}; in Run() local
752 GLuint d[] = {5, 6}; in Run() local
757 GLbyte d[] = {127, -127, 127, -127}; in Run() local
762 GLushort d[] = {7, 8, 9, 10}; in Run() local
767 GLuint d[] = {11, 12}; in Run() local
774 GLhalf d[] = {FloatToHalf(0.0), FloatToHalf(100.0), FloatToHalf(200.0)}; in Run() local
779 GLhalf d[] = {FloatToHalf(300.0), FloatToHalf(400.0)}; in Run() local
[all …]
/external/elfutils/libcpu/
Di386_data.h88 data_prefix (struct output_data *d) in data_prefix()
157 general_mod$r_m (struct output_data *d) in general_mod$r_m()
388 FCT_MOD$R_M (struct output_data *d) in FCT_MOD$R_M()
418 FCT_Mod$R_m (struct output_data *d) in FCT_Mod$R_m()
443 generic_abs (struct output_data *d, const char *absstring in generic_abs()
483 FCT_absval (struct output_data *d) in FCT_absval()
493 FCT_abs (struct output_data *d) in FCT_abs()
503 FCT_ax (struct output_data *d) in FCT_ax()
529 FCT_ax$w (struct output_data *d) in FCT_ax$w()
551 FCT_crdb (struct output_data *d, const char *regstr) in FCT_crdb()
[all …]
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
Dctor_init.pass.cpp26 D d = {}; in main() local
33 D d = {10}; in main() local
40 D d = {10, 30}; in main() local
48 D d = {30, 10}; in main() local
56 D d = {30, 0, 10}; in main() local
65 D d = {0, 30, 10}; in main() local
74 D d = {0, 0, 10}; in main() local
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/time/
Dduration.cc88 inline bool IsFinite(double d) { in IsFinite()
94 inline bool IsValidDivisor(double d) { in IsValidDivisor()
102 inline double Round(Double d) { in Round()
129 inline uint128 MakeU128Ticks(Duration d) { in MakeU128Ticks()
202 inline bool SafeAddRepHi(double a_hi, double b_hi, Duration* d) { in SafeAddRepHi()
236 inline Duration ScaleFixed(Duration d, int64_t r) { in ScaleFixed()
247 inline Duration ScaleDouble(Duration d, double r) { in ScaleDouble()
506 Duration Trunc(Duration d, Duration unit) { in Trunc()
510 Duration Floor(const Duration d, const Duration unit) { in Floor()
515 Duration Ceil(const Duration d, const Duration unit) { in Ceil()
[all …]
/external/libtextclassifier/abseil-cpp/absl/time/
Dduration.cc88 inline bool IsFinite(double d) { in IsFinite()
94 inline bool IsValidDivisor(double d) { in IsValidDivisor()
102 inline double Round(Double d) { in Round()
129 inline uint128 MakeU128Ticks(Duration d) { in MakeU128Ticks()
202 inline bool SafeAddRepHi(double a_hi, double b_hi, Duration* d) { in SafeAddRepHi()
236 inline Duration ScaleFixed(Duration d, int64_t r) { in ScaleFixed()
247 inline Duration ScaleDouble(Duration d, double r) { in ScaleDouble()
506 Duration Trunc(Duration d, Duration unit) { in Trunc()
510 Duration Floor(const Duration d, const Duration unit) { in Floor()
515 Duration Ceil(const Duration d, const Duration unit) { in Ceil()
[all …]
/external/angle/third_party/abseil-cpp/absl/time/
Dduration.cc88 inline bool IsFinite(double d) { in IsFinite()
94 inline bool IsValidDivisor(double d) { in IsValidDivisor()
102 inline double Round(Double d) { in Round()
129 inline uint128 MakeU128Ticks(Duration d) { in MakeU128Ticks()
202 inline bool SafeAddRepHi(double a_hi, double b_hi, Duration* d) { in SafeAddRepHi()
236 inline Duration ScaleFixed(Duration d, int64_t r) { in ScaleFixed()
247 inline Duration ScaleDouble(Duration d, double r) { in ScaleDouble()
506 Duration Trunc(Duration d, Duration unit) { in Trunc()
510 Duration Floor(const Duration d, const Duration unit) { in Floor()
515 Duration Ceil(const Duration d, const Duration unit) { in Ceil()
[all …]
/external/webrtc/third_party/abseil-cpp/absl/time/
Dduration.cc85 inline bool IsFinite(double d) { in IsFinite()
91 inline bool IsValidDivisor(double d) { in IsValidDivisor()
99 inline double Round(Double d) { in Round()
126 inline uint128 MakeU128Ticks(Duration d) { in MakeU128Ticks()
199 inline bool SafeAddRepHi(double a_hi, double b_hi, Duration* d) { in SafeAddRepHi()
233 inline Duration ScaleFixed(Duration d, int64_t r) { in ScaleFixed()
244 inline Duration ScaleDouble(Duration d, double r) { in ScaleDouble()
503 Duration Trunc(Duration d, Duration unit) { in Trunc()
507 Duration Floor(const Duration d, const Duration unit) { in Floor()
512 Duration Ceil(const Duration d, const Duration unit) { in Ceil()
[all …]
/external/abseil-cpp/absl/time/
Dduration.cc85 inline bool IsFinite(double d) { in IsFinite()
91 inline bool IsValidDivisor(double d) { in IsValidDivisor()
99 inline double Round(Double d) { in Round()
126 inline uint128 MakeU128Ticks(Duration d) { in MakeU128Ticks()
199 inline bool SafeAddRepHi(double a_hi, double b_hi, Duration* d) { in SafeAddRepHi()
233 inline Duration ScaleFixed(Duration d, int64_t r) { in ScaleFixed()
244 inline Duration ScaleDouble(Duration d, double r) { in ScaleDouble()
503 Duration Trunc(Duration d, Duration unit) { in Trunc()
507 Duration Floor(const Duration d, const Duration unit) { in Floor()
512 Duration Ceil(const Duration d, const Duration unit) { in Ceil()
[all …]

12345678910>>...265