HomeSort by relevance Sort by last modified time
    Searched defs:hc (Results 1 - 25 of 29) sorted by null

1 2

  /external/eigen/doc/snippets/
HessenbergDecomposition_packedMatrix.cpp 8 Vector3d hc = hessOfA.householderCoefficients(); variable
9 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
Tridiagonalization_householderCoefficients.cpp 5 Vector3d hc = triOfA.householderCoefficients(); variable
6 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
  /external/chromium_org/mojo/public/c/system/tests/
core_unittest.cc 153 MojoHandle hp, hc; local
161 hc = MOJO_HANDLE_INVALID;
162 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateDataPipe(NULL, &hp, &hc));
164 EXPECT_NE(hc, MOJO_HANDLE_INVALID);
166 // The consumer |hc| shouldn't be readable.
168 MojoWait(hc, MOJO_HANDLE_SIGNAL_READABLE, 0));
173 // Try to read from |hc|.
176 MojoReadData(hc, buffer, &buffer_size, MOJO_READ_DATA_FLAG_NONE));
178 // Try to begin a two-phase read from |hc|.
182 hc, &read_pointer, &buffer_size, MOJO_READ_DATA_FLAG_NONE))
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
ECFieldFpTest.java 117 int hc = f.hashCode(); local
118 assertTrue(hc == f.hashCode() &&
119 hc == f.hashCode() &&
120 hc == f.hashCode() &&
121 hc == f.hashCode() &&
122 hc == f.hashCode() &&
123 hc == f.hashCode() &&
124 hc == f.hashCode() &&
125 hc == f.hashCode());
ECFieldF2mTest.java 291 int hc = f.hashCode(); local
292 assertTrue(hc == f.hashCode() &&
293 hc == f.hashCode() &&
294 hc == f.hashCode() &&
295 hc == f.hashCode() &&
296 hc == f.hashCode() &&
297 hc == f.hashCode() &&
298 hc == f.hashCode() &&
299 hc == f.hashCode());
310 int hc = f.hashCode() local
    [all...]
ECPointTest.java 208 int hc = f.hashCode(); local
209 assertTrue(hc == f.hashCode() &&
210 hc == f.hashCode() &&
211 hc == f.hashCode() &&
212 hc == f.hashCode() &&
213 hc == f.hashCode() &&
214 hc == f.hashCode() &&
215 hc == f.hashCode() &&
216 hc == f.hashCode());
220 hc = ECPoint.POINT_INFINITY.hashCode()
    [all...]
EllipticCurveTest.java 621 int hc = 0; local
625 hc = f.hashCode();
626 assertTrue(hc == f.hashCode() && hc == f.hashCode()
627 && hc == f.hashCode() && hc == f.hashCode()
628 && hc == f.hashCode() && hc == f.hashCode()
629 && hc == f.hashCode() && hc == f.hashCode())
    [all...]
  /external/apache-http/src/org/apache/http/conn/routing/
HttpRoute.java 387 int hc = this.targetHost.hashCode(); local
390 hc ^= localAddress.hashCode();
392 hc ^= proxyChain.length;
393 for (HttpHost aProxyChain : proxyChain) hc ^= aProxyChain.hashCode();
397 hc ^= 0x11111111;
399 hc ^= this.tunnelled.hashCode();
400 hc ^= this.layered.hashCode();
402 return hc;
RouteTracker.java 378 int hc = this.targetHost.hashCode(); local
381 hc ^= localAddress.hashCode();
383 hc ^= proxyChain.length;
385 hc ^= proxyChain[i].hashCode();
389 hc ^= 0x11111111;
391 hc ^= 0x22222222;
393 hc ^= this.tunnelled.hashCode();
394 hc ^= this.layered.hashCode();
396 return hc;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Arrays.java 316 int hc = i + 1; local
320 hc *= 257;
321 hc ^= data[i];
324 return hc;
335 int hc = i + 1; local
339 hc *= 257;
340 hc ^= data[i];
343 return hc;
348 int hc = 0; local
352 hc = hc * 257 + hashCode(ints[i])
366 int hc = i + 1; local
379 int hc = 0; local
391 int hc = 0; local
409 int hc = i + 1; local
428 int hc = i + 1; local
    [all...]
  /external/eigen/test/
householder.cpp 87 HCoeffsVectorType hc = qr.hCoeffs().conjugate(); local
88 HouseholderSequence<MatrixType, HCoeffsVectorType> hseq(m2, hc);
89 hseq.setLength(hc.size()).setShift(shift);
90 VERIFY(hseq.length() == hc.size());
119 HouseholderSequence<TMatrixType, HCoeffsVectorType, OnTheRight> rhseq(tm2, hc);
120 rhseq.setLength(hc.size()).setShift(shift);
  /external/libcxx/src/
debug.cpp 123 size_t hc = hash<const void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_);
124 __c_node* c = __cbeg_[hc];
168 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
169 __c_node* p = __cbeg_[hc];
170 __c_node* r = __cbeg_[hc] =
172 if (__cbeg_[hc] == nullptr)
221 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
222 __c_node* p = __cbeg_[hc];
248 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
249 __c_node* p = __cbeg_[hc];
270 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
293 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
395 size_t hc = hash<void*>()(c1) % static_cast<size_t>(__cend_ - __cbeg_); local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 777 int hc = 13 * sort; local
780 hc = 17 * (hc + buf[i]);
783 return hc;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
KeyFactory.java 204 int hc = (constant != 0) ? constant : PRIMES[(int)(Math.abs(seed) % PRIMES.length)]; local
206 e.push(hc);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 340 int hc = (null == c) ? 0 : ~c.hashCode(); local
348 hc ^= p.getXCoord().hashCode() * 17;
349 hc ^= p.getYCoord().hashCode() * 257;
352 return hc;
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
sslcon.c 1739 int hc; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
smpdtfmt.cpp 1289 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
2631 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
2679 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
3065 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
    [all...]
  /external/icu/icu4c/source/i18n/
smpdtfmt.cpp 1316 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
2658 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
2706 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
3112 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
    [all...]
  /external/chromium_org/third_party/dom_distiller_js/package/js/
domdistiller.js 200 function Wf(a){var b;return b=a,xi(b)?b.hC():fh(b)}
334 function hc(a){var b,c;c=false;for(b=0;b<a.b.c&&!c;++b){c=ti(ls(a.b,b),3).J()}return c}
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar 
org.apache.lucene_1.9.1.v20100518-1140.jar 
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar 
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 970 milliseconds

1 2