Searched defs:select (Results 1 - 25 of 75) sorted by relevance

123

/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/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/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/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/chromium-trace/
H A Dsystrace-legacy.py13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
145 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DRecordingProxySelector.java35 @Override public List<Proxy> select(URI uri) { method in class:RecordingProxySelector
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dcgiapp.py12 import select namespace
14 select = None variable
99 if select and sys.platform != 'win32':
222 rlist, wlist, xlist = select.select(read_set, write_set, [])
225 # When select has indicated that the file is writable,
/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/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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCurrencyPluralInfo.java242 String select(double number) { method in class:CurrencyPluralInfo
243 return pluralRules.select(number);
253 String select(PluralRules.FixedDecimal numberInfo) { method in class:CurrencyPluralInfo
254 return pluralRules.select(numberInfo);
H A DPluralFormat.java513 keyword=selector.select(context, number-offset);
551 public String select(Object context, double number); method in interface:PluralFormat.PluralSelector
558 public String select(Object context, double number) { method in class:PluralFormat.PluralSelectorAdapter
561 return pluralRules.select(dec);
/external/clang/lib/Driver/
H A DMultilib.cpp245 bool MultilibSet::select(const Multilib::flags_list &Flags, Multilib &M) const { function in class:MultilibSet
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DComponentsView.java89 public boolean select(Viewer v, Object parentElement, Object element) {
410 public void select(ComponentResultsElement componentResults, String configName, String scenarioName, String buildName) { method in class:ComponentsView
H A DConfigTab.java161 // Listen to mouse events to select the corresponding build in the components view
170 componentsView.select(ConfigTab.this.results, ConfigTab.this.configName, (String) ConfigTab.this.firstLine.get(cellPosition.x), tabTable.getItem(cellPosition.y).getText());
204 this.table.select(0);
572 void select(BuildResultsElement buildResultsElement) { method in class:ConfigTab
579 this.table.select(i);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCCombo3.java247 select(index);
455 public void select(int index) { method in class:CCombo3
466 m_table.select(index);
484 select(index);
489 select(-1);
H A DCTableCombo.java391 select(Math.max(oldIndex - 1, 0));
393 select(Math.min(oldIndex + 1, getItemCount() - 1));
419 select(Math.max(index, 0));
588 public void select(int index) { method in class:CTableCombo
601 m_table.select(index);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
H A DSelectorKernel.java412 protected void select() throws IOException method in class:SelectorKernel.SelectorThread
414 selector.select();
459 select();
/external/messageformat/java/com/ibm/icu/simple/
H A DPluralFormat.java350 keyword=selector.select(context, number-offset);
388 public String select(Object context, double number); method in interface:PluralFormat.PluralSelector
395 public String select(Object context, double number) { method in class:PluralFormat.PluralSelectorAdapter
398 return pluralRules.select(dec);
/external/openssh/
H A Dsmult_curve25519_ref.c110 static void select(unsigned int p[64],unsigned int q[64],const unsigned int r[64],const unsigned int s[64],unsigned int b) function
155 select(xzmb,xzm1b,xzm,xzm1,b);
174 select(xzm,xzm1,xznb,xzn1b,b);
/external/vboot_reference/firmware/stub/
H A Dvboot_api_stub.c127 VbError_t VbExEcGetExpectedRW(int devidx, enum VbSelectFirmware_t select, argument
136 VbError_t VbExEcGetExpectedRWHash(int devidx, enum VbSelectFirmware_t select, argument
/external/vboot_reference/tests/
H A Dvboot_api_kernel3_tests.c150 VbError_t VbExEcGetExpectedRW(int devidx, enum VbSelectFirmware_t select, argument
159 VbError_t VbExEcGetExpectedRWHash(int devidx, enum VbSelectFirmware_t select, argument
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dp2p-nfc.py227 summary("Handover select received")
309 print "Could not get handover select carrier record from wpa_supplicant"
311 print "Handover select carrier record from wpa_supplicant:"
339 print "Could not get handover select carrier record from wpa_supplicant"
341 print "Handover select carrier record from wpa_supplicant:"
355 print "Handover select:"
362 summary("Sending handover select")
378 import sys, tty, termios, select namespace
386 [i, o, e] = select.select([f
[all...]
/external/eigen/unsupported/Eigen/src/Eigenvalues/
H A DArpackSelfAdjointEigenSolver.h596 int *select = new int[ncv]; local
602 internal::arpack_wrapper<Scalar, RealScalar>::seupd(&rvec, howmny, select, m_eivalues.data(), v, &ldv,
631 delete select;
655 extern "C" void sseupd_(int *rvec, char *All, int *select, float *d,
670 extern "C" void dseupd_(int *rvec, char *All, int *select, double *d,
690 static inline void seupd(int *rvec, char *All, int *select, Scalar *d, argument
711 static inline void seupd(int *rvec, char *All, int *select, float *d, argument
718 sseupd_(rvec, All, select, d, z, ldz, sigma, bmat, n, which, nev, tol, resid, ncv, v, ldv, iparam, ipntr,
733 static inline void seupd(int *rvec, char *All, int *select, double *d, argument
740 dseupd_(rvec, All, select,
[all...]

Completed in 859 milliseconds

123