/third_party/selinux/libsepol/cil/src/ |
D | cil_symtab.c | 152 static void cil_complex_symtab_hash(struct cil_complex_symtab_key *ckey, int mask, intptr_t *hash) in cil_complex_symtab_hash() argument 154 intptr_t sum = ckey->key1 + ckey->key2 + ckey->key3 + ckey->key4; in cil_complex_symtab_hash() 168 struct cil_complex_symtab_key *ckey, in cil_complex_symtab_insert() argument 179 node->ckey = ckey; in cil_complex_symtab_insert() 182 cil_complex_symtab_hash(ckey, symtab->mask, &hash); in cil_complex_symtab_insert() 186 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_insert() 187 ckey->key2 == curr->ckey->key2 && in cil_complex_symtab_insert() 188 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_insert() 189 ckey->key4 == curr->ckey->key4) { in cil_complex_symtab_insert() 194 if (ckey->key1 == curr->ckey->key1 && in cil_complex_symtab_insert() [all …]
|
D | cil_symtab.h | 61 struct cil_complex_symtab_key *ckey; member 85 …_insert(struct cil_complex_symtab *symtab, struct cil_complex_symtab_key *ckey, struct cil_complex… 86 …_search(struct cil_complex_symtab *symtab, struct cil_complex_symtab_key *ckey, struct cil_complex…
|
/third_party/iowow/src/kv/tests/ |
D | iwkv_test6.c | 57 IWKV_val ckey; in iwkv_test6_1_impl() local 60 rc = iwkv_cursor_key(cur, &ckey); in iwkv_test6_1_impl() 63 CU_ASSERT_TRUE_FATAL(ckey.size == 8); in iwkv_test6_1_impl() 64 memcpy(&llv, ckey.data, sizeof(llv)); in iwkv_test6_1_impl() 65 CU_ASSERT_TRUE_FATAL(ckey.compound == j && llv == i); in iwkv_test6_1_impl() 66 iwkv_val_dispose(&ckey); in iwkv_test6_1_impl()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/ |
D | SDL_blit_1.c | 294 Uint32 ckey = info->colorkey; in Blit1to1Key() local 301 if ( *src != ckey ) { in Blit1to1Key() 317 if ( *src != ckey ) { in Blit1to1Key() 341 Uint32 ckey = info->colorkey; in Blit1to2Key() local 350 if ( *src != ckey ) { in Blit1to2Key() 373 Uint32 ckey = info->colorkey; in Blit1to3Key() local 380 if ( *src != ckey ) { in Blit1to3Key() 406 Uint32 ckey = info->colorkey; in Blit1to4Key() local 415 if ( *src != ckey ) { in Blit1to4Key() 479 Uint32 ckey = info->colorkey; in Blit1toNAlphaKey() local [all …]
|
D | SDL_blit_0.c | 205 Uint32 ckey = info->colorkey; in BlitBto1Key() local 220 if (bit != ckey) { in BlitBto1Key() 237 if (bit != ckey) { in BlitBto1Key() 258 Uint32 ckey = info->colorkey; in BlitBto2Key() local 273 if (bit != ckey) { in BlitBto2Key() 293 Uint32 ckey = info->colorkey; in BlitBto3Key() local 307 if (bit != ckey) { in BlitBto3Key() 327 Uint32 ckey = info->colorkey; in BlitBto4Key() local 342 if (bit != ckey) { in BlitBto4Key() 416 Uint32 ckey = info->colorkey; in BlitBtoNAlphaKey() local [all …]
|
D | SDL_blit_N.c | 570 Uint32 ckey = info->colorkey; in Blit32to32KeyAltivec() local 593 ckey &= rgbmask; in Blit32to32KeyAltivec() 594 ((unsigned int *) (char *) &vckey)[0] = ckey; in Blit32to32KeyAltivec() 607 if ( (Pixel & rgbmask) != ckey ) { \ in Blit32to32KeyAltivec() 620 if ( Pixel != ckey ) { \ in Blit32to32KeyAltivec() 2219 Uint32 ckey = info->colorkey; in BlitNto1Key() local 2227 ckey &= rgbmask; in BlitNto1Key() 2236 if ( (Pixel & rgbmask) != ckey ) { in BlitNto1Key() 2257 if ( (Pixel & rgbmask) != ckey ) { in BlitNto1Key() 2283 Uint32 ckey = info->colorkey; in Blit2to2Key() local [all …]
|
D | SDL_blit_slow.c | 50 Uint32 ckey = info->colorkey & rgbmask; in SDL_Blit_Slow() local 90 if ((srcpixel & rgbmask) == ckey) { in SDL_Blit_Slow()
|
D | SDL_surface.c | 294 Uint16 ckey = (Uint16) surface->map->info.colorkey; in SDL_ConvertColorkeyToAlpha() local 298 ckey &= mask; in SDL_ConvertColorkeyToAlpha() 303 if ((*spot & mask) == ckey) { in SDL_ConvertColorkeyToAlpha() 318 Uint32 ckey = surface->map->info.colorkey; in SDL_ConvertColorkeyToAlpha() local 322 ckey &= mask; in SDL_ConvertColorkeyToAlpha() 327 if ((*spot & mask) == ckey) { in SDL_ConvertColorkeyToAlpha()
|
D | SDL_blit_A.c | 135 Uint32 ckey = info->colorkey; in BlitNto1SurfaceAlphaKey() local 146 if ( Pixel != ckey ) { in BlitNto1SurfaceAlphaKey() 1196 Uint32 ckey = info->colorkey; in BlitNtoNSurfaceAlphaKey() local 1209 if(sA && Pixel != ckey) { in BlitNtoNSurfaceAlphaKey()
|
D | SDL_RLEaccel.c | 1285 Uint32 ckey, rgbmask; in RLEColorkeySurface() local 1318 ckey = surface->map->info.colorkey & rgbmask; in RLEColorkeySurface() 1344 while (x < w && (getpix(srcbuf + x * bpp) & rgbmask) == ckey) in RLEColorkeySurface() 1347 while (x < w && (getpix(srcbuf + x * bpp) & rgbmask) != ckey) in RLEColorkeySurface()
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_disk_cache.c | 93 struct v3d_key *ckey = malloc(ckey_size); in v3d_disk_cache_compute_key() local 94 memcpy(ckey, key, ckey_size); in v3d_disk_cache_compute_key() 95 ckey->shader_state = NULL; in v3d_disk_cache_compute_key() 97 blob_write_bytes(&blob, ckey, ckey_size); in v3d_disk_cache_compute_key() 104 free(ckey); in v3d_disk_cache_compute_key()
|
/third_party/node/deps/npm/node_modules/sshpk/lib/formats/ |
D | ssh-private.js | 93 var ckey = out.slice(0, cinf.keySize); 96 ckey, iv); 204 var ckey = out.slice(0, cinf.keySize); 208 ckey, iv);
|
/third_party/openssl/demos/certs/apps/ |
D | mkacerts.sh | 18 -key ckey.pem -out creq.pem -new 42 cat ckey.pem >>client.pem
|
/third_party/node/deps/npm/node_modules/make-fetch-happen/ |
D | cache.js | 111 const ckey = cacheKey(req) 124 return cacache.get.info(this._path, ckey).then(info => { 128 response.headers, this._path, ckey, info.integrity, info.time
|
/third_party/gstreamer/gstplugins_base/sys/xvimage/ |
D | xvcontext.c | 196 guint32 ckey = 0; in gst_xvcontext_get_xv_support() local 212 ckey = (cr << 11) | (cg << 5) | cb; in gst_xvcontext_get_xv_support() 216 ckey = (cr << 16) | (cg << 8) | cb; in gst_xvcontext_get_xv_support() 226 ckey = CLAMP (ckey, (guint32) attr[i].min_value, in gst_xvcontext_get_xv_support() 229 context->depth, ckey); in gst_xvcontext_get_xv_support() 232 (gint) ckey); in gst_xvcontext_get_xv_support()
|
/third_party/openssl/ssl/statem/ |
D | statem_clnt.c | 2906 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_dhe() local 2919 ckey = ssl_generate_pkey(s, skey); in tls_construct_cke_dhe() 2920 if (ckey == NULL) { in tls_construct_cke_dhe() 2925 if (ssl_derive(s, ckey, skey, 0) == 0) { in tls_construct_cke_dhe() 2933 encoded_pub_len = EVP_PKEY_get1_encoded_public_key(ckey, &encoded_pub); in tls_construct_cke_dhe() 2936 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2945 prime_len = EVP_PKEY_get_size(ckey); in tls_construct_cke_dhe() 2963 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2971 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_ecdhe() local 2980 ckey = ssl_generate_pkey(s, skey); in tls_construct_cke_ecdhe() [all …]
|
D | statem_srvr.c | 2960 EVP_PKEY *ckey = NULL; in tls_process_cke_dhe() local 2982 ckey = EVP_PKEY_new(); in tls_process_cke_dhe() 2983 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) { in tls_process_cke_dhe() 2988 if (!EVP_PKEY_set1_encoded_public_key(ckey, data, i)) { in tls_process_cke_dhe() 2993 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_process_cke_dhe() 3002 EVP_PKEY_free(ckey); in tls_process_cke_dhe() 3009 EVP_PKEY *ckey = NULL; in tls_process_cke_ecdhe() local 3036 ckey = EVP_PKEY_new(); in tls_process_cke_ecdhe() 3037 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) { in tls_process_cke_ecdhe() 3042 if (EVP_PKEY_set1_encoded_public_key(ckey, data, i) <= 0) { in tls_process_cke_ecdhe() [all …]
|
D | extensions_srvr.c | 1594 EVP_PKEY *ckey = s->s3.peer_tmp, *skey = NULL; in tls_construct_stoc_key_share() local 1598 if (ckey != NULL) { in tls_construct_stoc_key_share() 1613 if (ckey == NULL) { in tls_construct_stoc_key_share() 1643 skey = ssl_generate_pkey(s, ckey); in tls_construct_stoc_key_share() 1670 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_construct_stoc_key_share() 1685 if (ssl_encapsulate(s, ckey, &ct, &ctlen, 0) == 0) { in tls_construct_stoc_key_share()
|
/third_party/openssl/crypto/ec/ |
D | ec_kmeth.c | 225 int (*ckey)(unsigned char **psec, in EC_KEY_METHOD_set_compute_key() 230 meth->compute_key = ckey; in EC_KEY_METHOD_set_compute_key()
|
/third_party/node/lib/ |
D | zlib.js | 105 for (const ckey of ObjectKeys(codes)) { 106 codes[codes[ckey]] = ckey;
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | unifiedcache.cpp | 49 const CacheKeyBase *ckey = (const CacheKeyBase *) key.pointer; in ucache_hashKeys() local 50 return ckey->hashCode(); in ucache_hashKeys()
|
/third_party/node/deps/icu-small/source/common/ |
D | unifiedcache.cpp | 50 const CacheKeyBase *ckey = (const CacheKeyBase *) key.pointer; in ucache_hashKeys() local 51 return ckey->hashCode(); in ucache_hashKeys()
|
/third_party/icu/icu4c/source/common/ |
D | unifiedcache.cpp | 50 const CacheKeyBase *ckey = (const CacheKeyBase *) key.pointer; in ucache_hashKeys() local 51 return ckey->hashCode(); in ucache_hashKeys()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | unifiedcache.cpp | 50 const CacheKeyBase *ckey = (const CacheKeyBase *) key.pointer; in ucache_hashKeys() local 51 return ckey->hashCode(); in ucache_hashKeys()
|
/third_party/python/Lib/test/ |
D | test_winreg.py | 194 access=KEY_ALL_ACCESS) as ckey: 195 self.assertTrue(ckey.handle != 0)
|