/third_party/cups-filters/filter/ |
H A D | textcommon.c | 495 *keyptr; /* Pointer into string */ in TextMain() local 697 keyptr = keyword; in TextMain() 732 keyptr = keyword; in TextMain() 737 if (PrettyPrint && keyptr > keyword) in TextMain() 739 *keyptr = '\0'; in TextMain() 740 keyptr = keyword; in TextMain() 742 if (bsearch(&keyptr, Keywords, NumKeywords, sizeof(char *), in TextMain() 809 if (PrettyPrint && keyptr > keyword) in TextMain() 811 *keyptr = '\0'; in TextMain() 812 keyptr in TextMain() [all...] |
/third_party/libcoap/include/coap3/ |
H A D | coap_uthash_internal.h | 89 #define HASH_FUNCTION(keyptr,keylen,hashv) HASH_JEN(keyptr, keylen, hashv) 149 #define HASH_VALUE(keyptr,keylen,hashv) \ 151 HASH_FUNCTION(keyptr, keylen, hashv); \ 154 #define HASH_FIND_BYHASHVALUE(hh,head,keyptr,keylen,hashval,out) \ 161 HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ], keyptr, keylen, hashval, out); \ 166 #define HASH_FIND(hh,head,keyptr,keylen,out) \ 171 HASH_VALUE(keyptr, keylen, _hf_hashv); \ 172 HASH_FIND_BYHASHVALUE(hh, head, keyptr, keylen, _hf_hashv, out); \ 314 #define HASH_ADD_TO_TABLE(hh,head,keyptr,keylen_i [all...] |
/third_party/libdrm/intel/ |
H A D | uthash.h | 114 #define HASH_VALUE(keyptr,keylen,hashv) \ 116 HASH_FCN(keyptr, keylen, hashv); \ 119 #define HASH_FIND_BYHASHVALUE(hh,head,keyptr,keylen,hashval,out) \ 126 HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ], keyptr, keylen, hashval, out); \ 131 #define HASH_FIND(hh,head,keyptr,keylen,out) \ 134 HASH_VALUE(keyptr, keylen, _hf_hashv); \ 135 HASH_FIND_BYHASHVALUE(hh, head, keyptr, keylen, _hf_hashv, out); \ 233 #define HASH_ADD_KEYPTR_BYHASHVALUE_INORDER(hh,head,keyptr,keylen_in,hashval,add,cmpfcn) \ 237 (add)->hh.key = (char*) (keyptr); \ 267 HASH_EMIT_KEY(hh, head, keyptr, keylen_i [all...] |
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nf_nat_core.c | 406 __be16 *keyptr; in nf_nat_l4proto_unique_tuple() local 414 keyptr = &tuple->src.u.icmp.id; in nf_nat_l4proto_unique_tuple() 432 keyptr = &tuple->src.u.gre.key; in nf_nat_l4proto_unique_tuple() 434 keyptr = &tuple->dst.u.gre.key; in nf_nat_l4proto_unique_tuple() 451 keyptr = &tuple->src.u.all; in nf_nat_l4proto_unique_tuple() 453 keyptr = &tuple->dst.u.all; in nf_nat_l4proto_unique_tuple() 466 if (ntohs(*keyptr) < 1024) { in nf_nat_l4proto_unique_tuple() 468 if (ntohs(*keyptr) < 512) { in nf_nat_l4proto_unique_tuple() 489 off = (ntohs(*keyptr) - ntohs(range->base_proto.all)); in nf_nat_l4proto_unique_tuple() 505 *keyptr in nf_nat_l4proto_unique_tuple() [all...] |
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nf_nat_core.c | 471 __be16 *keyptr; in nf_nat_l4proto_unique_tuple() local 478 keyptr = &tuple->src.u.icmp.id; in nf_nat_l4proto_unique_tuple() 496 keyptr = &tuple->src.u.gre.key; in nf_nat_l4proto_unique_tuple() 498 keyptr = &tuple->dst.u.gre.key; in nf_nat_l4proto_unique_tuple() 515 keyptr = &tuple->src.u.all; in nf_nat_l4proto_unique_tuple() 517 keyptr = &tuple->dst.u.all; in nf_nat_l4proto_unique_tuple() 530 if (ntohs(*keyptr) < 1024) { in nf_nat_l4proto_unique_tuple() 532 if (ntohs(*keyptr) < 512) { in nf_nat_l4proto_unique_tuple() 553 off = (ntohs(*keyptr) - ntohs(range->base_proto.all)); in nf_nat_l4proto_unique_tuple() 569 *keyptr in nf_nat_l4proto_unique_tuple() [all...] |
/kernel/linux/linux-5.10/crypto/ |
H A D | testmgr.c | 782 u8 *keybuf = NULL, *keyptr = (u8 *)key; in prepare_keybuf() local 790 keyptr = keybuf + key_offset; in prepare_keybuf() 791 memcpy(keyptr, key, ksize); in prepare_keybuf() 794 *keyptr_ret = keyptr; in prepare_keybuf() 801 const u8 *keybuf, *keyptr; \ 805 &keybuf, &keyptr); \ 807 err = setkey_f((tfm), keyptr, (ksize)); \
|
/kernel/linux/linux-6.6/crypto/ |
H A D | testmgr.c | 830 u8 *keybuf = NULL, *keyptr = (u8 *)key; in prepare_keybuf() local 838 keyptr = keybuf + key_offset; in prepare_keybuf() 839 memcpy(keyptr, key, ksize); in prepare_keybuf() 842 *keyptr_ret = keyptr; in prepare_keybuf() 849 const u8 *keybuf, *keyptr; \ 853 &keybuf, &keyptr); \ 855 err = setkey_f((tfm), keyptr, (ksize)); \
|
/third_party/cups-filters/utils/ |
H A D | cups-browsed.c | 7677 char keyword[1024], *keyptr; in update_cups_queues() local 8679 for (keyptr = keyword; *keyptr; keyptr ++) in update_cups_queues() 8680 if (*keyptr == ':' || isspace(*keyptr & 255)) in update_cups_queues() 8682 *keyptr++ = '\0'; in update_cups_queues() 8683 while (isspace(*keyptr & 255)) in update_cups_queues() 8684 keyptr ++; in update_cups_queues() 8693 if (choice && strcmp(choice->choice, keyptr)) { in update_cups_queues() [all...] |
/third_party/glfw/deps/ |
H A D | nuklear.h | 7239 const nk_byte *keyptr = data; in nk_murmur_hash() local 7251 for (i = 0; i < nblocks; ++i, keyptr += bsize) { in nk_murmur_hash() 7253 k1ptr[0] = keyptr[0]; in nk_murmur_hash() 7254 k1ptr[1] = keyptr[1]; in nk_murmur_hash() 7255 k1ptr[2] = keyptr[2]; in nk_murmur_hash() 7256 k1ptr[3] = keyptr[3]; in nk_murmur_hash()
|