Searched defs:hc (Results 1 - 25 of 41) sorted by relevance

12

/external/eigen/doc/snippets/
H A DHessenbergDecomposition_packedMatrix.cpp8 Vector3d hc = hessOfA.householderCoefficients(); variable
9 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
H A DTridiagonalization_householderCoefficients.cpp5 Vector3d hc = triOfA.householderCoefficients(); variable
6 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
/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/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/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/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/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/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
/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;
/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/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_sched.h189 alu_kcache_tracker(sb_hw_class hc) argument
190 : kc(), lines(), max_kcs(hc >= HW_CLASS_EVERGREEN ? 4 : 2) {}
/external/syslinux/com32/lib/jpeg/
H A Dtinyjpeg.c334 unsigned int huffcode[HUFFMAN_BITS_SIZE+1], *hc; local
356 hc = huffcode;
363 *hc++ = code++;
/external/brotli/dec/
H A Ddecode.c1670 const HuffmanCode* hc; local
1683 hc = s->literal_hgroup.htrees[s->context_map_slice[context]];
1686 p1 = (uint8_t)ReadSymbol(hc, br);
1689 if (!SafeReadSymbol(hc, br, &literal)) {
/external/openssh/
H A Dumac.c533 static void nh_transform(nh_ctx *hc, const UINT8 *buf, UINT32 nbytes) argument
535 * as argument "hc" the current hash context and a buffer which must be a
542 key = hc->nh_key + hc->bytes_hashed;
543 nh_aux(key, buf, hc->state, nbytes);
578 static void nh_reset(nh_ctx *hc) argument
581 hc->bytes_hashed = 0;
582 hc->next_data_empty = 0;
583 hc->state[0] = 0;
585 hc
598 nh_init(nh_ctx *hc, aes_int_key prf_key) argument
608 nh_update(nh_ctx *hc, const UINT8 *buf, UINT32 nbytes) argument
663 nh_final(nh_ctx *hc, UINT8 *result) argument
703 nh(nh_ctx *hc, const UINT8 *buf, UINT32 padded_len, UINT32 unpadded_len, UINT8 *result) argument
828 poly_hash(uhash_ctx_t hc, UINT32 data_in[]) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dsmpdtfmt.cpp1507 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
1508 if (hc->isLeapYear(hc->get(UCAL_YEAR,status)) && value == 6 && count >= 3 )
1510 if (!hc->isLeapYear(hc->get(UCAL_YEAR,status)) && value >= 6 && count < 3 )
3080 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
3081 if (!hc->isLeapYear(value) && saveHebrewMonth >= 6) {
3128 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
3131 if (!hc->isLeapYear(hc
3640 HebrewCalendar *hc = (HebrewCalendar*)&cal; local
[all...]
H A Dusearch.cpp86 int hc = (int)( local
91 hc %= MAX_TABLE_SIZE_;
92 if (hc < 0) {
93 hc += MAX_TABLE_SIZE_;
95 return hc;
/external/valgrind/massif/
H A Dms_main.c1126 HP_Chunk* hc = VG_(allocEltPA)(HP_chunk_poolalloc); local
1127 hc->req_szB = req_szB;
1128 hc->slop_szB = slop_szB;
1129 hc->data = (Addr)p;
1130 hc->where = 0;
1131 VG_(HT_add_node)(malloc_list, hc);
1136 hc->where = add_heap_xt( tid, req_szB, exclude_first_entry);
1138 if (VG_(XT_n_ips_sel)(heap_xt, hc->where) > 0) {
1193 HP_Chunk* hc = VG_(HT_remove)(malloc_list, (UWord)p); local
1194 if (NULL == hc) {
1247 HP_Chunk* hc; local
1418 HP_Chunk* hc = VG_(HT_lookup)( malloc_list, (UWord)p ); local
1838 const HP_Chunk* hc = VG_(HT_Next)(malloc_list); local
[all...]
/external/robolectric/v1/lib/main/
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/guice/extensions/persist/lib/
H A Dognl-2.6.7.jar ... context public java.lang.String getEscapedChar (char) String hc int hcl String result char ch public java.lang ...
H A Dcglib-nodep-3.0.jarMETA-INF/MANIFEST.MF LICENSE NOTICE net/sf/cglib/beans/BeanCopier$BeanCopierKey.class BeanCopier. ...
/external/guice/extensions/struts2/lib/
H A Dognl-3.0.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/enhance/ ognl/internal/ ognl/SimpleNode.class SimpleNode ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlogback-core-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/core/ ...
/external/r8/deps/
H A Dcommons-compress-1.12.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/compress/ ...
/external/guice/lib/build/
H A Dcglib-3.1.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/cglib/ net/sf/cglib/beans/ ...
/external/jacoco/
H A Dasm-debug-all-5.0.1.jarMETA-INF/MANIFEST.MF org/ org/objectweb/ org/objectweb/asm/ org/objectweb/asm/AnnotationVisitor.class AnnotationVisitor ...

Completed in 955 milliseconds

12