Searched refs:any (Results 1 - 25 of 464) sorted by relevance

1234567891011>>

/external/llvm/bindings/ocaml/transforms/scalar/
H A Dllvm_scalar_opts.ml10 external add_constant_propagation : [<Llvm.PassManager.any] Llvm.PassManager.t
13 external add_sccp : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
15 external add_dead_store_elimination : [<Llvm.PassManager.any] Llvm.PassManager.t
18 external add_aggressive_dce : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
21 add_scalar_repl_aggregation : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
25 add_scalar_repl_aggregation_ssa : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
29 add_scalar_repl_aggregation_with_threshold : int -> [<Llvm.PassManager.any] Llvm.PassManager.t
32 external add_ind_var_simplification : [<Llvm.PassManager.any] Llvm.PassManager.t
36 add_instruction_combination : [<Llvm.PassManager.any] Llvm.PassManager.t
39 external add_licm : [<Llvm.PassManager.any] Llv
[all...]
H A Dllvm_scalar_opts.mli16 external add_constant_propagation : [<Llvm.PassManager.any] Llvm.PassManager.t
21 external add_sccp : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
25 external add_dead_store_elimination : [<Llvm.PassManager.any] Llvm.PassManager.t
30 external add_aggressive_dce : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
35 add_scalar_repl_aggregation : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
40 add_scalar_repl_aggregation_ssa : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
45 add_scalar_repl_aggregation_with_threshold : int -> [<Llvm.PassManager.any] Llvm.PassManager.t
50 external add_ind_var_simplification : [<Llvm.PassManager.any] Llvm.PassManager.t
56 add_instruction_combination : [<Llvm.PassManager.any] Llvm.PassManager.t
61 external add_licm : [<Llvm.PassManager.any] Llv
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/
H A Dp5-0x.cpp17 struct any { struct
18 template<typename T> any(T);
23 any array[sizeof...(inits)] = { inits... };
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
H A Dp4.cpp8 void test_cvqual_ref(AnyT any) { argument
9 const int &cir = any;
/external/openssh/openbsd-compat/
H A Dstrtoll.c55 int neg, any, cutlim; local
58 * Skip white space and pick up leading +/- sign if any.
98 * Set any if any `digits' consumed; make it negative to indicate
111 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
120 if (any < 0)
124 any = -1;
128 any = 1;
134 any = -1;
138 any
[all...]
H A Dstrtoul.c53 int neg, any, cutlim; local
81 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
90 if (any < 0)
93 any = -1;
97 any = 1;
102 if (neg && any > 0)
105 *endptr = (char *) (any ? s - 1 : nptr);
/external/webkit/Source/WebCore/
H A DDerivedSources.cpp479 // accidentally, so we'll throw an error whenever any file includes it.
481 #error Do not include any file in DerivedSources.cpp that includes StaticConstructors.h
/external/webrtc/src/common_audio/signal_processing/
H A Drefl_coef_to_lpc.c22 WebRtc_Word16 any[WEBRTC_SPL_MAX_LPC_ORDER + 1]; local
29 *any = *a;
38 anyptr = any;
41 any[m + 1] = WEBRTC_SPL_RSHIFT_W16((*kptr), 3);
52 anyptr = any;
/external/qemu/android/skin/
H A Dcomposer.c24 if (p->any.type == SKIN_PLATE_SURFACE || p->group.hasRegion)
29 skin_region_reset(p->any.region);
36 skin_region_translate( r, child->any.pos.x, child->any.pos.y );
37 skin_region_union( p->any.region, r );
48 if ( p->any.type != SKIN_PLATE_SURFACE && !p->group.hasRegion ) {
51 skin_region_init_copy( region, p->any.region );
59 if (p->any.type != SKIN_PLATE_SURFACE && !p->group.hasOpaqueRegion) {
69 skin_region_translate(r, child->any.pos.x, child->any
[all...]
H A Dcomposer.h44 struct SkinPlateAny any; member in struct:SkinPlateSurface
51 struct SkinPlateAny any; member in struct:SkinPlateGroup
65 struct SkinPlateAny any; member in union:SkinPlate
/external/valgrind/main/drd/
H A Ddrd_clientobj.c10 License, or (at your option) any later version.
99 if (p && p->any.type == t)
104 /** Return true if and only if the address range of any client object overlaps
115 if (a1 <= p->any.a1 && p->any.a1 < a2)
141 p->any.a1 = a1;
142 p->any.type = t;
143 p->any.first_observed_at = VG_(record_ExeContext)(VG_(get_running_tid)(), 0);
165 tl_assert(p->any.type == t);
183 DRD_(trace_msg)("Removing client object 0x%lx of type %d", p->any
[all...]
/external/dbus/tools/
H A Dstrtoll.c71 int neg, any, cutlim; local
74 * Skip white space and pick up leading +/- sign if any.
101 acc = any = 0;
120 * Set 'any' if any `digits' consumed; make it negative to indicate
138 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
139 any = -1;
141 any = 1;
146 if (any < 0) {
153 } else if (!any) {
[all...]
H A Dstrtoull.c72 int neg, any, cutlim; local
100 acc = any = 0;
117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
118 any = -1;
120 any = 1;
125 if (any < 0) {
132 } else if (!any) {
142 *endptr = (char *)(any ? s - 1 : nptr);
/external/eigen/doc/examples/
H A DTutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp15 cout << "(a > 0).any() = " << (a > 0).any() << endl;
19 cout << "(a > 2).any() = " << (a > 2).any() << endl;
/external/webkit/Source/WebCore/dom/
H A DPopStateEvent.idl36 readonly attribute [V8CustomGetter] any state;
/external/webkit/Source/WebCore/page/
H A DHistory.idl44 [Custom, EnabledAtRuntime] void pushState(in any data, in DOMString title, in optional DOMString url)
46 [Custom, EnabledAtRuntime] void replaceState(in any data, in DOMString title, in optional DOMString url)
/external/webkit/Source/WebCore/storage/
H A DIDBAny.h54 RefPtr<IDBAny> any = IDBAny::createInvalid(); local
55 any->set(idbObject);
56 return any.release();
61 RefPtr<IDBAny> any = IDBAny::createInvalid(); local
62 any->set(idbObject);
63 return any.release();
110 // Only one of the following should ever be in use at any given time.
/external/libyuv/
H A Dsetup_env.bat1 :: This script must not rely on any external tools or PATH values.
/external/webkit/LayoutTests/http/tests/cookies/resources/
H A Dcookie-utility.php28 // Default for any other string is echo cookies.
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp5-cxx0x.cpp64 struct any { struct in namespace:libcxx_example
65 any(...);
74 nat swap(any, any);
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwps-ap-cli36 $CLI wps_pin any "$cpin"
/external/chromium/chrome/browser/sync/engine/
H A Dstore_timestamps_command.cc33 // was omitted for any one type, that indicates no change from the previous
47 DCHECK(forward_progress_types.any() ||
50 VLOG_IF(1, forward_progress_types.any())
/external/oauth/core/src/main/java/
H A DAndroid.mk7 # Includes all the java files, and explicitly declares any aidl files
/external/webkit/Source/WebCore/workers/
H A DDedicatedWorkerContext.idl44 [Custom] void postMessage(in any message, in [Optional] Array messagePorts)
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/
H A DRuntime.pm53 problem, one or more likely causes, and any suggested remedies.
59 A full explanation of any configuration system(s) used by the module,
60 including the names and locations of any configuration files, and the
61 meaning of any environment variables or properties that can be set. These
62 descriptions must also include details of any configuration language used.
68 A list of all the other modules that this module relies upon, including any
76 A list of any modules that this module cannot be used in conjunction with.

Completed in 697 milliseconds

1234567891011>>