/external/linux-kselftest/tools/testing/selftests/rcutorture/doc/ |
D | TREE_RCU-kconfig.txt | 7 CONFIG_DEBUG_LOCK_ALLOC -- Do three, covering CONFIG_PROVE_LOCKING & not. 8 CONFIG_DEBUG_OBJECTS_RCU_HEAD -- Do one. 9 CONFIG_HOTPLUG_CPU -- Do half. (Every second.) 10 CONFIG_HZ_PERIODIC -- Do one. 11 CONFIG_NO_HZ_IDLE -- Do those not otherwise specified. (Groups of two.) 12 CONFIG_NO_HZ_FULL -- Do two, one with partial CPU enablement. 13 CONFIG_PREEMPT -- Do half. (First three and #8.) 14 CONFIG_PROVE_LOCKING -- Do several, covering CONFIG_DEBUG_LOCK_ALLOC=y and not. 18 CONFIG_RCU_FANOUT_LEAF -- Do one non-default. 19 CONFIG_RCU_FAST_NO_HZ -- Do one, but not with all nohz_full CPUs. [all …]
|
/external/libchrome/base/numerics/ |
D | safe_math_clang_gcc_impl.h | 31 static constexpr bool Do(T, U, V*) { in Do() function 41 static constexpr V Do(T, U) { in Do() function 51 static constexpr V Do(T, U) { in Do() function 61 static constexpr V Do(T, U) { in Do() function 73 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V* result) { in Do() function 82 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V* result) { in Do() function 103 __attribute__((always_inline)) static constexpr bool Do(T x, U y, V* result) { in Do() function 105 ? CheckedMulFastAsmOp<T, U>::Do(x, y, result) in Do() 114 __attribute__((always_inline)) static V Do(T x, U y) { in Do() function 115 return ClampedAddFastAsmOp<T, U>::template Do<V>(x, y); in Do() [all …]
|
D | clamped_math_impl.h | 32 : ClampedNegFastOp<T>::Do(value); in SaturatedNegWrapper() 81 static constexpr V Do(T x, U y) { 83 return ClampedAddFastOp<T, U>::template Do<V>(x, y); 91 return BASE_NUMERICS_LIKELY((CheckedAddOp<T, U>::Do(x, y, &result))) 107 static constexpr V Do(T x, U y) { 110 return ClampedSubFastOp<T, U>::template Do<V>(x, y); 118 return BASE_NUMERICS_LIKELY((CheckedSubOp<T, U>::Do(x, y, &result))) 134 static constexpr V Do(T x, U y) { 137 return ClampedMulFastOp<T, U>::template Do<V>(x, y); 142 return BASE_NUMERICS_LIKELY((CheckedMulOp<T, U>::Do(x, y, &result))) [all …]
|
D | safe_math_arm_impl.h | 34 __attribute__((always_inline)) static bool Do(T x, U y, V* result) { in Do() function 53 __attribute__((always_inline)) static V Do(T x, U y) { in Do() function 79 __attribute__((always_inline)) static V Do(T x, U y) { in Do() function 101 __attribute__((always_inline)) static V Do(T x, U y) { in Do() function 107 if (CheckedMulFastAsmOp<T, U>::Do(x, y, &result)) in Do()
|
D | checked_math_impl.h | 51 static constexpr bool Do(T x, U y, V* result) { 54 return CheckedAddFastOp<T, U>::Do(x, y, result); 111 static constexpr bool Do(T x, U y, V* result) { 114 return CheckedSubFastOp<T, U>::Do(x, y, result); 173 static constexpr bool Do(T x, U y, V* result) { 176 return CheckedMulFastOp<T, U>::Do(x, y, result); 190 is_valid = CheckedMulFastOp<Promotion, Promotion>::Do(x, y, &presult); 214 static constexpr bool Do(T x, U y, V* result) { 253 static constexpr bool Do(T x, U y, V* result) { 277 static constexpr bool Do(T x, U shift, V* result) { [all …]
|
D | safe_conversions.h | 30 static constexpr Dst Do(Src) { in Do() function 43 static constexpr bool Do(Src value) { in Do() function 60 static constexpr bool Do(Src value) { 78 static constexpr bool Do(Src value) { 91 ? internal::IsValueInRangeFastOp<Dst, SrcType>::Do( 156 static constexpr Dst Do(Src value) { 169 static Dst Do(Src value) { 171 return SaturateFastAsmOp<Dst, Src>::Do(value); 198 ? SaturateFastOp<Dst, SrcType>::Do(static_cast<SrcType>(value))
|
D | safe_math_shared_impl.h | 42 static constexpr bool Do(T, U, V*) { in Do() function 52 static constexpr bool Do(T, U, V*) { in Do() function 62 static constexpr bool Do(T, U, V*) { in Do() function 72 static constexpr V Do(T, U) { in Do() function 82 static constexpr V Do(T, U) { in Do() function 92 static constexpr V Do(T, U) { in Do() function 101 static constexpr T Do(T) { in Do() function
|
/external/syzkaller/pkg/gce/ |
D | gce.go | 73 inst, err := ctx.computeService.Instances.Get(ctx.ProjectID, ctx.ZoneID, ctx.Instance).Do() 143 op, err = ctx.computeService.Instances.Insert(ctx.ProjectID, ctx.ZoneID, instance).Do() 159 inst, err = ctx.computeService.Instances.Get(ctx.ProjectID, ctx.ZoneID, name).Do() 183 op, err = ctx.computeService.Instances.Delete(ctx.ProjectID, ctx.ZoneID, name).Do() 203 inst, err = ctx.computeService.Instances.Get(ctx.ProjectID, ctx.ZoneID, name).Do() 224 op, err = ctx.computeService.Images.Insert(ctx.ProjectID, image).Do() 231 op, err = ctx.computeService.Images.Insert(ctx.ProjectID, image).Do() 247 op, err = ctx.computeService.Images.Delete(ctx.ProjectID, imageName).Do() 275 op, err = ctx.computeService.GlobalOperations.Get(ctx.ProjectID, opName).Do() 277 op, err = ctx.computeService.ZoneOperations.Get(ctx.ProjectID, ctx.ZoneID, opName).Do() [all …]
|
/external/syzkaller/vendor/golang.org/x/net/context/ctxhttp/ |
D | ctxhttp.go | 26 func Do(ctx context.Context, client *http.Client, req *http.Request) (*http.Response, error) { func 30 resp, err := client.Do(req.WithContext(ctx)) 49 return Do(ctx, client, req) 58 return Do(ctx, client, req) 68 return Do(ctx, client, req)
|
D | ctxhttp_pre17.go | 29 func Do(ctx context.Context, client *http.Client, req *http.Request) (*http.Response, error) { func 50 resp, err := client.Do(req) 97 return Do(ctx, client, req) 106 return Do(ctx, client, req) 116 return Do(ctx, client, req)
|
/external/syzkaller/vendor/cloud.google.com/go/storage/ |
D | acl.go | 105 acls, err = req.Do() 118 return req.Do() 132 acls, err = req.Do() 155 _, err := req.Do() 168 return req.Do() 182 acls, err = req.Do() 193 Do(opts ...googleapi.CallOption) (*raw.ObjectAccessControl, error) 210 _, err := req.Do() 227 return req.Do()
|
D | iam.go | 40 rp, err = req.Context(ctx).Do() 54 _, err := req.Context(ctx).Do() 65 res, err = req.Context(ctx).Do()
|
/external/u-boot/arch/arm/dts/ |
D | meson-gxl-mali.dtsi | 36 assigned-clock-parents = <0>, /* Do Nothing */ 38 <0>, /* Do Nothing */ 41 <0>, /* Do Nothing */ 43 <0>; /* Do Nothing */
|
D | meson-gxbb.dtsi | 254 assigned-clock-parents = <0>, /* Do Nothing */ 256 <0>, /* Do Nothing */ 259 <0>, /* Do Nothing */ 261 <0>; /* Do Nothing */ 692 <0>, /* Do Nothing */ 695 <0>, /* Do Nothing */ 697 assigned-clock-rates = <0>, /* Do Nothing */ 699 <0>, /* Do Nothing */ 700 <0>, /* Do Nothing */ 702 <0>; /* Do Nothing */
|
/external/icu/icu4c/source/data/locales/ |
D | es_VE.txt | 48 "Do", 59 "Do", 164 "-1"{"el Do pasado"} 165 "0"{"este Do"} 166 "1"{"el próximo Do"}
|
/external/clang/test/Analysis/ |
D | superclass.m | 52 // Do not warn if UIViewController/*Responder/NSDocument is not our superclass 72 // Do not warn for the implementation in the superclass itself. 111 // Do not warn for methods were it shouldn't 115 // Do not warn if UIViewController is our superclass but we did call super 175 // Do warn for UIResponder subclasses that don't call super 185 // Do not warn for UIResponder subclasses that do the right thing 195 // Do warn for NSResponder subclasses that don't call super 206 // Do not warn for NSResponder subclasses that do the right thing 219 // Do warn for NSDocument subclasses that don't call super 230 // Do not warn for NSDocument subclasses that do the right thing
|
/external/clang/test/CodeGenObjC/ |
D | default-property-synthesis.m | 5 // Do not @synthesize-by-default in the subclass. P1 7 // (such as different type or attributes). Do not @synthesize-by-default in the subclass. P2 9 // same property. Do not @synthesize-by-default in the subclass. P3 11 // same protocol or a derived protocol. Do not @synthesize-by-default in the subclass. P4
|
/external/icu/icu4c/source/data/brkitr/rules/ |
D | line_loose_cj.txt | 138 # LB 6 Do not break before hard line breaks. 158 # LB 8a ZWJ x Do not break Emoji ZWJ sequences. 170 # LB 11 Do not break before or after WORD JOINER & related characters. 179 # LB 12 Do not break after NBSP and related characters. 185 # LB 12a Do not break before NBSP and related characters ... 195 # Do not include $EXX here 218 # LB 14 Do not break after OP, even after spaces 229 # Do not break between closing punctuation and $NS, even with intervening spaces 300 # Do not include $POX here 309 # Do not include $PRX here [all …]
|
D | line_normal_cj.txt | 126 # LB 6 Do not break before hard line breaks. 146 # LB 8a ZWJ x Do not break Emoji ZWJ sequences. 158 # LB 11 Do not break before or after WORD JOINER & related characters. 167 # LB 12 Do not break after NBSP and related characters. 173 # LB 12a Do not break before NBSP and related characters ... 206 # LB 14 Do not break after OP, even after spaces 217 # Do not break between closing punctuation and $NS, even with intervening spaces 306 # LB 26 Do not break a Korean syllable 318 # LB 28 Do not break between alphabetics 331 # LB 30a Do not break between regional indicators. Break after pairs of them. [all …]
|
D | line_loose.txt | 128 # LB 6 Do not break before hard line breaks. 148 # LB 8a ZWJ x Do not break Emoji ZWJ sequences. 160 # LB 11 Do not break before or after WORD JOINER & related characters. 169 # LB 12 Do not break after NBSP and related characters. 175 # LB 12a Do not break before NBSP and related characters ... 208 # LB 14 Do not break after OP, even after spaces 219 # Do not break between closing punctuation and $NS, even with intervening spaces 308 # LB 26 Do not break a Korean syllable 320 # LB 28 Do not break between alphabetics 333 # LB 30a Do not break between regional indicators. Break after pairs of them. [all …]
|
D | line.txt | 121 # LB 6 Do not break before hard line breaks. 141 # LB 8a ZWJ x Do not break Emoji ZWJ sequences. 153 # LB 11 Do not break before or after WORD JOINER & related characters. 162 # LB 12 Do not break after NBSP and related characters. 168 # LB 12a Do not break before NBSP and related characters ... 201 # LB 14 Do not break after OP, even after spaces 298 # LB 26 Do not break a Korean syllable 310 # LB 28 Do not break between alphabetics 323 # LB 30a Do not break between regional indicators. Break after pairs of them. 332 # LB 30b Do not break between an Emoji Base and an Emoji Modifier
|
/external/pdfium/testing/resources/ |
D | bug_451265.in | 26 /Im6 Do 44 /x15 Do 71 /x47 Do
|
/external/pdfium/third_party/base/numerics/ |
D | safe_math_impl.h | 83 static bool Do(T x, U y, V* result) { 134 static bool Do(T x, U y, V* result) { 187 static bool Do(T x, U y, V* result) { 251 static bool Do(T x, U y, V* result) { 285 static bool Do(T x, U y, V* result) { 308 static bool Do(T x, U shift, V* result) { 317 return CheckedMulOp<T, T>::Do(x, static_cast<T>(1) << shift, result); 337 static bool Do(T x, U shift, V* result) { 361 static bool Do(T x, U y, V* result) { 380 static bool Do(T x, U y, V* result) { [all …]
|
/external/clang/test/SemaObjC/ |
D | arc-property-decl-attrs.m | 89 @property(nonatomic, weak) id delegate; // Do not warn, nullable is inferred. 90 @property(nonatomic, weak, readonly) id ROdelegate; // Do not warn, nullable is inferred. 95 @property(nonatomic, strong) id stdelegate; // Do not warn 96 @property(nonatomic, readonly) id stROdelegate; // Do not warn 97 @property(nonatomic, strong, nonnull) id stNonNulldelete; // Do not warn 103 @property(nonatomic, weak) id ddd; // Do not warn, nullable is inferred.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/RISCV/ |
D | tail-calls.ll | 50 ; Do not tail call optimize functions with varargs. 61 ; Do not tail call optimize if stack is used to pass parameters. 72 ; Do not tail call optimize if parameters need to be passed indirectly. 112 ; we want to reuse during a tail call. Do not tail call optimize functions with 125 ; Do not tail call optimize if callee uses structret semantics. 139 ; Do not tail call optimize if caller uses structret semantics.
|