Searched refs:comp (Results 1 - 25 of 100) sorted by relevance

1234

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dptrmem4.C10 void (X::*const comp)() = &X::foo;
11 spawn<int> (comp);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A D20081204-1.c7 static int comp(const void *a,const void *b){ function
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dmvbits_8.f9015 TYPE(inner) :: comp(2) component in type:outer
20 var%comp%i = (/ 1, 2 /)
21 var%comp%j = (/ 3, 4 /)
25 IF (ANY (var%comp%i /= (/ 1, 2 /))) CALL abort ()
26 IF (ANY (var%comp%j /= (/ 3, 4 /))) CALL abort ()
33 CALL MVBITS (x%comp%i, 1, 2, x%comp(lower:upper)%i, 1)
H A Dprivate_type_14.f9012 real, dimension(3) :: comp component in type:vec
28 ! write(*,*) o_vec%comp, o_vec%len
29 o_l_vec = l_vec(comp=(/1.0, 2.0, 3.0/),len=3)
31 ! write(*,*) o_l_vec%comp, o_l_vec%len
35 if (abs(oo_vec%comp(i) - o_vec%comp(i)) > 1.0E-5) then
H A Dmodule_function_type_1.f9010 real comp component in type:A_type
20 initA%comp=1.0
H A Dused_types_19.f9010 real comp component in type:A_type
H A Dc_ptr_tests_driver.c9 typedef struct comp struct
12 void (*setServices)(struct comp *self, services_t *myServices);
H A Dpointer_intent_1.f9064 subroutine foo(comp)
65 type(myT), intent(inout) :: comp local in subroutine:foo
66 if(comp%x /= -15) call abort()
67 if(comp%point /= 27) call abort()
68 comp%x = 32
69 comp%point = -98
H A Dderived_constructor_comps_6.f9019 type(string_t) :: comp component in type:string_container_t
23 type(string_t) :: comp(n) component in type:string_array_container_t
69 deallocate(tmpc%comp%chars)
80 deallocate (tmpca(j)%comp%chars)
92 deallocate (tmpac%comp(j)%chars)
106 deallocate (tmpaca(j)%comp(k)%chars)
H A Dintent_out_7.f907 integer, allocatable :: comp component in type:t
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dinclude3.c5 #define COMP_INC(comp,file) PREINC_STR(comp/file)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/25_algorithms/find_first_of/
H A Dconcept_check_1.cc30 comp(class1&, class2&) function
39 std::find_first_of(&a, &a, &b, &b, comp);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr42956.c21 int comp, ireg, xreg; local
25 for( comp = 0; comp < ncomp_; ++comp )
27 Result *r = &result[comp];
28 cErrors *e = &errors[comp];
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vect/
H A Dpr64829.c28 Uint32 comp; local
50 for (comp = 0; comp < nCompOut; comp++)
60 *pOut++ = lastOut[comp] = (Uint8)(result >> 4);
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dstl_queue.h129 _Compare comp; member in class:priority_queue
132 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {}
134 : c(__s), comp(__x)
135 { make_heap(c.begin(), c.end(), comp); }
140 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
145 : c(__first, __last), comp(__x)
146 { make_heap(c.begin(), c.end(), comp); }
151 : c(__s), comp(__x)
154 make_heap(c.begin(), c.end(), comp);
159 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
[all...]
/haiku-buildtools/autoconf/build-aux/
H A Delisp-comp38 Usage: elisp-comp [--help] [--version] FILES...
53 echo "elisp-comp $scriptversion"
/haiku-buildtools/legacy/gcc/gcc/
H A Dhash.c38 hash_table_init_n (table, newfunc, hash, comp, size)
44 boolean (*comp) PARAMS ((hash_table_key, hash_table_key));
66 table->comp = comp;
73 hash_table_init (table, newfunc, hash, comp)
79 boolean (*comp) PARAMS ((hash_table_key, hash_table_key));
81 return hash_table_init_n (table, newfunc, hash, comp, DEFAULT_SIZE);
116 && (*table->comp)(hashp->key, key))
H A Dhash.h69 boolean (*comp) PARAMS ((hash_table_key, hash_table_key)); member in struct:hash_table
81 boolean (*comp) (hash_table_key, hash_table_key)));
90 boolean (*comp) (hash_table_key, hash_table_key),
/haiku-buildtools/legacy/gcc/texinfo/emacs/
H A DMakefile.am12 EXTRA_DIST = README elisp-comp new-useful-setqs $(noinst_LISP)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A D6.cc71 Comp<int> comp(-1);
72 head.sort( comp );
/haiku-buildtools/gcc/mpfr/src/
H A Dlog1p.c32 int comp, inexact; local
83 comp = mpfr_cmp_si (x, -1);
85 if (MPFR_UNLIKELY(comp <= 0))
87 if (comp == 0)
H A Dacosh.c34 int comp; local
57 comp = mpfr_cmp_ui (x, 1);
58 if (MPFR_UNLIKELY (comp < 0))
63 else if (MPFR_UNLIKELY (comp == 0))
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dstl_queue.h391 _Compare comp; member in class:priority_queue
401 : c(__s), comp(__x)
402 { std::make_heap(c.begin(), c.end(), comp); }
407 : c(__s), comp(__x)
408 { std::make_heap(c.begin(), c.end(), comp); }
413 : c(std::move(__s)), comp(__x)
414 { std::make_heap(c.begin(), c.end(), comp); }
437 : c(__s), comp(__x)
441 std::make_heap(c.begin(), c.end(), comp);
448 : c(__s), comp(__
[all...]
/haiku-buildtools/gcc/gcc/
H A Dtree-predcom.c511 dump_component (FILE *file, struct component *comp) argument
517 comp->comp_step == RS_INVARIANT ? " (invariant)" : "");
518 FOR_EACH_VEC_ELT (comp->refs, i, a)
529 struct component *comp; local
531 for (comp = comps; comp; comp = comp->next)
532 dump_component (file, comp);
572 release_component (struct component *comp) argument
753 struct component *comp_list = NULL, *comp; local
892 suitable_component_p(struct loop *loop, struct component *comp) argument
950 struct component **comp, *act; local
1032 make_invariant_chain(struct component *comp) argument
1255 determine_roots_comp(struct loop *loop, struct component *comp, vec<chain_p> *chains) argument
1310 struct component *comp; local
[all...]
/haiku-buildtools/legacy/gcc/include/
H A Dsplay-tree.h85 splay_tree_compare_fn comp; member in struct:splay_tree

Completed in 233 milliseconds

1234