/external/rust/crates/grpcio-sys/grpc/src/core/lib/gpr/ |
D | murmur_hash.cc | 41 const uint8_t* keyptr = static_cast<const uint8_t*>(key); in gpr_murmur_hash3() local 46 for (size_t i = 0; i < nblocks; i++, keyptr += bsize) { in gpr_murmur_hash3() 47 memcpy(&k1, keyptr, bsize); in gpr_murmur_hash3() 63 k1 ^= (static_cast<uint32_t>(keyptr[2])) << 16; in gpr_murmur_hash3() 66 k1 ^= (static_cast<uint32_t>(keyptr[1])) << 8; in gpr_murmur_hash3() 69 k1 ^= keyptr[0]; in gpr_murmur_hash3()
|
/external/grpc-grpc/src/core/lib/gpr/ |
D | murmur_hash.cc | 41 const uint8_t* keyptr = static_cast<const uint8_t*>(key); in gpr_murmur_hash3() local 46 for (size_t i = 0; i < nblocks; i++, keyptr += bsize) { in gpr_murmur_hash3() 47 memcpy(&k1, keyptr, bsize); in gpr_murmur_hash3() 63 k1 ^= (static_cast<uint32_t>(keyptr[2])) << 16; in gpr_murmur_hash3() 66 k1 ^= (static_cast<uint32_t>(keyptr[1])) << 8; in gpr_murmur_hash3() 69 k1 ^= keyptr[0]; in gpr_murmur_hash3()
|
/external/libdrm/intel/ |
D | uthash.h | 114 #define HASH_VALUE(keyptr,keylen,hashv) \ argument 116 HASH_FCN(keyptr, keylen, hashv); \ 119 #define HASH_FIND_BYHASHVALUE(hh,head,keyptr,keylen,hashval,out) \ argument 126 …HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ], keyptr, keylen, hashval, … 131 #define HASH_FIND(hh,head,keyptr,keylen,out) \ argument 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) \ argument 237 (add)->hh.key = (char*) (keyptr); \ 267 HASH_EMIT_KEY(hh, head, keyptr, keylen_in); \ [all …]
|
/external/fastrpc/inc/ |
D | uthash.h | 92 #define HASH_FIND(hh,head,keyptr,keylen,out) \ argument 97 HASH_FCN(keyptr,keylen, (head)->hh.tbl->num_buckets, _hf_hashv, _hf_bkt); \ 100 keyptr,keylen,out); \ 160 #define HASH_ADD_KEYPTR(hh,head,keyptr,keylen_in,add) \ argument 164 (add)->hh.key = (char*)keyptr; \ 177 HASH_FCN(keyptr,keylen_in, (head)->hh.tbl->num_buckets, \ 181 HASH_EMIT_KEY(hh,head,keyptr,keylen_in); \ 326 #define HASH_EMIT_KEY(hh,head,keyptr,fieldlen) \ argument 330 write(HASH_EMIT_KEYS, keyptr, fieldlen); \ 333 #define HASH_EMIT_KEY(hh,head,keyptr,fieldlen) argument [all …]
|
/external/libcups/systemv/ |
D | lpadmin.c | 1338 *keyptr, /* Pointer into keyword... */ in set_printer_options() local 1498 for (keyptr = keyword; *keyptr; keyptr ++) in set_printer_options() 1499 if (*keyptr == ':' || isspace(*keyptr & 255)) in set_printer_options() 1502 *keyptr++ = '\0'; in set_printer_options() 1503 while (isspace(*keyptr & 255)) in set_printer_options() 1504 keyptr ++; in set_printer_options() 1517 if (choice && strcmp(choice->choice, keyptr)) in set_printer_options()
|
/external/libcups/cgi-bin/ |
D | admin.c | 2629 *keyptr; /* Pointer into keyword... */ in do_set_options() local 3229 for (keyptr = keyword; *keyptr; keyptr ++) in do_set_options() 3230 if (*keyptr == ':' || isspace(*keyptr & 255)) in do_set_options() 3233 *keyptr = '\0'; in do_set_options()
|
/external/libcups/cups/ |
D | ppd.c | 2870 char *keyptr, /* Keyword pointer */ in ppd_read() local 3212 keyptr = keyword; in ppd_read() 3217 (keyptr - keyword) >= (PPD_MAX_NAME - 1)) in ppd_read() 3223 *keyptr++ = *lineptr++; in ppd_read() 3226 *keyptr = '\0'; in ppd_read()
|