HomeSort by relevance Sort by last modified time
    Searched defs:promote (Results 1 - 4 of 4) sorted by null

  /external/eigen/unsupported/test/
FFTW.cpp 24 complex<long double> promote(complex<T> x) { return complex<long double>(x.real(),x.imag()); } function
26 complex<long double> promote(float x) { return complex<long double>( x); } function
27 complex<long double> promote(double x) { return complex<long double>( x); } function
28 complex<long double> promote(long double x) { return complex<long double>( x); } function
41 acc += promote( timebuf[k1] ) * exp( complex<long double>(0,k1*phinc) );
44 complex<long double> x = promote(fftbuf[k0]);
  /external/chromium/chrome/browser/autocomplete/
history_url_provider.cc 208 // need to promote lower-quality matches that are prefixes of
231 // Try to promote a match as an exact/inline autocomplete match. This also
249 // Failed to promote any URLs for inline autocompletion. Use the What You
404 // Promote as an exact match.
415 // Promote the first match if it's been typed at least n times, where n == 1
514 bool promote = true; local
531 // Try to get info on the search base itself. Promote it to the top if the
534 promote = match.url_info.typed_count() <= 1;
537 // Promote or add the desired URL to the list of matches.
539 matches, promote);
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
Intermediate.cpp 200 // one and promote it to the right type.
207 if (!node->promote(infoSink))
246 if (! node->promote(infoSink))
304 // Do we need to promote the operand?
348 if (! node->promote(infoSink))
805 bool TIntermUnary::promote(TInfoSink&) function in class:TIntermUnary
844 bool TIntermBinary::promote(TInfoSink& infoSink) function in class:TIntermBinary
881 // Promote to conditional
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.cc 44 // If |promote| is true, this also ensures the entry is the first element in
45 // |matches|, moving or adding it to the front as appropriate. When |promote|
50 // |promote| false, in which case we'll do nothing.
56 bool promote) {
62 if (promote)
73 if (promote)
469 // get there we need to promote lower-quality matches that are
498 // Try to promote a match as an exact/inline autocomplete match. This also
516 // Failed to promote any URLs for inline autocompletion. Use the What You
678 // Pass 1: Get the in-memory URL database, and use it to find and promote
885 bool promote = true; local
    [all...]

Completed in 89 milliseconds