Searched refs:hc (Results 1 - 25 of 63) sorted by relevance

123

/external/eigen/doc/snippets/
H A DTridiagonalization_householderCoefficients.cpp5 Vector3d hc = triOfA.householderCoefficients(); variable
6 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
H A DHessenbergDecomposition_packedMatrix.cpp8 Vector3d hc = hessOfA.householderCoefficients(); variable
9 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DECDomainParameters.java95 int hc = curve.hashCode();
96 hc *= 37;
97 hc ^= G.hashCode();
98 hc *= 37;
99 hc ^= n.hashCode();
100 hc *= 37;
101 hc ^= h.hashCode();
102 return hc;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCurrencyMetaInfo.java312 int hc = 0;
314 hc = region.hashCode();
317 hc = hc * 31 + currency.hashCode();
319 hc = hc * 31 + (int) from;
320 hc = hc * 31 + (int) (from >>> 32);
321 hc = hc * 3
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java385 int hc = i + 1;
389 hc *= 257;
390 hc ^= data[i];
393 return hc;
404 int hc = i + 1;
408 hc *= 257;
409 hc ^= data[off + i];
412 return hc;
423 int hc = i + 1;
427 hc *
[all...]
/external/pdfium/third_party/libopenjpeg20/
H A Dt1_generate_luts.c114 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
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCurrencyMetaInfo.java337 int hc = 0;
339 hc = region.hashCode();
342 hc = hc * 31 + currency.hashCode();
344 hc = hc * 31 + (int) from;
345 hc = hc * 31 + (int) (from >>> 32);
346 hc = hc * 3
[all...]
/external/openssh/
H A Dumac.c539 static void nh_transform(nh_ctx *hc, const UINT8 *buf, UINT32 nbytes) argument
541 * as argument "hc" the current hash context and a buffer which must be a
548 key = hc->nh_key + hc->bytes_hashed;
549 nh_aux(key, buf, hc->state, nbytes);
584 static void nh_reset(nh_ctx *hc) argument
587 hc->bytes_hashed = 0;
588 hc->next_data_empty = 0;
589 hc->state[0] = 0;
591 hc
604 nh_init(nh_ctx *hc, aes_int_key prf_key) argument
614 nh_update(nh_ctx *hc, const UINT8 *buf, UINT32 nbytes) argument
669 nh_final(nh_ctx *hc, UINT8 *result) argument
709 nh(nh_ctx *hc, const UINT8 *buf, UINT32 padded_len, UINT32 unpadded_len, UINT8 *result) argument
834 poly_hash(uhash_ctx_t hc, UINT32 data_in[]) argument
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dlz4_wrapper.c34 static int hc = 0; variable
54 hc = 1;
82 comp_opts.flags = hc ? LZ4_HC : 0;
131 hc = 1;
228 if(hc)
/external/libmojo/mojo/public/c/system/tests/
H A Dcore_unittest.cc176 MojoHandle hp, hc; local
184 hc = MOJO_HANDLE_INVALID;
185 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateDataPipe(nullptr, &hp, &hc));
187 EXPECT_NE(hc, MOJO_HANDLE_INVALID);
189 // The consumer |hc| shouldn't be readable.
192 MojoWait(hc, MOJO_HANDLE_SIGNAL_READABLE, 0, &state));
206 // Try to read from |hc|.
209 MojoReadData(hc, buffer, &buffer_size, MOJO_READ_DATA_FLAG_NONE));
211 // Try to begin a two-phase read from |hc|.
214 MojoBeginReadData(hc,
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DStriped64.java182 * @param hc the hash code holder
185 final void retryUpdate(long x, int[] hc, boolean wasUncontended) { argument
187 if (hc == null) {
188 threadHashCode.set(hc = new int[1]); // Initialize randomly
190 h = hc[0] = (r == 0) ? 1 : r;
193 h = hc[0];
245 hc[0] = h; // Record index for next time
H A DLongAdder.java70 Cell[] as; long b, v; int[] hc; Cell a; int n;
73 if ((hc = threadHashCode.get()) == null ||
75 (a = as[(n - 1) & hc[0]]) == null ||
77 retryUpdate(x, hc, uncontended);
/external/apache-http/src/org/apache/http/conn/routing/
H A DRouteTracker.java378 int hc = this.targetHost.hashCode();
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;
H A DHttpRoute.java387 int hc = this.targetHost.hashCode();
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;
/external/libcxx/src/
H A Ddebug.cpp192 size_t hc = hash<const void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_);
193 __c_node* c = __cbeg_[hc];
236 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
237 __c_node* p = __cbeg_[hc];
238 __c_node* r = __cbeg_[hc] =
240 if (__cbeg_[hc] == nullptr)
290 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
291 __c_node* p = __cbeg_[hc];
321 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
322 __c_node* p = __cbeg_[hc];
347 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
374 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); local
490 size_t hc = hash<void*>()(c1) % static_cast<size_t>(__cend_ - __cbeg_); local
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DPeriod.java287 int hc = (timeLimit << 1) | (inFuture ? 1 : 0);
289 hc = (hc << 2) ^ counts[i];
291 return hc;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriod.java285 int hc = (timeLimit << 1) | (inFuture ? 1 : 0);
287 hc = (hc << 2) ^ counts[i];
289 return hc;
/external/eigen/test/
H A Dhouseholder.cpp87 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/valgrind/massif/
H A Dms_main.c1504 HP_Chunk* hc = VG_(malloc)("ms.main.rb.1", sizeof(HP_Chunk)); local
1505 hc->req_szB = req_szB;
1506 hc->slop_szB = slop_szB;
1507 hc->data = (Addr)p;
1508 hc->where = NULL;
1509 VG_(HT_add_node)(malloc_list, hc);
1514 hc->where = get_XCon( tid, exclude_first_entry );
1516 if (hc->where) {
1524 update_XCon(hc->where, req_szB);
1574 HP_Chunk* hc local
1624 HP_Chunk* hc; local
1787 HP_Chunk* hc = VG_(HT_lookup)( malloc_list, (UWord)p ); local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
H A DHebrewTest.java477 HebrewCalendar hc = new HebrewCalendar (5742, HebrewCalendar.AV, 22);
478 DateFormat df = hc.getDateTimeFormat(DateFormat.FULL, DateFormat.FULL, Locale.getDefault());
479 String dateString = df.format(hc.getTime());
489 hc = new HebrewCalendar (year, month, day);
491 dateString = df.format(hc.getTime());
492 int dayHC = hc.get (HebrewCalendar.DATE);
493 int monthHC = hc.get (HebrewCalendar.MONTH);
494 int yearHC = hc.get (HebrewCalendar.YEAR);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DHebrewTest.java476 HebrewCalendar hc = new HebrewCalendar (5742, HebrewCalendar.AV, 22);
477 DateFormat df = hc.getDateTimeFormat(DateFormat.FULL, DateFormat.FULL, Locale.getDefault());
478 String dateString = df.format(hc.getTime());
488 hc = new HebrewCalendar (year, month, day);
490 dateString = df.format(hc.getTime());
491 int dayHC = hc.get (HebrewCalendar.DATE);
492 int monthHC = hc.get (HebrewCalendar.MONTH);
493 int yearHC = hc.get (HebrewCalendar.YEAR);
/external/clang/test/Sema/
H A Dattr-flag-enum.c36 hc = ~0x1u, // expected-warning {{enumeration value 'hc' is out of range}} enumerator in enum:flag4
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas601 start, hc: Integer;
610 hc := FItems[Result].HashCode;
613 if hc = 0 then
617 if (hc = HashCode) and FComparer.Equals(FItems[Result].Key, Key) then
747 index, hc: Integer;
752 hc := Hash(Key);
753 index := GetBucketIndex(Key, hc);
757 DoAdd(hc, not index, Key, Value);
769 gap, index, hc, bucket: Integer;
772 hc
[all...]
/external/doclava/res/assets/templates/assets/
H A Dprettify.js5 dc="(?:",ec=")",fc="gi",gc="PRE",hc='<!DOCTYPE foo PUBLIC "foo bar">\n<foo />',ic="\t",jc="\n",kc="[^<]+|<!--[\\s\\S]*?--\>|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>|</?[a-zA-Z][^>]*>|<",lc="nocode",mc=' $1="$2$3$4"',S="pln",nc="string",T="lang-",oc="src",U="str",pc="'\"",qc="'\"`",rc="\"'",V="com",sc="lang-regex",tc="(/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/)",uc="kwd",vc="^(?:",wc=")\\b",xc=" \r\n\t\u00a0",yc="lit",zc="typ",Ac="0123456789",Y="pun",Bc="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try alignof align_union asm axiom bool concept concept_map const_cast constexpr decltype dynamic_cast explicit export friend inline late_check mutable namespace nullptr reinterpret_cast static_assert static_cast template typeid typename typeof using virtual wchar_t where break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try boolean byte extends final finally implements import instanceof null native package strictfp super synchronized throws transient as base by checked decimal delegate descending event fixed foreach from group implicit in interface internal into is lock object out override orderby params partial readonly ref sbyte sealed stackalloc string select uint ulong unchecked unsafe ushort var break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try debugger eval export function get null set undefined var with Infinity NaN caller delete die do dump elsif eval exit foreach for goto if import last local my next no our print package redo require sub undef unless until use wantarray while BEGIN END break continue do else for if return while and as assert class def del elif except exec finally from global import in is lambda nonlocal not or pass print raise try with yield False True None break continue do else for if return while alias and begin case class def defined elsif end ensure false in module next nil not or redo rescue retry self super then true undef unless until when yield BEGIN END break continue do else for if return while case done elif esac eval fi function in local set then until ",
18 m);w.push(dc+v(m)+ec)}return new RegExp(w.join(O),d?fc:R)}var ha=r;function Td(a){if(r===ha){var b=document.createElement(gc);b.appendChild(document.createTextNode(hc));ha=!/</.test(b.innerHTML)}if(ha){var c=a.innerHTML;if(Ma(a))c=ga(c);return c}for(var d=[],g=a.firstChild;g;g=g.nextSibling)W(g,d);return d.join(P)}function Ud(a){var b=0;return function(c){for(var d=r,g=0,i=0,m=c.length;i<m;++i){var l=c.charAt(i);switch(l){case ic:d||(d=[]);d.push(c.substring(g,i));var n=a-b%a;for(b+=n;n>=0;n-=" ".length)d.push(" ".substring(0,
/external/curl/lib/
H A Dhostip.c227 hostcache_timestamp_remove(void *datap, void *hc) argument
231 struct Curl_dns_entry *c = (struct Curl_dns_entry *) hc;

Completed in 2517 milliseconds

123