/external/syzkaller/syz-manager/ |
D | hub.go | 18 hc := &HubConnector{ 28 hc.needMoreRepros = mgr.needMoreRepros 30 hc.loop() 52 func (hc *HubConnector) loop() { 56 corpus, repros := hc.mgr.getMinimizedCorpus() 57 hc.newRepros = append(hc.newRepros, repros...) 60 if hub, err = hc.connect(corpus); err != nil { 61 log.Logf(0, "failed to connect to hub at %v: %v", hc.cfg.HubAddr, err) 64 log.Logf(0, "connected to hub at %v, corpus %v", hc.cfg.HubAddr, len(corpus)) 66 if err := hc.sync(hub, corpus); err != nil { [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/ |
D | Arrays.java | 466 int hc = i + 1; in hashCode() local 470 hc *= 257; in hashCode() 471 hc ^= data[i]; in hashCode() 474 return hc; in hashCode() 485 int hc = i + 1; in hashCode() local 489 hc *= 257; in hashCode() 490 hc ^= data[off + i]; in hashCode() 493 return hc; in hashCode() 504 int hc = i + 1; in hashCode() local 508 hc *= 257; in hashCode() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Arrays.java | 464 int hc = i + 1; in hashCode() local 468 hc *= 257; in hashCode() 469 hc ^= data[i]; in hashCode() 472 return hc; in hashCode() 483 int hc = i + 1; in hashCode() local 487 hc *= 257; in hashCode() 488 hc ^= data[off + i]; in hashCode() 491 return hc; in hashCode() 502 int hc = i + 1; in hashCode() local 506 hc *= 257; in hashCode() [all …]
|
/external/boringssl/src/ssl/test/runner/ |
D | conn.go | 193 func (hc *halfConn) setErrorLocked(err error) error { 194 hc.err = err 198 func (hc *halfConn) error() error { 202 err := hc.err 208 func (hc *halfConn) prepareCipherSpec(version uint16, cipher interface{}, mac macFunction) { 209 hc.wireVersion = version 210 protocolVersion, ok := wireToVersion(version, hc.isDTLS) 214 hc.version = protocolVersion 215 hc.nextCipher = cipher 216 hc.nextMac = mac [all …]
|
/external/openssh/ |
D | umac.c | 533 static void nh_transform(nh_ctx *hc, const UINT8 *buf, UINT32 nbytes) in nh_transform() argument 542 key = hc->nh_key + hc->bytes_hashed; in nh_transform() 543 nh_aux(key, buf, hc->state, nbytes); in nh_transform() 578 static void nh_reset(nh_ctx *hc) in nh_reset() argument 581 hc->bytes_hashed = 0; in nh_reset() 582 hc->next_data_empty = 0; in nh_reset() 583 hc->state[0] = 0; in nh_reset() 585 hc->state[1] = 0; in nh_reset() 588 hc->state[2] = 0; in nh_reset() 591 hc->state[3] = 0; in nh_reset() [all …]
|
/external/vulkan-validation-layers/layers/ |
D | hash_vk_types.h | 52 hash_util::HashCombiner hc; 53 hc << value.binding << value.descriptorType << value.descriptorCount << value.stageFlags; 56 hc << value.pImmutableSamplers[samp]; 59 return hc.Value(); 73 hash_util::HashCombiner hc; 74 return (hc << value.stageFlags << value.offset << value.size).Value(); 95 hash_util::HashCombiner hc; 96 …hc << value.aspectMask << value.baseMipLevel << value.levelCount << value.baseArrayLayer << value.… 97 return hc.Value();
|
/external/pdfium/third_party/libopenjpeg20/ |
D | t1_generate_luts.c | 121 int hc, vc, n; in t1_init_ctxno_sc() local 124 hc = opj_int_min(((f & (T1_LUT_SIG_E | T1_LUT_SGN_E)) == in t1_init_ctxno_sc() 138 if (hc < 0) { in t1_init_ctxno_sc() 139 hc = -hc; in t1_init_ctxno_sc() 142 if (!hc) { in t1_init_ctxno_sc() 150 } else if (hc == 1) { in t1_init_ctxno_sc() 165 int hc, vc, n; in t1_init_spb() local 167 hc = opj_int_min(((f & (T1_LUT_SIG_E | T1_LUT_SGN_E)) == in t1_init_spb() 181 if (!hc && !vc) { in t1_init_spb() 184 n = (!(hc > 0 || (!hc && vc > 0))); in t1_init_spb()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CurrencyMetaInfo.java | 337 int hc = 0; in hashCode() local 339 hc = region.hashCode(); in hashCode() 342 hc = hc * 31 + currency.hashCode(); in hashCode() 344 hc = hc * 31 + (int) from; in hashCode() 345 hc = hc * 31 + (int) (from >>> 32); in hashCode() 346 hc = hc * 31 + (int) to; in hashCode() 347 hc = hc * 31 + (int) (to >>> 32); in hashCode() 348 hc = hc * 31 + (tenderOnly ? 1 : 0); in hashCode() 349 return hc; in hashCode()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | CurrencyMetaInfo.java | 313 int hc = 0; in hashCode() local 315 hc = region.hashCode(); in hashCode() 318 hc = hc * 31 + currency.hashCode(); in hashCode() 320 hc = hc * 31 + (int) from; in hashCode() 321 hc = hc * 31 + (int) (from >>> 32); in hashCode() 322 hc = hc * 31 + (int) to; in hashCode() 323 hc = hc * 31 + (int) (to >>> 32); in hashCode() 324 hc = hc * 31 + (tenderOnly ? 1 : 0); in hashCode() 325 return hc; in hashCode()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
D | ECDomainParameters.java | 116 int hc = curve.hashCode(); in hashCode() local 117 hc *= 37; in hashCode() 118 hc ^= G.hashCode(); in hashCode() 119 hc *= 37; in hashCode() 120 hc ^= n.hashCode(); in hashCode() 121 hc *= 37; in hashCode() 122 hc ^= h.hashCode(); in hashCode() 123 return hc; in hashCode()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/params/ |
D | ECDomainParameters.java | 120 int hc = curve.hashCode(); in hashCode() local 121 hc *= 37; in hashCode() 122 hc ^= G.hashCode(); in hashCode() 123 hc *= 37; in hashCode() 124 hc ^= n.hashCode(); in hashCode() 125 hc *= 37; in hashCode() 126 hc ^= h.hashCode(); in hashCode() 127 return hc; in hashCode()
|
/external/puffin/src/ |
D | huffman_table.h | 81 auto hc = code_hcodes_[bits]; in CodeAlphabet() local 82 TEST_AND_RETURN_FALSE(hc & 0x8000); in CodeAlphabet() 83 *alphabet = hc & 0x7FFF; in CodeAlphabet() 96 auto hc = lit_len_hcodes_[bits]; in LitLenAlphabet() local 97 TEST_AND_RETURN_FALSE(hc & 0x8000); in LitLenAlphabet() 98 *alphabet = hc & 0x7FFF; in LitLenAlphabet() 113 auto hc = distance_hcodes_[bits]; in DistanceAlphabet() local 114 TEST_AND_RETURN_FALSE(hc & 0x8000); in DistanceAlphabet() 115 *alphabet = hc & 0x7FFF; in DistanceAlphabet()
|
/external/libchrome/mojo/public/c/system/tests/ |
D | core_api_unittest.cc | 150 MojoHandle hp, hc; in TEST() local 158 hc = MOJO_HANDLE_INVALID; in TEST() 159 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateDataPipe(nullptr, &hp, &hc)); in TEST() 161 EXPECT_NE(hc, MOJO_HANDLE_INVALID); in TEST() 165 EXPECT_EQ(MOJO_RESULT_OK, MojoQueryHandleSignalsState(hc, &state)); in TEST() 182 MojoReadData(hc, nullptr, buffer, &buffer_size)); in TEST() 187 MojoBeginReadData(hc, nullptr, &read_pointer, &buffer_size)); in TEST() 199 Handle consumer_handle(hc); in TEST() 224 EXPECT_EQ(MOJO_RESULT_OK, MojoReadData(hc, nullptr, buffer, &buffer_size)); in TEST() 230 EXPECT_EQ(MOJO_RESULT_OK, mojo::Wait(mojo::Handle(hc), in TEST() [all …]
|
/external/llvm/test/CodeGen/Thumb2/ |
D | v8_IT_5.ll | 16 %struct.hc = type { i32, i32, i32, i32 } 32 %call150 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34865152) optsize 36 %call168 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34078720) optsize 46 declare hidden fastcc %struct.hc* @foo(%struct.hc* nocapture, i32) nounwind optsize
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Thumb2/ |
D | v8_IT_5.ll | 17 %struct.hc = type { i32, i32, i32, i32 } 33 %call150 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34865152) optsize 37 %call168 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34078720) optsize 47 declare hidden fastcc %struct.hc* @foo(%struct.hc* nocapture, i32) nounwind optsize
|
/external/libcxx/src/ |
D | debug.cpp | 192 size_t hc = hash<const void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __insert_ic() local 193 __c_node* c = __cbeg_[hc]; in __insert_ic() 236 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __insert_c() local 237 __c_node* p = __cbeg_[hc]; in __insert_c() 238 __c_node* r = __cbeg_[hc] = in __insert_c() 240 if (__cbeg_[hc] == nullptr) in __insert_c() 290 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __invalidate_all() local 291 __c_node* p = __cbeg_[hc]; in __invalidate_all() 321 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __find_c_and_lock() local 322 __c_node* p = __cbeg_[hc]; in __find_c_and_lock() [all …]
|
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/ |
D | 2011-04-27-IfCvtBug.ll | 10 %struct.hc = type { i32, i32, i32, i32 } 44 %call150 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34865152) optsize 48 %call168 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34078720) optsize 58 declare hidden fastcc %struct.hc* @foo(%struct.hc* nocapture, i32) nounwind optsize
|
/external/llvm/test/CodeGen/ARM/ |
D | 2011-04-27-IfCvtBug.ll | 10 %struct.hc = type { i32, i32, i32, i32 } 44 %call150 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34865152) optsize 48 %call168 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34078720) optsize 58 declare hidden fastcc %struct.hc* @foo(%struct.hc* nocapture, i32) nounwind optsize
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | 2011-04-27-IfCvtBug.ll | 10 %struct.hc = type { i32, i32, i32, i32 } 44 %call150 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34865152) optsize 48 %call168 = call fastcc %struct.hc* @foo(%struct.hc* undef, i32 34078720) optsize 58 declare hidden fastcc %struct.hc* @foo(%struct.hc* nocapture, i32) nounwind optsize
|
/external/apache-http/src/org/apache/http/conn/routing/ |
D | RouteTracker.java | 378 int hc = this.targetHost.hashCode(); in hashCode() local 381 hc ^= localAddress.hashCode(); in hashCode() 383 hc ^= proxyChain.length; in hashCode() 385 hc ^= proxyChain[i].hashCode(); in hashCode() 389 hc ^= 0x11111111; in hashCode() 391 hc ^= 0x22222222; in hashCode() 393 hc ^= this.tunnelled.hashCode(); in hashCode() 394 hc ^= this.layered.hashCode(); in hashCode() 396 return hc; in hashCode()
|
D | HttpRoute.java | 387 int hc = this.targetHost.hashCode(); in hashCode() local 390 hc ^= localAddress.hashCode(); in hashCode() 392 hc ^= proxyChain.length; in hashCode() 393 for (HttpHost aProxyChain : proxyChain) hc ^= aProxyChain.hashCode(); in hashCode() 397 hc ^= 0x11111111; in hashCode() 399 hc ^= this.tunnelled.hashCode(); in hashCode() 400 hc ^= this.layered.hashCode(); in hashCode() 402 return hc; in hashCode()
|
/external/guava/guava/src/com/google/common/cache/ |
D | Striped64.java | 185 final void retryUpdate(long x, int[] hc, boolean wasUncontended) { in retryUpdate() argument 187 if (hc == null) { in retryUpdate() 188 threadHashCode.set(hc = new int[1]); // Initialize randomly in retryUpdate() 190 h = hc[0] = (r == 0) ? 1 : r; in retryUpdate() 193 h = hc[0]; in retryUpdate() 245 hc[0] = h; // Record index for next time in retryUpdate()
|
/external/syzkaller/vendor/golang.org/x/oauth2/internal/ |
D | transport.go | 37 if hc, ok := ctx.Value(HTTPClient).(*http.Client); ok { 38 return hc, nil 54 hc, err := ContextClient(ctx) 59 return hc.Transport
|
/external/squashfs-tools/squashfs-tools/ |
D | lz4_wrapper.c | 34 static int hc = 0; variable 54 hc = 1; in lz4_options() 82 comp_opts.flags = hc ? LZ4_HC : 0; in lz4_dump_options() 131 hc = 1; in lz4_extract_options() 228 if(hc) in lz4_compress()
|
/external/syzkaller/vendor/google.golang.org/api/transport/http/ |
D | dial.go | 47 hc := &http.Client{ 56 return hc, o.Endpoint, nil 62 hc := &http.Client{ 71 return hc, o.Endpoint, nil
|