HomeSort by relevance Sort by last modified time
    Searched refs:any (Results 1 - 25 of 715) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/bindings/ocaml/transforms/scalar/
llvm_scalar_opts.ml 10 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] Llvm.PassManager.
    [all...]
llvm_scalar_opts.mli 16 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] Llvm.PassManager.
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p5-0x.cpp 17 struct any { struct
18 template<typename T> any(T);
23 any array[sizeof...(inits)] = { inits... };
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/bitset.members/
any.pass.cpp 10 // test bool any() const;
20 assert(v.any() == false);
22 assert(v.any() == (N != 0));
26 assert(v.any() == true);
29 assert(v.any() == true);
  /bionic/libc/stdlib/
strtol.c 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 int neg, any, cutlim; local
52 * Skip white space and pick up leading +/- sign if any.
91 * Set any if any `digits' consumed; make it negative to indicate
104 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
113 if (any < 0
    [all...]
strtoul.c 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48 int neg, any, cutlim; local
76 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
85 if (any < 0)
88 any = -1;
92 any = 1;
97 if (neg && any > 0
    [all...]
strtoumax.c 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48 int neg, any, cutlim; local
89 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
98 if (any < 0)
101 any = -1;
105 any = 1;
110 if (neg && any > 0
    [all...]
strtoimax.c 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48 int neg, any, cutlim; local
51 * Skip white space and pick up leading +/- sign if any.
91 * Set any if any `digits' consumed; make it negative to indicate
135 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
144 if (any < 0
    [all...]
  /external/openssh/openbsd-compat/
strtoll.c 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
55 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
    [all...]
strtoul.c 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
53 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
    [all...]
  /external/webkit/Source/WebCore/
DerivedSources.cpp 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
479 // 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/
refl_coef_to_lpc.c 22 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/
composer.c 8 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
24 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.pos.y)
    [all...]
  /external/valgrind/main/drd/
drd_clientobj.c 9 License, or (at your option) any later version.
12 WITHOUT ANY WARRANTY; without even the implied warranty of
98 if (p && p->any.type == t)
103 /** Return true if and only if the address range of any client object overlaps
114 if (a1 <= p->any.a1 && p->any.a1 < a2)
140 p->any.a1 = a1;
141 p->any.type = t;
142 p->any.first_observed_at = VG_(record_ExeContext)(VG_(get_running_tid)(), 0);
164 tl_assert(p->any.type == t)
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
p4.cpp 8 void test_cvqual_ref(AnyT any) {
9 const int &cir = any;
  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp 15 cout << "(a > 0).any() = " << (a > 0).any() << endl;
19 cout << "(a > 2).any() = " << (a > 2).any() << endl;
  /build/target/board/emulator/
BoardConfig.mk 6 # The generic product target doesn't have any hardware-specific pieces.
  /external/webkit/Source/WebCore/dom/
PopStateEvent.idl 13 * THIS SOFTWARE IS PROVIDED BY APPLE, INC. ``AS IS'' AND ANY
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 readonly attribute [V8CustomGetter] any state;
  /bionic/libc/arch-mips/bionic/
crtbegin.S 16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
35 # any executable that is statically-linked with Bionic
44 # - address of an "onexit" function, not used on any
  /development/ndk/platforms/android-9/arch-mips/src/
crtbegin_dynamic.S 16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
35 # any executable that is dynamically-linked with Bionic
44 # - address of an "onexit" function, not used on any
crtbegin_static.S 16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
35 # any executable that is statically-linked with Bionic
44 # - address of an "onexit" function, not used on any
  /external/webkit/Source/WebCore/page/
History.idl 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 [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)
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.overview/
launch.pass.cpp 16 // any = async | deferred
23 static_assert(static_cast<int>(std::launch::any) ==
  /external/webkit/Source/WebCore/storage/
IDBAny.h 14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
54 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()
    [all...]
  /external/libyuv/
setup_env.bat 1 :: This script must not rely on any external tools or PATH values.

Completed in 531 milliseconds

1 2 3 4 5 6 7 8 91011>>