Home
last modified time | relevance | path

Searched refs:Do (Results 1 – 25 of 3702) sorted by relevance

12345678910>>...149

/external/linux-kselftest/tools/testing/selftests/rcutorture/doc/
DTREE_RCU-kconfig.txt7 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/
Dsafe_math_clang_gcc_impl.h31 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 …]
Dclamped_math_impl.h32 : 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 …]
Dsafe_math_arm_impl.h34 __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()
Dchecked_math_impl.h51 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 …]
Dsafe_conversions.h30 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))
Dsafe_math_shared_impl.h42 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/
Dgce.go73 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/
Dctxhttp.go26 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)
Dctxhttp_pre17.go29 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/
Dacl.go105 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()
Diam.go40 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/
Dmeson-gxl-mali.dtsi36 assigned-clock-parents = <0>, /* Do Nothing */
38 <0>, /* Do Nothing */
41 <0>, /* Do Nothing */
43 <0>; /* Do Nothing */
Dmeson-gxbb.dtsi254 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/
Des_VE.txt48 "Do",
59 "Do",
164 "-1"{"el Do pasado"}
165 "0"{"este Do"}
166 "1"{"el próximo Do"}
/external/clang/test/Analysis/
Dsuperclass.m52 // 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/
Ddefault-property-synthesis.m5 // 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/
Dline_loose_cj.txt138 # 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 …]
Dline_normal_cj.txt126 # 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 …]
Dline_loose.txt128 # 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 …]
Dline.txt121 # 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/
Dbug_451265.in26 /Im6 Do
44 /x15 Do
71 /x47 Do
/external/pdfium/third_party/base/numerics/
Dsafe_math_impl.h83 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/
Darc-property-decl-attrs.m89 @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/
Dtail-calls.ll50 ; 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.

12345678910>>...149