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

1 2 3 4 5 6 7 8 9

  /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;
  /libcore/ojluni/src/main/java/sun/net/www/http/
KeepAliveStreamCleaner.java 122 HttpClient hc = kace.getHttpClient(); local
124 if (hc != null && !hc.isInKeepAliveCache()) {
125 int oldTimeout = hc.getReadTimeout();
126 hc.setReadTimeout(TIMEOUT);
140 hc.setReadTimeout(oldTimeout);
141 hc.finished();
143 hc.closeServer();
146 hc.closeServer();
ChunkedInputStream.java 55 private HttpClient hc; field in class:ChunkedInputStream
219 hc.finished();
222 hc.closeServer();
620 * @param hc the HttpClient
624 public ChunkedInputStream(InputStream in, HttpClient hc, MessageHeader responses) throws IOException {
629 this.hc = hc;
KeepAliveStream.java 43 HttpClient hc; field in class:KeepAliveStream
56 public KeepAliveStream(InputStream is, ProgressSource pi, long expected, HttpClient hc) {
58 this.hc = hc;
94 queueForCleanup(new KeepAliveCleanerEntry(this, hc));
96 hc.closeServer();
100 hc.finished();
110 hc = null;
205 hc = null;
214 HttpClient hc; field in class:KeepAliveCleanerEntry
    [all...]
KeepAliveCache.java 198 HttpClient h = e.hc;
257 HttpClient hc = null; local
262 e.hc.closeServer();
264 hc = e.hc;
266 } while ((hc== null) && (!empty()));
267 return hc;
340 HttpClient hc; field in class:KeepAliveEntry
343 KeepAliveEntry(HttpClient hc, long idleStartTime) {
344 this.hc = hc
    [all...]
  /external/squashfs-tools/squashfs-tools/
lz4_wrapper.c 34 static int hc = 0; variable
54 hc = 1;
82 comp_opts.flags = hc ? LZ4_HC : 0;
131 hc = 1;
228 if(hc)
  /external/clang/test/Sema/
attr-flag-enum.c 36 hc = ~0x1u, // expected-warning {{enumeration value 'hc' is out of range}} enumerator in enum:flag4
  /external/pdfium/third_party/libopenjpeg20/
t1_generate_luts.c 114 int hc, vc, n; local
117 hc = opj_int_min(((f & (T1_SIG_E | T1_SGN_E)) ==
131 if (hc < 0) {
132 hc = -hc;
135 if (!hc) {
142 } else if (hc == 1) {
155 int hc, vc, n; local
157 hc = opj_int_min(((f & (T1_SIG_E | T1_SGN_E)) ==
171 if (!hc && !vc
    [all...]
  /libcore/luni/src/test/java/tests/security/spec/
ECFieldFpTest.java 110 int hc = f.hashCode(); local
111 assertTrue(hc == f.hashCode() &&
112 hc == f.hashCode() &&
113 hc == f.hashCode() &&
114 hc == f.hashCode() &&
115 hc == f.hashCode() &&
116 hc == f.hashCode() &&
117 hc == f.hashCode() &&
118 hc == f.hashCode());
ECPointTest.java 201 int hc = f.hashCode(); local
202 assertTrue(hc == f.hashCode() &&
203 hc == f.hashCode() &&
204 hc == f.hashCode() &&
205 hc == f.hashCode() &&
206 hc == f.hashCode() &&
207 hc == f.hashCode() &&
208 hc == f.hashCode() &&
209 hc == f.hashCode());
213 hc = ECPoint.POINT_INFINITY.hashCode()
    [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/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/guava/guava/src/com/google/common/cache/
LongAdder.java 70 Cell[] as; long b, v; int[] hc; Cell a; int n; local
73 if ((hc = threadHashCode.get()) == null ||
75 (a = as[(n - 1) & hc[0]]) == null ||
77 retryUpdate(x, hc, uncontended);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
Period.java 283 int hc = (timeLimit << 1) | (inFuture ? 1 : 0); local
285 hc = (hc << 2) ^ counts[i];
287 return hc;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
Period.java 281 int hc = (timeLimit << 1) | (inFuture ? 1 : 0); local
283 hc = (hc << 2) ^ counts[i];
285 return hc;
  /frameworks/base/services/core/java/com/android/server/
Watchdog.java 320 HandlerChecker hc = mHandlerCheckers.get(i); local
321 state = Math.max(state, hc.getCompletionStateLocked());
329 HandlerChecker hc = mHandlerCheckers.get(i); local
330 if (hc.isOverdueLocked()) {
331 checkers.add(hc);
361 HandlerChecker hc = mHandlerCheckers.get(i); local
362 hc.scheduleCheckLocked();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Arrays.java 317 int hc = i + 1; local
321 hc *= 257;
322 hc ^= data[i];
325 return hc;
336 int hc = i + 1; local
340 hc *= 257;
341 hc ^= data[off + i];
344 return hc;
355 int hc = i + 1; local
359 hc *= 257
368 int hc = 0; local
386 int hc = i + 1; local
405 int hc = i + 1; local
424 int hc = i + 1; local
446 int hc = i + 1; local
462 int hc = 0; local
474 int hc = 0; local
492 int hc = i + 1; local
511 int hc = i + 1; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CurrencyMetaInfo.java 309 int hc = 0; local
311 hc = region.hashCode();
314 hc = hc * 31 + currency.hashCode();
316 hc = hc * 31 + (int) from;
317 hc = hc * 31 + (int) (from >>> 32);
318 hc = hc * 31 + (int) to
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CurrencyMetaInfo.java 334 int hc = 0; local
336 hc = region.hashCode();
339 hc = hc * 31 + currency.hashCode();
341 hc = hc * 31 + (int) from;
342 hc = hc * 31 + (int) (from >>> 32);
343 hc = hc * 31 + (int) to
    [all...]

Completed in 1570 milliseconds

1 2 3 4 5 6 7 8 9