Searched refs:select (Results 1 - 25 of 321) sorted by relevance

1234567891011>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DSelectionPolicy.java20 * Algorithm used to select a chromosome pair from a population.
31 ChromosomePair select(Population population); method in interface:SelectionPolicy
H A DTournamentSelection.java56 public ChromosomePair select(Population population) { method in class:TournamentSelection
64 * Helper for {@link #select(Population)}. Draw {@link #arity} random
65 * chromosomes without replacement from the population, and then select the
86 // select a random individual and add it to the tournament
89 // do not select it again
/external/eigen/doc/snippets/
H A DMatrixBase_select.cpp5 m = (m.array() >= 5).select(-m, m);
/external/strace/tests/
H A Dselect.c6 #include <sys/select.h>
20 * Start with a nice simple select.
25 assert(select(2, set, set, set, NULL) == 1);
33 assert(select(-1, NULL, set, NULL, NULL) == -1);
40 assert(select(FD_SETSIZE + 1, set, set + 1, NULL, &timeout) == 0);
/external/compiler-rt/test/msan/
H A Dvector_select.cc4 // Regression test for MemorySanitizer instrumentation of a select instruction
10 __m128d select(bool b, __m128d c, __m128d d) function
17 __w64d select(bool b, __w64d c, __w64d d) function
/external/lldb/test/pexpect-2.4/examples/
H A Dbd_client.py7 import sys, time, select namespace
10 r,w,e = select.select([s.fileno()],[],[], 2)
/external/clang/test/SemaCXX/
H A Ddiscrim-union.cpp14 template<unsigned N> struct select {}; // : integral_constant<unsigned, N> {}; struct in namespace:detail
31 constexpr either_impl(select<0>, T &&t) : val(move(t)) {}
34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {}
49 constexpr const T &get(select<0>) { return val; }
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) {
51 return rest.get(select<N-1>{});
76 impl(detail::select<impl_t::index(detail::type<U>())>(), move(t.value)) {}
85 decltype(static_cast<const impl_t&>(impl).get(detail::select<
[all...]
/external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
H A Dlist_view.css7 -webkit-user-select: none;
15 -webkit-user-select: none;
/external/v8/test/mjsunit/compiler/
H A Dregress-gap.js39 function select(n, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) { function
116 assertEquals(1, select(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
117 assertEquals(4, select(3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
118 assertEquals(10, select(9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
/external/compiler-rt/make/
H A Dlib_util.mk27 # Helper functions that select the entire list of subdirs where a function is
46 # Helper function to select the right set of dirs in generic priority order.
53 # Helper function to select the right set of dirs in optimized priority order.
60 # Helper function to select the right set of dirs (which should be exactly one)
/external/icu/icu4c/source/i18n/unicode/
H A Dplurrule.h51 * of a series of keywords and conditions. The {@link #select} method
174 * {@link #select} method.
178 * UnicodeString keyword = pl->select(number);
331 UnicodeString select(int32_t number) const;
342 UnicodeString select(double number) const;
348 UnicodeString select(const FixedDecimal &number) const;
379 * Orginally intended to return all the values for which select() would return the keyword.
402 * Returns sample values for which select() would return the keyword. If
/external/icu/icu4c/source/i18n/
H A Dquantityformatter.cpp145 count = rules.select(fd);
148 count = rules.select(quantity.getDouble());
150 count = rules.select(quantity.getLong());
152 count = rules.select((double) quantity.getInt64());
H A Dupluralrules.cpp51 UnicodeString result = ((PluralRules*)uplrules)->select(number);
/external/mdnsresponder/mDNSPosix/
H A DmDNSPosix.h24 #include <sys/select.h>
67 // Call mDNSPosixGetFDSet before calling select(), to update the parameters
71 // After calling mDNSPosixGetFDSet(), call select(nfds, &readfds, NULL, NULL, &timeout); as usual
72 // After select() returns, call mDNSPosixProcessFDSet() to let mDNSCore do its work
/external/ppp/pppd/plugins/radius/
H A Dutil.c61 select(0,(fd_set *)NULL,(fd_set *)NULL,(fd_set *)NULL, &tv);
/external/toybox/kconfig/
H A Dzconf.hash.c_shipped117 char kconf_id_strings_str36[sizeof("select")];
153 "select",
/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur_MKL.h68 LAPACK_##MKLPREFIX_U##_SELECT1 select = 0; \
75 info = LAPACKE_##MKLPREFIX##gees( matrix_order, jobvs, sort, select, n, (MKLTYPE*)m_matT.data(), lda, &sdim, (MKLTYPE*)w.data(), (MKLTYPE*)m_matU.data(), ldvs ); \
H A DRealSchur_MKL.h57 LAPACK_##MKLPREFIX_U##_SELECT2 select = 0; \
64 info = LAPACKE_##MKLPREFIX##gees( matrix_order, jobvs, sort, select, n, (MKLTYPE*)m_matT.data(), lda, &sdim, (MKLTYPE*)wr.data(), (MKLTYPE*)wi.data(), (MKLTYPE*)m_matU.data(), ldvs ); \
/external/linux-tools-perf/src/tools/perf/ui/tui/
H A Dsetup.c63 err = select(1, &read_set, NULL, NULL, ptimeout);
82 err = select(1, &read_set, NULL, NULL, &timeout);
/external/eigen/test/eigen2/
H A Deigen2_array.cpp85 VERIFY_IS_APPROX( (m1.cwise()<m2).select(m1,m2), m1.cwise().min(m2) );
86 VERIFY_IS_APPROX( (m1.cwise()>m2).select(m1,m2), m1.cwise().max(m2) );
92 .select(MatrixType::Zero(rows,cols),m1), m3);
95 .select(0,m1), m3);
97 .select(m1,0), m3);
99 VERIFY_IS_APPROX( (m1.cwise().abs().cwise()<mid).select(0,m1), m3);
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dvariance_media.asm47 sel r7, r6, lr ; select bytes with positive difference
50 sel r6, r9, lr ; select bytes with negative difference
71 sel r7, r6, lr ; select bytes with positive difference
73 sel r6, r9, lr ; select bytes with negative difference
95 sel r7, r6, lr ; select bytes with positive difference
97 sel r6, r9, lr ; select bytes with negative difference
120 sel r7, r6, lr ; select bytes with positive difference
123 sel r6, r9, lr ; select bytes with negative difference
180 sel r10, r8, lr ; select bytes with positive difference
183 sel r8, r9, lr ; select byte
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
H A DPercentile.java87 /** Minimum size under which we use a simple insertion sort rather than Hoare's select. */
288 return select(work, pivotsHeap, 0);
291 return select(work, pivotsHeap, length - 1);
293 double lower = select(work, pivotsHeap, intPos - 1);
294 double upper = select(work, pivotsHeap, intPos);
309 private double select(final double[] work, final int[] pivotsHeap, final int k) { method in class:Percentile
323 // select a pivot and partition work array around it
/external/eigen/Eigen/src/Core/
H A DSelect.h25 * It is the return type of DenseBase::select() and most of the time this is the only way it is used.
27 * \sa DenseBase::select(const DenseBase<ThenDerived>&, const DenseBase<ElseDerived>&) const
124 DenseBase<Derived>::select(const DenseBase<ThenDerived>& thenMatrix, function in class:Eigen::DenseBase
130 /** Version of DenseBase::select(const DenseBase&, const DenseBase&) with
133 * \sa DenseBase::select(const DenseBase<ThenDerived>&, const DenseBase<ElseDerived>&) const, class Select
138 DenseBase<Derived>::select(const DenseBase<ThenDerived>& thenMatrix, function in class:Eigen::DenseBase
145 /** Version of DenseBase::select(const DenseBase&, const DenseBase&) with
148 * \sa DenseBase::select(const DenseBase<ThenDerived>&, const DenseBase<ElseDerived>&) const, class Select
153 DenseBase<Derived>::select(const typename ElseDerived::Scalar& thenScalar, function in class:Eigen::DenseBase
/external/libvncserver/libvncclient/
H A Dlisten.c100 r = select(max(listenSocket, listen6Socket)+1, &fds, NULL, NULL, NULL);
196 r = select(max(client->listenSock, client->listen6Sock) +1, &fds, NULL, NULL, NULL);
198 r = select(max(client->listenSock, client->listen6Sock) +1, &fds, NULL, NULL, &to);
/external/openssh/openbsd-compat/
H A Dbsd-misc.c22 # include <sys/select.h>
147 rc = select(0, NULL, NULL, NULL, &time2wait);
204 (void)select(0, 0, 0, 0, &sleepytime);

Completed in 1505 milliseconds

1234567891011>>